omnibus 3.2.2 → 4.0.0.beta.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +140 -10
- data/CHANGELOG.md +181 -8
- data/README.md +63 -35
- data/Rakefile +1 -1
- data/docs/omnibus-build-cache.md b/data/docs/Build → Cache.md +0 -0
- data/docs/Building on Debian.md +59 -0
- data/docs/Building on OSX.md +61 -35
- data/docs/Building on RHEL.md +74 -0
- data/docs/Building on Windows.md +40 -81
- data/features/commands/build.feature +1 -2
- data/features/commands/clean.feature +1 -1
- data/lib/omnibus.rb +111 -204
- data/lib/omnibus/build_version.rb +3 -20
- data/lib/omnibus/build_version_dsl.rb +2 -3
- data/lib/omnibus/builder.rb +103 -211
- data/lib/omnibus/cleaner.rb +5 -7
- data/lib/omnibus/cli.rb +1 -4
- data/lib/omnibus/cli/base.rb +9 -16
- data/lib/omnibus/compressor.rb +60 -0
- data/{spec/data/complicated/config/software/version-manifest.rb → lib/omnibus/compressors/base.rb} +17 -12
- data/lib/omnibus/compressors/dmg.rb +312 -0
- data/lib/omnibus/{null_builder.rb → compressors/null.rb} +10 -4
- data/lib/omnibus/compressors/tgz.rb +141 -0
- data/lib/omnibus/config.rb +89 -83
- data/lib/omnibus/core_extensions.rb +1 -0
- data/lib/omnibus/core_extensions/open_uri.rb +58 -0
- data/lib/omnibus/digestable.rb +9 -3
- data/lib/omnibus/exceptions.rb +116 -175
- data/lib/omnibus/fetcher.rb +97 -138
- data/lib/omnibus/fetchers/git_fetcher.rb +130 -165
- data/lib/omnibus/fetchers/net_fetcher.rb +205 -164
- data/lib/omnibus/fetchers/{s3_cache_fetcher.rb → null_fetcher.rb} +27 -17
- data/lib/omnibus/fetchers/path_fetcher.rb +74 -32
- data/lib/omnibus/file_syncer.rb +149 -0
- data/lib/omnibus/generator.rb +103 -32
- data/lib/omnibus/generator_files/.kitchen.yml.erb +5 -1
- data/lib/omnibus/generator_files/Gemfile.erb +13 -7
- data/lib/omnibus/generator_files/config/projects/project.rb.erb +28 -0
- data/lib/omnibus/generator_files/config/software/zlib.rb.erb +55 -0
- data/lib/omnibus/generator_files/omnibus.rb.erb +5 -7
- data/lib/omnibus/git_cache.rb +11 -13
- data/lib/omnibus/logger.rb +76 -22
- data/lib/omnibus/logging.rb +1 -1
- data/lib/omnibus/metadata.rb +264 -0
- data/lib/omnibus/ohai.rb +0 -51
- data/lib/omnibus/package.rb +4 -228
- data/lib/omnibus/packager.rb +71 -0
- data/lib/omnibus/packagers/base.rb +118 -176
- data/lib/omnibus/packagers/bff.rb +136 -0
- data/lib/omnibus/packagers/deb.rb +389 -0
- data/lib/omnibus/packagers/makeself.rb +114 -0
- data/lib/omnibus/packagers/msi.rb +346 -0
- data/lib/omnibus/packagers/pkg.rb +278 -0
- data/lib/omnibus/packagers/rpm.rb +438 -0
- data/lib/omnibus/packagers/solaris.rb +110 -0
- data/lib/omnibus/project.rb +263 -666
- data/lib/omnibus/publisher.rb +3 -3
- data/lib/omnibus/s3_cache.rb +21 -30
- data/lib/omnibus/software.rb +132 -271
- data/lib/omnibus/templating.rb +66 -0
- data/lib/omnibus/thread_pool.rb +109 -0
- data/lib/omnibus/util.rb +137 -15
- data/lib/omnibus/version.rb +1 -1
- data/omnibus.gemspec +2 -2
- data/resources/bff/gen.template.erb +22 -0
- data/resources/bff/postinstall.sh +0 -0
- data/resources/bff/unpostinstall.sh +0 -0
- data/resources/deb/conffiles.erb +3 -0
- data/resources/deb/control.erb +25 -0
- data/resources/deb/md5sums.erb +3 -0
- data/{lib/omnibus/generator_files/mac_dmg → resources/dmg}/background.png +0 -0
- data/resources/dmg/create_dmg.osascript.erb +17 -0
- data/{lib/omnibus/generator_files/mac_dmg → resources/dmg}/icon.png +0 -0
- data/{bin → resources/makeself}/makeself-header.sh +0 -0
- data/{bin → resources/makeself}/makeself.sh +0 -0
- data/{lib/omnibus/generator_files/package_scripts/makeselfinst.erb → resources/makeself/post_extract.sh.erb} +4 -4
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/LICENSE.rtf +0 -0
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/banner_background.bmp +0 -0
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/dialog_background.bmp +0 -0
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/project.ico +0 -0
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/project_16x16.ico +0 -0
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/project_32x32.ico +0 -0
- data/{spec/fixtures/sample/files/windows_msi/Resources/localization-en-us.wxl → resources/msi/localization-en-us.wxl.erb} +3 -4
- data/resources/msi/parameters.wxi.erb +9 -0
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/source.wxs.erb +14 -15
- data/{lib/omnibus/generator_files/mac_pkg → resources/pkg}/background.png +0 -0
- data/resources/pkg/distribution.xml.erb +21 -0
- data/resources/pkg/license.html.erb +3 -0
- data/resources/pkg/welcome.html.erb +7 -0
- data/resources/rpm/rpmmacros.erb +3 -0
- data/resources/rpm/signing.erb +40 -0
- data/resources/rpm/spec.erb +70 -0
- data/spec/functional/builder_spec.rb +90 -111
- data/spec/functional/fetchers/git_fetcher_spec.rb +130 -0
- data/spec/functional/fetchers/net_fetcher_spec.rb +110 -0
- data/spec/functional/fetchers/path_fetcher_spec.rb +97 -0
- data/spec/functional/file_syncer_spec.rb +206 -0
- data/spec/functional/templating_spec.rb +73 -0
- data/spec/spec_helper.rb +31 -94
- data/spec/support/env_helpers.rb +20 -0
- data/spec/support/examples.rb +56 -0
- data/spec/support/file_helpers.rb +46 -0
- data/spec/support/git_helpers.rb +107 -0
- data/spec/support/logging_helpers.rb +33 -0
- data/spec/support/matchers.rb +36 -0
- data/spec/support/ohai_helpers.rb +22 -0
- data/spec/support/path_helpers.rb +19 -0
- data/spec/support/shell_helpers.rb +14 -0
- data/spec/unit/build_version_dsl_spec.rb +0 -17
- data/spec/unit/build_version_spec.rb +1 -19
- data/spec/unit/builder_spec.rb +158 -46
- data/spec/unit/compressor_spec.rb +45 -0
- data/spec/unit/compressors/base_spec.rb +26 -0
- data/spec/unit/compressors/dmg_spec.rb +291 -0
- data/spec/unit/compressors/null_spec.rb +23 -0
- data/spec/unit/compressors/tgz_spec.rb +67 -0
- data/spec/unit/config_spec.rb +27 -34
- data/spec/unit/digestable_spec.rb +4 -4
- data/spec/unit/fetchers/git_fetcher_spec.rb +110 -39
- data/spec/unit/fetchers/net_fetcher_spec.rb +182 -72
- data/spec/unit/fetchers/path_fetcher_spec.rb +111 -0
- data/spec/unit/generator_spec.rb +137 -0
- data/spec/unit/git_cache_spec.rb +24 -34
- data/spec/unit/library_spec.rb +21 -82
- data/spec/unit/metadata_spec.rb +207 -0
- data/spec/unit/ohai_spec.rb +0 -7
- data/spec/unit/omnibus_spec.rb +41 -36
- data/spec/unit/package_spec.rb +1 -216
- data/spec/unit/packagers/base_spec.rb +76 -190
- data/spec/unit/packagers/bff_spec.rb +160 -0
- data/spec/unit/packagers/deb_spec.rb +324 -0
- data/spec/unit/packagers/makeself_spec.rb +80 -0
- data/spec/unit/packagers/msi_spec.rb +267 -0
- data/spec/unit/packagers/pkg_spec.rb +219 -0
- data/spec/unit/packagers/rpm_spec.rb +328 -0
- data/spec/unit/project_spec.rb +217 -80
- data/spec/unit/publisher_spec.rb +6 -2
- data/spec/unit/publishers/artifactory_publisher_spec.rb +1 -1
- data/spec/unit/publishers/s3_publisher_spec.rb +1 -1
- data/spec/unit/s3_cacher_spec.rb +22 -5
- data/spec/unit/software_spec.rb +89 -232
- data/spec/unit/util_spec.rb +188 -0
- metadata +159 -402
- data/features/commands/_deprecated.feature +0 -84
- data/lib/omnibus/cleanroom.rb +0 -141
- data/lib/omnibus/cli/deprecated.rb +0 -132
- data/lib/omnibus/generator_files/mac_pkg/license.html.erb +0 -1
- data/lib/omnibus/generator_files/mac_pkg/welcome.html.erb +0 -9
- data/lib/omnibus/generator_files/project.rb.erb +0 -20
- data/lib/omnibus/generator_files/software/c-example.rb.erb +0 -42
- data/lib/omnibus/generator_files/software/erlang-example.rb.erb +0 -38
- data/lib/omnibus/generator_files/software/ruby-example.rb.erb +0 -24
- data/lib/omnibus/generator_files/windows_msi/localization-en-us.wxl.erb +0 -20
- data/lib/omnibus/generator_files/windows_msi/parameters.wxi.erb +0 -9
- data/lib/omnibus/packagers/mac_dmg.rb +0 -235
- data/lib/omnibus/packagers/mac_pkg.rb +0 -176
- data/lib/omnibus/packagers/windows_msi.rb +0 -109
- data/spec/data/complicated/config/patches/bzip2/makefile_take_env_vars.patch +0 -15
- data/spec/data/complicated/config/patches/couchdb/patch_for_couchjs_stack.patch +0 -19
- data/spec/data/complicated/config/patches/gd/gd-2.0.33-configure-libpng.patch +0 -100
- data/spec/data/complicated/config/patches/keepalived/keepalived-1.2.9_opscode_centos_5.patch +0 -15
- data/spec/data/complicated/config/patches/libedit/freebsd-vi-fix.patch +0 -24
- data/spec/data/complicated/config/patches/libiconv/libiconv-1.14_srclib_stdio.in.h-remove-gets-declarations.patch +0 -29
- data/spec/data/complicated/config/patches/libwrap/tcp_wrappers-7.6-makefile-dest-fix.patch +0 -35
- data/spec/data/complicated/config/patches/libwrap/tcp_wrappers-7.6-malloc-fix.patch +0 -13
- data/spec/data/complicated/config/patches/libwrap/tcp_wrappers-7.6-shared_lib_plus_plus-1.patch +0 -1035
- data/spec/data/complicated/config/patches/logrotate/logrotate_basedir_override.patch +0 -12
- data/spec/data/complicated/config/patches/ncurses/ncurses-5.9-solaris-xopen_source_extended-detection.patch +0 -11
- data/spec/data/complicated/config/patches/ncurses/ncurses-clang.patch +0 -42
- data/spec/data/complicated/config/patches/ncurses/patch-aa +0 -23
- data/spec/data/complicated/config/patches/ncurses/patch-ab +0 -44
- data/spec/data/complicated/config/patches/ncurses/patch-ac +0 -40
- data/spec/data/complicated/config/patches/ncurses/patch-ad +0 -12
- data/spec/data/complicated/config/patches/ncurses/patch-aix-configure +0 -23
- data/spec/data/complicated/config/patches/ncurses/patch-cxx_cursesf.h +0 -22
- data/spec/data/complicated/config/patches/ncurses/patch-cxx_cursesm.h +0 -22
- data/spec/data/complicated/config/patches/nrpe/fix_for_runit.patch +0 -64
- data/spec/data/complicated/config/patches/openssl/openssl-1.0.1f-do-not-build-docs.patch +0 -101
- data/spec/data/complicated/config/patches/postgresql/postgresql-9.1.2-configure-ncurses-fix.patch +0 -12
- data/spec/data/complicated/config/patches/ruby/patch-configure +0 -103
- data/spec/data/complicated/config/patches/ruby/ruby-aix-configure.patch +0 -10
- data/spec/data/complicated/config/patches/ruby/ruby-openssl-1.0.1c.patch +0 -42
- data/spec/data/complicated/config/patches/ruby/ruby_aix_1_9_3_448_ssl_EAGAIN.patch +0 -57
- data/spec/data/complicated/config/patches/ruby/rvm-cflags.patch +0 -27
- data/spec/data/complicated/config/projects/angrychef.rb +0 -32
- data/spec/data/complicated/config/projects/chef-windows.rb +0 -32
- data/spec/data/complicated/config/projects/chef.rb +0 -32
- data/spec/data/complicated/config/projects/chefdk-windows.rb +0 -41
- data/spec/data/complicated/config/projects/chefdk.rb +0 -44
- data/spec/data/complicated/config/software/appbundler.rb +0 -25
- data/spec/data/complicated/config/software/autoconf.rb +0 -35
- data/spec/data/complicated/config/software/automake.rb +0 -39
- data/spec/data/complicated/config/software/berkshelf.rb +0 -44
- data/spec/data/complicated/config/software/bundler.rb +0 -25
- data/spec/data/complicated/config/software/bzip2.rb +0 -46
- data/spec/data/complicated/config/software/cacerts.rb +0 -44
- data/spec/data/complicated/config/software/chef-client-msi.rb +0 -87
- data/spec/data/complicated/config/software/chef-gem.rb +0 -26
- data/spec/data/complicated/config/software/chef-vault.rb +0 -43
- data/spec/data/complicated/config/software/chef-windows.rb +0 -158
- data/spec/data/complicated/config/software/chef.rb +0 -170
- data/spec/data/complicated/config/software/chefdk.rb +0 -103
- data/spec/data/complicated/config/software/couchdb.rb +0 -53
- data/spec/data/complicated/config/software/curl.rb +0 -48
- data/spec/data/complicated/config/software/erlang.rb +0 -65
- data/spec/data/complicated/config/software/expat.rb +0 -21
- data/spec/data/complicated/config/software/fcgi.rb +0 -56
- data/spec/data/complicated/config/software/fcgiwrap.rb +0 -41
- data/spec/data/complicated/config/software/gd.rb +0 -56
- data/spec/data/complicated/config/software/gdbm.rb +0 -40
- data/spec/data/complicated/config/software/gecode.rb +0 -48
- data/spec/data/complicated/config/software/git.rb +0 -40
- data/spec/data/complicated/config/software/help2man.rb +0 -30
- data/spec/data/complicated/config/software/icu.rb +0 -40
- data/spec/data/complicated/config/software/jre.rb +0 -48
- data/spec/data/complicated/config/software/keepalived.rb +0 -43
- data/spec/data/complicated/config/software/libarchive.rb +0 -50
- data/spec/data/complicated/config/software/libedit.rb +0 -69
- data/spec/data/complicated/config/software/libffi.rb +0 -71
- data/spec/data/complicated/config/software/libgcc.rb +0 -39
- data/spec/data/complicated/config/software/libiconv.rb +0 -55
- data/spec/data/complicated/config/software/libjpeg.rb +0 -39
- data/spec/data/complicated/config/software/libpng.rb +0 -38
- data/spec/data/complicated/config/software/libtool.rb +0 -52
- data/spec/data/complicated/config/software/libwrap.rb +0 -50
- data/spec/data/complicated/config/software/libxml2.rb +0 -51
- data/spec/data/complicated/config/software/libxslt.rb +0 -52
- data/spec/data/complicated/config/software/libyaml-windows.rb +0 -43
- data/spec/data/complicated/config/software/libyaml.rb +0 -62
- data/spec/data/complicated/config/software/logrotate.rb +0 -41
- data/spec/data/complicated/config/software/makedepend.rb +0 -73
- data/spec/data/complicated/config/software/mysql2.rb +0 -42
- data/spec/data/complicated/config/software/nagios-plugins.rb +0 -53
- data/spec/data/complicated/config/software/nagios.rb +0 -66
- data/spec/data/complicated/config/software/ncurses.rb +0 -149
- data/spec/data/complicated/config/software/nginx.rb +0 -40
- data/spec/data/complicated/config/software/nodejs.rb +0 -44
- data/spec/data/complicated/config/software/nokogiri.rb +0 -55
- data/spec/data/complicated/config/software/nrpe.rb +0 -61
- data/spec/data/complicated/config/software/ohai.rb +0 -64
- data/spec/data/complicated/config/software/omnibus-ctl.rb +0 -34
- data/spec/data/complicated/config/software/openresty.rb +0 -67
- data/spec/data/complicated/config/software/openssl.rb +0 -158
- data/spec/data/complicated/config/software/pcre.rb +0 -42
- data/spec/data/complicated/config/software/perl-extutils-embed.rb +0 -15
- data/spec/data/complicated/config/software/perl-extutils-makemaker.rb +0 -15
- data/spec/data/complicated/config/software/perl.rb +0 -48
- data/spec/data/complicated/config/software/perl_pg_driver.rb +0 -12
- data/spec/data/complicated/config/software/php.rb +0 -41
- data/spec/data/complicated/config/software/pip.rb +0 -30
- data/spec/data/complicated/config/software/pkg-config.rb +0 -66
- data/spec/data/complicated/config/software/popt.rb +0 -47
- data/spec/data/complicated/config/software/postgresql.rb +0 -51
- data/spec/data/complicated/config/software/preparation.rb +0 -30
- data/spec/data/complicated/config/software/pygments.rb +0 -25
- data/spec/data/complicated/config/software/python.rb +0 -49
- data/spec/data/complicated/config/software/rabbitmq.rb +0 -36
- data/spec/data/complicated/config/software/rebar.rb +0 -36
- data/spec/data/complicated/config/software/redis.rb +0 -33
- data/spec/data/complicated/config/software/rsync.rb +0 -48
- data/spec/data/complicated/config/software/ruby-windows-devkit.rb +0 -30
- data/spec/data/complicated/config/software/ruby-windows.rb +0 -30
- data/spec/data/complicated/config/software/ruby.rb +0 -162
- data/spec/data/complicated/config/software/rubygems-customization.rb +0 -57
- data/spec/data/complicated/config/software/rubygems.rb +0 -37
- data/spec/data/complicated/config/software/runit.rb +0 -118
- data/spec/data/complicated/config/software/server-jre.rb +0 -46
- data/spec/data/complicated/config/software/setuptools.rb +0 -30
- data/spec/data/complicated/config/software/spawn-fcgi.rb +0 -40
- data/spec/data/complicated/config/software/sphinx.rb +0 -26
- data/spec/data/complicated/config/software/spidermonkey.rb +0 -60
- data/spec/data/complicated/config/software/sqitch.rb +0 -24
- data/spec/data/complicated/config/software/test-kitchen.rb +0 -39
- data/spec/data/complicated/config/software/unicorn.rb +0 -27
- data/spec/data/complicated/config/software/util-macros.rb +0 -46
- data/spec/data/complicated/config/software/xproto.rb +0 -46
- data/spec/data/complicated/config/software/yajl.rb +0 -30
- data/spec/data/complicated/config/software/zlib.rb +0 -67
- data/spec/data/overrides/bad_line.overrides +0 -3
- data/spec/data/overrides/good.overrides +0 -5
- data/spec/data/overrides/with_dupes.overrides +0 -4
- data/spec/data/projects/chefdk.rb +0 -41
- data/spec/data/projects/sample.rb +0 -13
- data/spec/data/software/erchef.rb +0 -42
- data/spec/data/software/zlib.rb +0 -67
- data/spec/fixtures/sample/files/mac_dmg/Resources/background.png +0 -0
- data/spec/fixtures/sample/files/mac_dmg/Resources/icon.png +0 -0
- data/spec/fixtures/sample/files/mac_pkg/Resources/background.png +0 -0
- data/spec/fixtures/sample/files/mac_pkg/Resources/license.html +0 -1
- data/spec/fixtures/sample/files/mac_pkg/Resources/welcome.html +0 -9
- data/spec/fixtures/sample/files/windows_msi/Resources/assets/LICENSE.rtf +0 -8
- data/spec/fixtures/sample/files/windows_msi/Resources/assets/banner_background.bmp +0 -0
- data/spec/fixtures/sample/files/windows_msi/Resources/assets/dialog_background.bmp +0 -0
- data/spec/fixtures/sample/files/windows_msi/Resources/assets/project.ico +0 -0
- data/spec/fixtures/sample/files/windows_msi/Resources/assets/project_16x16.ico +0 -0
- data/spec/fixtures/sample/files/windows_msi/Resources/assets/project_32x32.ico +0 -0
- data/spec/fixtures/sample/files/windows_msi/Resources/parameters.wxi.erb +0 -9
- data/spec/fixtures/sample/files/windows_msi/Resources/source.wxs +0 -74
- data/spec/integration/packagers/mac_spec.rb +0 -58
- data/spec/integration/packagers/windows_spec.rb +0 -70
- data/spec/unit/packagers/mac_pkg_spec.rb +0 -151
@@ -0,0 +1,66 @@
|
|
1
|
+
#
|
2
|
+
# Copyright 2014 Chef Software, Inc.
|
3
|
+
#
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
# you may not use this file except in compliance with the License.
|
6
|
+
# You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
# See the License for the specific language governing permissions and
|
14
|
+
# limitations under the License.
|
15
|
+
#
|
16
|
+
|
17
|
+
require 'erb'
|
18
|
+
|
19
|
+
module Omnibus
|
20
|
+
module Templating
|
21
|
+
def self.included(base)
|
22
|
+
# This module also requires logging
|
23
|
+
base.send(:include, Logging)
|
24
|
+
end
|
25
|
+
|
26
|
+
#
|
27
|
+
# Render an erb template on disk at +source+. If the +:destination+ option
|
28
|
+
# is given, the file will be rendered at +:destination+, otherwise the
|
29
|
+
# template is rendered next to +source+, removing the 'erb' extension of the
|
30
|
+
# template.
|
31
|
+
#
|
32
|
+
# @param [String] source
|
33
|
+
# the path on disk where the ERB template lives
|
34
|
+
#
|
35
|
+
# @option options [String] :destination (default: +source+)
|
36
|
+
# the destination where the rendered ERB should reside
|
37
|
+
# @option options [Fixnum] :mode (default: +0644+)
|
38
|
+
# the mode of the rendered file
|
39
|
+
# @option options [Hash] :variables (default: +{}+)
|
40
|
+
# the list of variables to pass to the template
|
41
|
+
#
|
42
|
+
def render_template(source, options = {})
|
43
|
+
destination = options.delete(:destination) || source.chomp('.erb')
|
44
|
+
|
45
|
+
mode = options.delete(:mode) || 0644
|
46
|
+
variables = options.delete(:variables) || {}
|
47
|
+
|
48
|
+
log.info(log_key) { "Rendering `#{source}' to `#{destination}'" }
|
49
|
+
|
50
|
+
unless options.empty?
|
51
|
+
raise ArgumentError,
|
52
|
+
"Unknown option(s): #{options.keys.map(&:inspect).join(', ')}"
|
53
|
+
end
|
54
|
+
|
55
|
+
template = ERB.new(File.read(source), nil, '-')
|
56
|
+
struct = Struct.new(*variables.keys).new(*variables.values)
|
57
|
+
result = template.result(struct.instance_eval { binding })
|
58
|
+
|
59
|
+
File.open(destination, 'w', mode) do |file|
|
60
|
+
file.write(result)
|
61
|
+
end
|
62
|
+
|
63
|
+
true
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
@@ -0,0 +1,109 @@
|
|
1
|
+
#
|
2
|
+
# Copyright 2014 Mike Heijmans
|
3
|
+
# Copyright 2014 Chef Software, Inc.
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
#
|
17
|
+
|
18
|
+
require 'thread'
|
19
|
+
|
20
|
+
module Omnibus
|
21
|
+
class ThreadPool
|
22
|
+
|
23
|
+
#
|
24
|
+
# Create a new thread pool of the given size. If a block is given, it is
|
25
|
+
# assumed the thread pool is wrapping an operation and will block until all
|
26
|
+
# operations complete.
|
27
|
+
#
|
28
|
+
# @example Using a block
|
29
|
+
# ThreadPool.new(5) do |pool|
|
30
|
+
# complex_things.each do |thing|
|
31
|
+
# pool.schedule { thing.run }
|
32
|
+
# end
|
33
|
+
# end
|
34
|
+
#
|
35
|
+
# @example Using the object
|
36
|
+
# pool = ThreadPool.new(5)
|
37
|
+
# # ...
|
38
|
+
# pool.schedule { complex_operation_1 }
|
39
|
+
# pool.schedule { complex_operation_2 }
|
40
|
+
# # ...
|
41
|
+
# pool.schedule { complex_operation_4 }
|
42
|
+
# # ...
|
43
|
+
# pool.shutdown
|
44
|
+
#
|
45
|
+
# # or
|
46
|
+
#
|
47
|
+
# at_exit { pool.shutdown }
|
48
|
+
#
|
49
|
+
# @param [Integer] size
|
50
|
+
# the number of items to put in the thread pool
|
51
|
+
#
|
52
|
+
def initialize(size)
|
53
|
+
@size = size
|
54
|
+
@jobs = Queue.new
|
55
|
+
|
56
|
+
@pool = Array.new(@size) do |i|
|
57
|
+
Thread.new do
|
58
|
+
Thread.abort_on_exception = true
|
59
|
+
Thread.current[:id] = i
|
60
|
+
|
61
|
+
catch(:exit) do
|
62
|
+
loop do
|
63
|
+
job, args = @jobs.pop
|
64
|
+
job.call(*args)
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
if block_given?
|
71
|
+
yield self
|
72
|
+
shutdown
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
#
|
77
|
+
# Schedule a single item onto the queue. If arguments are given, those
|
78
|
+
# arguments are used when calling the block in the queue. This is useful
|
79
|
+
# if you have arguments that you need to pass in from a parent binding.
|
80
|
+
#
|
81
|
+
# @param [Object, Array<Object>] args
|
82
|
+
# the arguments to pass to the block when calling
|
83
|
+
# @param [Proc] block
|
84
|
+
# the block to execute
|
85
|
+
#
|
86
|
+
# @return [void]
|
87
|
+
#
|
88
|
+
def schedule(*args, &block)
|
89
|
+
@jobs << [block, args]
|
90
|
+
end
|
91
|
+
|
92
|
+
#
|
93
|
+
# Stop the thread pool. This method quietly injects an exit clause into the
|
94
|
+
# queue (sometimes called "poison") and then waits for all threads to
|
95
|
+
# exit.
|
96
|
+
#
|
97
|
+
# @return [true]
|
98
|
+
#
|
99
|
+
def shutdown
|
100
|
+
@size.times do
|
101
|
+
schedule { throw :exit }
|
102
|
+
end
|
103
|
+
|
104
|
+
@pool.map(&:join)
|
105
|
+
|
106
|
+
true
|
107
|
+
end
|
108
|
+
end
|
109
|
+
end
|
data/lib/omnibus/util.rb
CHANGED
@@ -18,13 +18,18 @@ require 'mixlib/shellout'
|
|
18
18
|
|
19
19
|
module Omnibus
|
20
20
|
module Util
|
21
|
+
def self.included(base)
|
22
|
+
# This module requires logging is also available
|
23
|
+
base.send(:include, Logging)
|
24
|
+
end
|
25
|
+
|
21
26
|
#
|
22
27
|
# The default shellout options.
|
23
28
|
#
|
24
29
|
# @return [Hash]
|
25
30
|
#
|
26
31
|
SHELLOUT_OPTIONS = {
|
27
|
-
|
32
|
+
log_level: :internal,
|
28
33
|
timeout: 7200, # 2 hours
|
29
34
|
environment: {},
|
30
35
|
}.freeze
|
@@ -48,6 +53,12 @@ module Omnibus
|
|
48
53
|
options = args.last.kind_of?(Hash) ? args.pop : {}
|
49
54
|
options = SHELLOUT_OPTIONS.merge(options)
|
50
55
|
|
56
|
+
# Grab the log_level
|
57
|
+
log_level = options.delete(:log_level)
|
58
|
+
|
59
|
+
# Set the live stream if one was not given
|
60
|
+
options[:live_stream] ||= log.live_stream(:internal)
|
61
|
+
|
51
62
|
# Since Mixlib::ShellOut supports :environment and :env, we want to
|
52
63
|
# standardize here
|
53
64
|
if options[:env]
|
@@ -56,14 +67,14 @@ module Omnibus
|
|
56
67
|
|
57
68
|
# Log any environment options given
|
58
69
|
unless options[:environment].empty?
|
59
|
-
|
60
|
-
options[:environment].each do |key, value|
|
61
|
-
|
70
|
+
log.public_send(log_level, log_key) { 'Environment:' }
|
71
|
+
options[:environment].sort.each do |key, value|
|
72
|
+
log.public_send(log_level, log_key) { " #{key.to_s.upcase}=#{value.inspect}" }
|
62
73
|
end
|
63
74
|
end
|
64
75
|
|
65
76
|
# Log the actual command
|
66
|
-
|
77
|
+
log.public_send(log_level, log_key) { "$ #{args.join(' ')}" }
|
67
78
|
|
68
79
|
cmd = Mixlib::ShellOut.new(*args, options)
|
69
80
|
cmd.environment['HOME'] = '/tmp' unless ENV['HOME']
|
@@ -71,32 +82,143 @@ module Omnibus
|
|
71
82
|
cmd
|
72
83
|
end
|
73
84
|
|
85
|
+
#
|
74
86
|
# Similar to +shellout+ method except it raises an exception if the
|
75
87
|
# command fails.
|
76
88
|
#
|
77
89
|
# @see #shellout
|
78
90
|
#
|
79
|
-
# @raise [
|
80
|
-
# the list of +valid_exit_codes
|
91
|
+
# @raise [CommandFailed]
|
92
|
+
# if +exitstatus+ is not in the list of +valid_exit_codes+
|
93
|
+
# @raise [CommandTimeout]
|
94
|
+
# if execution time exceeds +timeout+
|
81
95
|
#
|
82
96
|
def shellout!(*args)
|
83
97
|
cmd = shellout(*args)
|
84
98
|
cmd.error!
|
85
99
|
cmd
|
100
|
+
rescue Mixlib::ShellOut::ShellCommandFailed
|
101
|
+
raise CommandFailed.new(cmd)
|
102
|
+
rescue Mixlib::ShellOut::CommandTimeout
|
103
|
+
raise CommandTimeout.new(cmd)
|
86
104
|
end
|
87
105
|
|
88
|
-
# Return true if the given value appears to be "truthy".
|
89
106
|
#
|
90
|
-
#
|
91
|
-
|
92
|
-
|
107
|
+
# Convert the given path to be appropiate for shelling out on Windows.
|
108
|
+
#
|
109
|
+
# @param [String, Array<String>] pieces
|
110
|
+
# the pieces of the path to join and fix
|
111
|
+
# @return [String]
|
112
|
+
# the path with applied changes
|
113
|
+
#
|
114
|
+
def windows_safe_path(*pieces)
|
115
|
+
path = File.join(*pieces)
|
116
|
+
|
117
|
+
if File::ALT_SEPARATOR
|
118
|
+
path.gsub(File::SEPARATOR, File::ALT_SEPARATOR)
|
119
|
+
else
|
120
|
+
path
|
121
|
+
end
|
93
122
|
end
|
94
123
|
|
95
|
-
# Return true if the given value appears to be "falsey".
|
96
124
|
#
|
97
|
-
#
|
98
|
-
|
99
|
-
|
125
|
+
# Create a directory at the given +path+.
|
126
|
+
#
|
127
|
+
# @param [String, Array<String>] paths
|
128
|
+
# the path or list of paths to join to create
|
129
|
+
#
|
130
|
+
# @return [String]
|
131
|
+
# the path to the created directory
|
132
|
+
#
|
133
|
+
def create_directory(*paths)
|
134
|
+
path = File.join(*paths)
|
135
|
+
log.debug(log_key) { "Creating directory `#{path}'" }
|
136
|
+
FileUtils.mkdir_p(path)
|
137
|
+
path
|
138
|
+
end
|
139
|
+
|
140
|
+
#
|
141
|
+
# Remove the directory at the given +path+.
|
142
|
+
#
|
143
|
+
# @param [String, Array<String>] paths
|
144
|
+
# the path or list of paths to join to delete
|
145
|
+
#
|
146
|
+
# @return [String]
|
147
|
+
# the path to the removed directory
|
148
|
+
#
|
149
|
+
def remove_directory(*paths)
|
150
|
+
path = File.join(*paths)
|
151
|
+
log.debug(log_key) { "Remove directory `#{path}'" }
|
152
|
+
FileUtils.rm_rf(path)
|
153
|
+
path
|
154
|
+
end
|
155
|
+
|
156
|
+
#
|
157
|
+
# Copy the +source+ file to the +destination+.
|
158
|
+
#
|
159
|
+
# @param [String] source
|
160
|
+
# @param [String] destination
|
161
|
+
#
|
162
|
+
# @return [String]
|
163
|
+
# the destination path
|
164
|
+
#
|
165
|
+
def copy_file(source, destination)
|
166
|
+
log.debug(log_key) { "Copying `#{source}' to `#{destination}'" }
|
167
|
+
FileUtils.cp(source, destination)
|
168
|
+
destination
|
169
|
+
end
|
170
|
+
|
171
|
+
#
|
172
|
+
# Remove the file at the given path.
|
173
|
+
#
|
174
|
+
# @param [String, Array<String>] paths
|
175
|
+
# the path or list of paths to join to delete
|
176
|
+
#
|
177
|
+
# @return [String]
|
178
|
+
# the path to the removed file
|
179
|
+
#
|
180
|
+
def remove_file(*paths)
|
181
|
+
path = File.join(*paths)
|
182
|
+
log.debug(log_key) { "Removing file `#{path}'" }
|
183
|
+
FileUtils.rm_f(path)
|
184
|
+
path
|
185
|
+
end
|
186
|
+
|
187
|
+
#
|
188
|
+
# Create a file at the given path. If a block is given, the contents of the
|
189
|
+
# block are written to the file. If the block is not given, the file is
|
190
|
+
# simply "touched".
|
191
|
+
#
|
192
|
+
# @param [String, Array<String>] paths
|
193
|
+
# the path or list of paths to join to create
|
194
|
+
#
|
195
|
+
# @return [String]
|
196
|
+
# the path to the created file
|
197
|
+
#
|
198
|
+
def create_file(*paths, &block)
|
199
|
+
path = File.join(*paths)
|
200
|
+
log.debug(log_key) { "Creating file `#{path}'" }
|
201
|
+
|
202
|
+
FileUtils.mkdir_p(File.dirname(path))
|
203
|
+
|
204
|
+
if block
|
205
|
+
File.open(path, 'wb') { |f| f.write(block.call) }
|
206
|
+
else
|
207
|
+
FileUtils.touch(path)
|
208
|
+
end
|
209
|
+
|
210
|
+
path
|
211
|
+
end
|
212
|
+
|
213
|
+
#
|
214
|
+
# Create a symlink from a to b
|
215
|
+
#
|
216
|
+
# @param [String] a
|
217
|
+
# @param [String] b
|
218
|
+
#
|
219
|
+
def create_link(a, b)
|
220
|
+
log.debug(log_key) { "Linking `#{a}' to `#{b}'" }
|
221
|
+
FileUtils.ln_s(a, b)
|
100
222
|
end
|
101
223
|
end
|
102
224
|
end
|
data/lib/omnibus/version.rb
CHANGED
data/omnibus.gemspec
CHANGED
@@ -21,10 +21,10 @@ Gem::Specification.new do |gem|
|
|
21
21
|
gem.test_files = gem.files.grep(/^(test|spec|features)\//)
|
22
22
|
gem.require_paths = ['lib']
|
23
23
|
|
24
|
-
gem.add_dependency 'chef-sugar', '~>
|
24
|
+
gem.add_dependency 'chef-sugar', '~> 2.2'
|
25
|
+
gem.add_dependency 'cleanroom', '~> 1.0'
|
25
26
|
gem.add_dependency 'mixlib-shellout', '~> 1.4'
|
26
27
|
gem.add_dependency 'ohai', '~> 7.2'
|
27
|
-
gem.add_dependency 'fpm', '~> 0.4'
|
28
28
|
gem.add_dependency 'uber-s3'
|
29
29
|
gem.add_dependency 'thor', '~> 0.18'
|
30
30
|
|
@@ -0,0 +1,22 @@
|
|
1
|
+
Package Name: <%= name %>
|
2
|
+
Package VRMF: <%= version %>
|
3
|
+
Update: N
|
4
|
+
Fileset
|
5
|
+
Fileset Name: <%= name %>
|
6
|
+
Fileset VRMF: <%= version %>
|
7
|
+
Fileset Description: <%= description %>
|
8
|
+
USRLIBLPPFiles
|
9
|
+
Configuration Script: <%= configuration_script %>
|
10
|
+
Unconfiguration Script: <%= unconfiguration_script %>
|
11
|
+
EOUSRLIBLPPFiles
|
12
|
+
Bosboot required: N
|
13
|
+
License agreement acceptance required: N
|
14
|
+
Include license files in this package: N
|
15
|
+
Requisites:
|
16
|
+
ROOT Part: Y
|
17
|
+
ROOTFiles
|
18
|
+
<% files.each do |file| -%>
|
19
|
+
<%= file %>
|
20
|
+
<% end -%>
|
21
|
+
EOROOTFiles
|
22
|
+
EOFileset
|
File without changes
|
File without changes
|
@@ -0,0 +1,25 @@
|
|
1
|
+
Package: <%= name %>
|
2
|
+
Version: <%= version %>-<%= iteration %>
|
3
|
+
License: <%= license %>
|
4
|
+
Vendor: <%= vendor %>
|
5
|
+
Architecture: <%= architecture %>
|
6
|
+
Maintainer: <%= maintainer %>
|
7
|
+
Installed-Size: <%= installed_size %>
|
8
|
+
<% unless dependencies.empty? -%>
|
9
|
+
Depends: <%= dependencies.join(', ') %>
|
10
|
+
<% end -%>
|
11
|
+
<% unless conflicts.empty? -%>
|
12
|
+
Conflicts: <%= conflicts.join(', ') %>
|
13
|
+
<% end -%>
|
14
|
+
<% unless replaces.empty? -%>
|
15
|
+
Replaces: <%= replaces.join(', ') %>
|
16
|
+
<% end -%>
|
17
|
+
Section: <%= section %>
|
18
|
+
Priority: <%= priority %>
|
19
|
+
Homepage: <%= homepage %>
|
20
|
+
<% lines = description.split("\n") -%>
|
21
|
+
<% firstline, *remainder = lines -%>
|
22
|
+
Description: <%= firstline %>
|
23
|
+
<% if remainder.any? -%>
|
24
|
+
<%= remainder.collect { |l| l =~ /^ *$/ ? " ." : " #{l}" }.join("\n") %>
|
25
|
+
<% end -%>
|