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
@@ -1,7 +1,7 @@
|
|
1
1
|
#
|
2
2
|
# Copyright 2014 Chef Software, Inc.
|
3
3
|
#
|
4
|
-
# Licensed under the Apache License, Version 2.0 (the
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the ''License");
|
5
5
|
# you may not use this file except in compliance with the License.
|
6
6
|
# You may obtain a copy of the License at
|
7
7
|
#
|
@@ -15,9 +15,15 @@
|
|
15
15
|
#
|
16
16
|
|
17
17
|
module Omnibus
|
18
|
-
class
|
19
|
-
|
20
|
-
|
18
|
+
class Compressor::Null < Compressor::Base
|
19
|
+
id :null
|
20
|
+
|
21
|
+
def package_name
|
22
|
+
''
|
23
|
+
end
|
24
|
+
|
25
|
+
def run!
|
26
|
+
# noop
|
21
27
|
end
|
22
28
|
end
|
23
29
|
end
|
@@ -0,0 +1,141 @@
|
|
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 'rubygems/package'
|
18
|
+
require 'zlib'
|
19
|
+
|
20
|
+
module Omnibus
|
21
|
+
class Compressor::TGZ < Compressor::Base
|
22
|
+
id :tgz
|
23
|
+
|
24
|
+
setup do
|
25
|
+
# Copy the compiled package (.deb, .rpm, .pkg) into the staging directory
|
26
|
+
copy_file(packager.package_path, "#{staging_dir}/")
|
27
|
+
end
|
28
|
+
|
29
|
+
build do
|
30
|
+
write_tgz
|
31
|
+
end
|
32
|
+
|
33
|
+
#
|
34
|
+
# @!group DSL methods
|
35
|
+
# --------------------------------------------------
|
36
|
+
|
37
|
+
#
|
38
|
+
# Set or return the level of compression to use when generating the zipped
|
39
|
+
# tarball. Default: max compression.
|
40
|
+
#
|
41
|
+
# @example
|
42
|
+
# compression_level 9
|
43
|
+
#
|
44
|
+
# @param [Fixnum] val
|
45
|
+
# the compression level to use
|
46
|
+
#
|
47
|
+
# @return [Fixnum]
|
48
|
+
#
|
49
|
+
def compression_level(val = NULL)
|
50
|
+
if null?(val)
|
51
|
+
@compression_level || Zlib::BEST_COMPRESSION
|
52
|
+
else
|
53
|
+
unless val.is_a?(Integer)
|
54
|
+
raise InvalidValue.new(:compression_level, 'be an Integer')
|
55
|
+
end
|
56
|
+
|
57
|
+
unless val.between?(1, 9)
|
58
|
+
raise InvalidValue.new(:compression_level, 'be between 1-9')
|
59
|
+
end
|
60
|
+
|
61
|
+
@compression_level = val
|
62
|
+
end
|
63
|
+
end
|
64
|
+
expose :compression_level
|
65
|
+
|
66
|
+
#
|
67
|
+
# @!endgroup
|
68
|
+
# --------------------------------------------------
|
69
|
+
|
70
|
+
#
|
71
|
+
# @see Base#package_name
|
72
|
+
#
|
73
|
+
def package_name
|
74
|
+
"#{packager.package_name}.tar.gz"
|
75
|
+
end
|
76
|
+
|
77
|
+
#
|
78
|
+
# Write the tar.gz to disk, reading in 1024 bytes at a time to reduce
|
79
|
+
# memory usage.
|
80
|
+
#
|
81
|
+
# @return [void]
|
82
|
+
#
|
83
|
+
def write_tgz
|
84
|
+
# Grab the contents of the gzipped tarball for reading
|
85
|
+
contents = gzipped_tarball
|
86
|
+
|
87
|
+
# Write the .tar.gz into the staging directory
|
88
|
+
File.open("#{staging_dir}/#{package_name}", 'wb') do |tgz|
|
89
|
+
while chunk = contents.read(1024)
|
90
|
+
tgz.write(chunk)
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
# Copy the .tar.gz into the package directory
|
95
|
+
FileSyncer.glob("#{staging_dir}/*.tar.gz").each do |tgz|
|
96
|
+
copy_file(tgz, Config.package_dir)
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
#
|
101
|
+
# Create an in-memory tarball from the given packager.
|
102
|
+
#
|
103
|
+
# @return [StringIO]
|
104
|
+
#
|
105
|
+
def tarball
|
106
|
+
tarfile = StringIO.new('')
|
107
|
+
Gem::Package::TarWriter.new(tarfile) do |tar|
|
108
|
+
path = "#{staging_dir}/#{packager.package_name}"
|
109
|
+
name = packager.package_name
|
110
|
+
mode = File.stat(path).mode
|
111
|
+
|
112
|
+
tar.add_file(name, mode) do |tf|
|
113
|
+
File.open(path, 'rb') do |file|
|
114
|
+
tf.write(file.read)
|
115
|
+
end
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
tarfile.rewind
|
120
|
+
tarfile
|
121
|
+
end
|
122
|
+
|
123
|
+
#
|
124
|
+
# Create the gzipped tarball. See {#tarball} for how the tarball is
|
125
|
+
# constructed. This method uses maximum gzip compression, unless the user
|
126
|
+
# specifies a different compression level.
|
127
|
+
#
|
128
|
+
# @return [StringIO]
|
129
|
+
#
|
130
|
+
def gzipped_tarball
|
131
|
+
gz = StringIO.new('')
|
132
|
+
z = Zlib::GzipWriter.new(gz, compression_level)
|
133
|
+
z.write(tarball.string)
|
134
|
+
z.close
|
135
|
+
|
136
|
+
# z was closed to write the gzip footer, so
|
137
|
+
# now we need a new StringIO
|
138
|
+
StringIO.new(gz.string)
|
139
|
+
end
|
140
|
+
end
|
141
|
+
end
|
data/lib/omnibus/config.rb
CHANGED
@@ -73,25 +73,6 @@ module Omnibus
|
|
73
73
|
end
|
74
74
|
alias_method :has_key?, :key?
|
75
75
|
|
76
|
-
#
|
77
|
-
# Get a value from the config object.
|
78
|
-
#
|
79
|
-
# @deprecated Use direct method instead
|
80
|
-
#
|
81
|
-
# @param [Symbol] key
|
82
|
-
# the key to fetch
|
83
|
-
#
|
84
|
-
# @return [Object]
|
85
|
-
#
|
86
|
-
def fetch(key)
|
87
|
-
Omnibus.logger.deprecated('Config') do
|
88
|
-
"fetch ([]). Please use `Config.#{key}' instead."
|
89
|
-
end
|
90
|
-
|
91
|
-
public_method_defined?(key.to_sym) && instance.send(key.to_sym)
|
92
|
-
end
|
93
|
-
alias_method :[], :fetch
|
94
|
-
|
95
76
|
#
|
96
77
|
# Reset the current configuration values. This method will unset any
|
97
78
|
# "stored" or memorized configuration values.
|
@@ -137,22 +118,7 @@ module Omnibus
|
|
137
118
|
#
|
138
119
|
# @return [String]
|
139
120
|
default(:git_cache_dir) do
|
140
|
-
|
141
|
-
@install_path_cache_dir
|
142
|
-
else
|
143
|
-
File.join(base_dir, 'cache', 'git_cache')
|
144
|
-
end
|
145
|
-
end
|
146
|
-
|
147
|
-
# @deprecated Use {#git_cache_dir} instead.
|
148
|
-
#
|
149
|
-
# @return [String]
|
150
|
-
default(:install_path_cache_dir) do
|
151
|
-
Omnibus.logger.deprecated('Config') do
|
152
|
-
'Config.install_path_cache_dir. Plase use Config.git_cache_dir instead.'
|
153
|
-
end
|
154
|
-
|
155
|
-
git_cache_dir
|
121
|
+
File.join(base_dir, 'cache', 'git_cache')
|
156
122
|
end
|
157
123
|
|
158
124
|
# The absolute path to the directory on the virtual machine where
|
@@ -173,13 +139,14 @@ module Omnibus
|
|
173
139
|
# @return [String]
|
174
140
|
default(:package_dir) { File.join(base_dir, 'pkg') }
|
175
141
|
|
176
|
-
#
|
177
|
-
# packagers will store intermediate packaging products. Some packaging
|
178
|
-
# methods (notably fpm) handle this internally so not all packagers will
|
179
|
-
# use this setting.
|
142
|
+
# @deprecated Do not use this method.
|
180
143
|
#
|
181
144
|
# @return [String]
|
182
|
-
default(:package_tmp)
|
145
|
+
default(:package_tmp) do
|
146
|
+
Omnibus.logger.deprecated('Config') do
|
147
|
+
"Config.package_tmp. This value is no longer used."
|
148
|
+
end
|
149
|
+
end
|
183
150
|
|
184
151
|
# The relative path of the directory containing {Omnibus::Project}
|
185
152
|
# DSL files. This is relative to {#project_root}.
|
@@ -210,28 +177,81 @@ module Omnibus
|
|
210
177
|
# Package OSX pkg files inside a DMG
|
211
178
|
#
|
212
179
|
# @return [true, false]
|
213
|
-
default(:build_dmg
|
180
|
+
default(:build_dmg) do
|
181
|
+
Omnibus.logger.deprecated('Config') do
|
182
|
+
"Config.build_dmg. This value is no longer part of the " \
|
183
|
+
"config and is implied when defining a `compressor' block in the project."
|
184
|
+
end
|
185
|
+
end
|
214
186
|
|
215
187
|
# The starting x,y and ending x,y positions for the created DMG window.
|
216
188
|
#
|
217
189
|
# @return [String]
|
218
|
-
default(:dmg_window_bounds
|
190
|
+
default(:dmg_window_bounds) do
|
191
|
+
Omnibus.logger.deprecated('Config') do
|
192
|
+
"Config.dmg_window_bounds. This value is no longer part of the " \
|
193
|
+
"config and should be defined in the `compressor' block in the project."
|
194
|
+
end
|
195
|
+
end
|
219
196
|
|
220
197
|
# The starting x,y position where the .pkg file should live in the DMG
|
221
198
|
# window.
|
222
199
|
#
|
223
200
|
# @return [String]
|
224
|
-
default(:dmg_pkg_position
|
201
|
+
default(:dmg_pkg_position) do
|
202
|
+
Omnibus.logger.deprecated('Config') do
|
203
|
+
"Config.dmg_pkg_position. This value is no longer part of the " \
|
204
|
+
"config and should be defined in the `compressor' block in the project."
|
205
|
+
end
|
206
|
+
end
|
225
207
|
|
226
208
|
# Sign the pkg package.
|
227
209
|
#
|
228
210
|
# @return [true, false]
|
229
|
-
default(:sign_pkg
|
211
|
+
default(:sign_pkg) do
|
212
|
+
Omnibus.logger.deprecated('Config') do
|
213
|
+
"Config.sign_pkg. This value is no longer part of the config and " \
|
214
|
+
"should be defined in the `package' block in the project."
|
215
|
+
end
|
216
|
+
end
|
230
217
|
|
231
218
|
# The identity to sign the pkg with.
|
232
219
|
#
|
233
220
|
# @return [String]
|
234
|
-
default(:signing_identity
|
221
|
+
default(:signing_identity) do
|
222
|
+
Omnibus.logger.deprecated('Config') do
|
223
|
+
"Config.signing_identity. This value is no longer part of the " \
|
224
|
+
"config and should be defined in the `package' block in the project."
|
225
|
+
end
|
226
|
+
end
|
227
|
+
|
228
|
+
# --------------------------------------------------
|
229
|
+
# @!endgroup
|
230
|
+
#
|
231
|
+
|
232
|
+
#
|
233
|
+
# @!group RPM configuration options
|
234
|
+
# --------------------------------------------------
|
235
|
+
|
236
|
+
# Sign the rpm package.
|
237
|
+
#
|
238
|
+
# @return [true, false]
|
239
|
+
default(:sign_rpm) do
|
240
|
+
Omnibus.logger.deprecated('Config') do
|
241
|
+
"Config.sign_rpm. This value is no longer part of the config and " \
|
242
|
+
"should be defined in the `package' block in the project."
|
243
|
+
end
|
244
|
+
end
|
245
|
+
|
246
|
+
# The passphrase to sign the RPM with.
|
247
|
+
#
|
248
|
+
# @return [String]
|
249
|
+
default(:rpm_signing_passphrase) do
|
250
|
+
Omnibus.logger.deprecated('Config') do
|
251
|
+
"Config.rpm_signing_passphrase. This value is no longer part of the " \
|
252
|
+
"config and should be defined in the `package' block in the project."
|
253
|
+
end
|
254
|
+
end
|
235
255
|
|
236
256
|
# --------------------------------------------------
|
237
257
|
# @!endgroup
|
@@ -252,21 +272,21 @@ module Omnibus
|
|
252
272
|
#
|
253
273
|
# @return [String]
|
254
274
|
default(:s3_bucket) do
|
255
|
-
raise
|
275
|
+
raise MissingRequiredAttribute.new(self, :s3_bucket, "'my_bucket'")
|
256
276
|
end
|
257
277
|
|
258
278
|
# The S3 access key to use with S3 caching.
|
259
279
|
#
|
260
280
|
# @return [String]
|
261
281
|
default(:s3_access_key) do
|
262
|
-
raise
|
282
|
+
raise MissingRequiredAttribute.new(self, :s3_access_key, "'ABCD1234'")
|
263
283
|
end
|
264
284
|
|
265
285
|
# The S3 secret key to use with S3 caching.
|
266
286
|
#
|
267
287
|
# @return [String]
|
268
288
|
default(:s3_secret_key) do
|
269
|
-
raise
|
289
|
+
raise MissingRequiredAttribute.new(self, :s3_secret_key, "'EFGH5678'")
|
270
290
|
end
|
271
291
|
|
272
292
|
# --------------------------------------------------
|
@@ -281,21 +301,21 @@ module Omnibus
|
|
281
301
|
#
|
282
302
|
# @return [String]
|
283
303
|
default(:artifactory_endpoint) do
|
284
|
-
raise
|
304
|
+
raise MissingRequiredAttribute.new(self, :artifactory_endpoint, "'https://...'")
|
285
305
|
end
|
286
306
|
|
287
307
|
# The username of the artifactory user to authenticate with.
|
288
308
|
#
|
289
309
|
# @return [String]
|
290
310
|
default(:artifactory_username) do
|
291
|
-
raise
|
311
|
+
raise MissingRequiredAttribute.new(self, :artifactory_username, "'admin'")
|
292
312
|
end
|
293
313
|
|
294
314
|
# The password of the artifactory user to authenticate with.
|
295
315
|
#
|
296
316
|
# @return [String]
|
297
317
|
default(:artifactory_password) do
|
298
|
-
raise
|
318
|
+
raise MissingRequiredAttribute.new(self, :artifactory_password, "'password'")
|
299
319
|
end
|
300
320
|
|
301
321
|
# The base path artifacts are published to. This is usually maps to
|
@@ -304,7 +324,7 @@ module Omnibus
|
|
304
324
|
#
|
305
325
|
# @return [String]
|
306
326
|
default(:artifactory_base_path) do
|
307
|
-
raise
|
327
|
+
raise MissingRequiredAttribute.new(self, :artifactory_base_path, "'com/mycompany'")
|
308
328
|
end
|
309
329
|
|
310
330
|
# The path on disk to an SSL pem file to sign requests with.
|
@@ -349,14 +369,14 @@ module Omnibus
|
|
349
369
|
#
|
350
370
|
# @return [String]
|
351
371
|
default(:publish_s3_access_key) do
|
352
|
-
raise
|
372
|
+
raise MissingRequiredAttribute.new(self, :publish_s3_access_key, "'ABCD1234'")
|
353
373
|
end
|
354
374
|
|
355
375
|
# The S3 secret key to use for S3 artifact release
|
356
376
|
#
|
357
377
|
# @return [String]
|
358
378
|
default(:publish_s3_secret_key) do
|
359
|
-
raise
|
379
|
+
raise MissingRequiredAttribute.new(self, :publish_s3_secret_key, "'EFGH5678'")
|
360
380
|
end
|
361
381
|
|
362
382
|
# --------------------------------------------------
|
@@ -367,17 +387,6 @@ module Omnibus
|
|
367
387
|
# @!group Miscellaneous Configuration Parameters
|
368
388
|
# --------------------------------------------------
|
369
389
|
|
370
|
-
# @deprecated The is no replacement for this configuration item
|
371
|
-
#
|
372
|
-
# @return [true, false]
|
373
|
-
default(:override_file) do
|
374
|
-
Omnibus.logger.deprecated('Config') do
|
375
|
-
'Config.override_file. Using an override file is deprecated.'
|
376
|
-
end
|
377
|
-
|
378
|
-
nil
|
379
|
-
end
|
380
|
-
|
381
390
|
# An array of local disk paths that include software definitions to load
|
382
391
|
# from disk. The software definitions in these paths are pulled
|
383
392
|
# **in order**, so if multiple paths have the same software definition, the
|
@@ -393,18 +402,6 @@ module Omnibus
|
|
393
402
|
# @return [Array<String>]
|
394
403
|
default(:local_software_dirs) { [] }
|
395
404
|
|
396
|
-
# @deprecated Use {#software_gems} instead
|
397
|
-
#
|
398
|
-
# @return [String]
|
399
|
-
default(:software_gem) do
|
400
|
-
Omnibus.logger.deprecated('Config') do
|
401
|
-
'Config.software_gem. Plase use Config.software_gems (plural) and ' \
|
402
|
-
'specify an array of software gems instead.'
|
403
|
-
end
|
404
|
-
|
405
|
-
software_gems
|
406
|
-
end
|
407
|
-
|
408
405
|
# The list of gems to pull software definitions from. The software
|
409
406
|
# definitions from these gems are pulled **in order**, so if multiple gems
|
410
407
|
# have the same software definition, the one that appears **first** in the
|
@@ -419,11 +416,7 @@ module Omnibus
|
|
419
416
|
#
|
420
417
|
# @return [Array<String>]
|
421
418
|
default(:software_gems) do
|
422
|
-
|
423
|
-
Array(@software_gem)
|
424
|
-
else
|
425
|
-
['omnibus-software']
|
426
|
-
end
|
419
|
+
['omnibus-software']
|
427
420
|
end
|
428
421
|
|
429
422
|
# The solaris compiler to use
|
@@ -447,7 +440,7 @@ module Omnibus
|
|
447
440
|
# The number of times to retry the build before failing.
|
448
441
|
#
|
449
442
|
# @return [Integer]
|
450
|
-
default(:build_retries,
|
443
|
+
default(:build_retries, 0)
|
451
444
|
|
452
445
|
# Use the incremental build caching implemented via git. This will
|
453
446
|
# drastically improve build times, but may result in hidden and
|
@@ -456,6 +449,19 @@ module Omnibus
|
|
456
449
|
# @return [true, false]
|
457
450
|
default(:use_git_caching, true)
|
458
451
|
|
452
|
+
# The number of worker threads for make. If this is not set
|
453
|
+
# explicitly in config, it will attempt to determine via Ohai in
|
454
|
+
# the builder, and failing that will default to 3
|
455
|
+
#
|
456
|
+
# @return [Integer]
|
457
|
+
default(:workers) do
|
458
|
+
if Ohai['cpu'] && Ohai['cpu']['total']
|
459
|
+
Ohai['cpu']['total'].to_i + 1
|
460
|
+
else
|
461
|
+
3
|
462
|
+
end
|
463
|
+
end
|
464
|
+
|
459
465
|
# --------------------------------------------------
|
460
466
|
# @!endgroup
|
461
467
|
#
|