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,84 +0,0 @@
|
|
1
|
-
Feature: Backwards-compatible deprecated commands
|
2
|
-
Scenario: When "build project" is given
|
3
|
-
* I run `omnibus build project hamlet`
|
4
|
-
* the output should contain:
|
5
|
-
"""
|
6
|
-
The interface for building a project has changed. Please use 'omnibus build hamlet' instead.
|
7
|
-
"""
|
8
|
-
|
9
|
-
Scenario: When "build software" is given
|
10
|
-
* I run `omnibus build software preparation`
|
11
|
-
* the output should contain:
|
12
|
-
"""
|
13
|
-
Building individual software definitions is no longer supported!
|
14
|
-
"""
|
15
|
-
* the exit status should not be 0
|
16
|
-
|
17
|
-
Scenario: When --timestamp is given
|
18
|
-
* I run `omnibus build hamlet --timestamp`
|
19
|
-
* the output should contain:
|
20
|
-
"""
|
21
|
-
The '--timestamp' option has been deprecated! Please use '--override append_timestamp:true' instead.
|
22
|
-
"""
|
23
|
-
|
24
|
-
Scenario: When -t is given
|
25
|
-
* I run `omnibus build hamlet -t`
|
26
|
-
* the output should contain:
|
27
|
-
"""
|
28
|
-
The '--timestamp' option has been deprecated! Please use '--override append_timestamp:true' instead.
|
29
|
-
"""
|
30
|
-
|
31
|
-
Scenario: When --no-timestamp is given
|
32
|
-
* I run `omnibus build hamlet --no-timestamp`
|
33
|
-
* the output should contain:
|
34
|
-
"""
|
35
|
-
The '--no-timestamp' option has been deprecated! Please use '--override append_timestamp:false' instead.
|
36
|
-
"""
|
37
|
-
|
38
|
-
Scenario: When "project PROJECT" is given
|
39
|
-
* I run `omnibus project hamlet`
|
40
|
-
* the output should contain:
|
41
|
-
"""
|
42
|
-
The project generator has been renamed to 'omnibus new'. Please use 'omnibus new' in the future.
|
43
|
-
"""
|
44
|
-
|
45
|
-
Scenario: When OMNIBUS_APPEND_TIMESTAMP is given (true)
|
46
|
-
* I set the environment variables to:
|
47
|
-
| variable | value |
|
48
|
-
| OMNIBUS_APPEND_TIMESTAMP | true |
|
49
|
-
* I run `omnibus build hamlet`
|
50
|
-
* the output should contain:
|
51
|
-
"""
|
52
|
-
The environment variable 'OMNIBUS_APPEND_TIMESTAMP' is deprecated. Please use '--override append_timestamp:true' instead.
|
53
|
-
"""
|
54
|
-
|
55
|
-
Scenario: When OMNIBUS_APPEND_TIMESTAMP is given (false)
|
56
|
-
* I set the environment variables to:
|
57
|
-
| variable | value |
|
58
|
-
| OMNIBUS_APPEND_TIMESTAMP | false |
|
59
|
-
* I run `omnibus build hamlet`
|
60
|
-
* the output should contain:
|
61
|
-
"""
|
62
|
-
The environment variable 'OMNIBUS_APPEND_TIMESTAMP' is deprecated. Please use '--override append_timestamp:false' instead.
|
63
|
-
"""
|
64
|
-
|
65
|
-
Scenario: When "release package" is given
|
66
|
-
* I run `omnibus release package /path/to/package`
|
67
|
-
* the output should contain:
|
68
|
-
"""
|
69
|
-
The interface for releasing a project has changed. Please use 'omnibus publish BACKEND [COMAMND]' instead.
|
70
|
-
"""
|
71
|
-
|
72
|
-
Scenario: When "release package --public" is given
|
73
|
-
* I run `omnibus release package /path/to/package --public`
|
74
|
-
* the output should contain:
|
75
|
-
"""
|
76
|
-
The '--public' option has been deprecated! Please use '--acl public' instead.
|
77
|
-
"""
|
78
|
-
|
79
|
-
Scenario: When "release package --no-public" is given
|
80
|
-
* I run `omnibus release package /path/to/package --no-public`
|
81
|
-
* the output should contain:
|
82
|
-
"""
|
83
|
-
The '--no-public' option has been deprecated! Please use '--acl private' instead.
|
84
|
-
"""
|
data/lib/omnibus/cleanroom.rb
DELETED
@@ -1,141 +0,0 @@
|
|
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
|
-
module Omnibus
|
18
|
-
module Cleanroom
|
19
|
-
#
|
20
|
-
# Callback for when this module is included.
|
21
|
-
#
|
22
|
-
# @param [Class] base
|
23
|
-
#
|
24
|
-
def self.included(base)
|
25
|
-
base.send(:extend, ClassMethods)
|
26
|
-
base.send(:include, InstanceMethods)
|
27
|
-
end
|
28
|
-
|
29
|
-
#
|
30
|
-
# Class methods
|
31
|
-
#
|
32
|
-
module ClassMethods
|
33
|
-
#
|
34
|
-
# Evaluate the file in the context of the cleanroom.
|
35
|
-
#
|
36
|
-
# @param [Class] instance
|
37
|
-
# the instance of the class to evaluate against
|
38
|
-
# @param [String] filepath
|
39
|
-
# the path of the file to evaluate
|
40
|
-
#
|
41
|
-
def evaluate_file(instance, filepath)
|
42
|
-
absolute_path = File.expand_path(filepath)
|
43
|
-
file_contents = IO.read(absolute_path)
|
44
|
-
evaluate(instance, file_contents, absolute_path, 1)
|
45
|
-
end
|
46
|
-
|
47
|
-
#
|
48
|
-
# Evaluate the string or block in the context of the cleanroom.
|
49
|
-
#
|
50
|
-
# @param [Class] instance
|
51
|
-
# the instance of the class to evaluate against
|
52
|
-
# @param [Array<String>] args
|
53
|
-
# the args to +instance_eval+
|
54
|
-
# @param [Proc] block
|
55
|
-
# the block to +instance_eval+
|
56
|
-
#
|
57
|
-
def evaluate(instance, *args, &block)
|
58
|
-
cleanroom.new(instance).instance_eval(*args, &block)
|
59
|
-
end
|
60
|
-
|
61
|
-
#
|
62
|
-
# Expose the given method to the DSL.
|
63
|
-
#
|
64
|
-
# @param [Symbol] name
|
65
|
-
#
|
66
|
-
def expose(name)
|
67
|
-
unless public_method_defined?(name)
|
68
|
-
raise NameError, "undefined method `#{name}' for class `#{self.name}'"
|
69
|
-
end
|
70
|
-
|
71
|
-
exposed_methods[name] = true
|
72
|
-
end
|
73
|
-
|
74
|
-
#
|
75
|
-
# The list of exposed methods.
|
76
|
-
#
|
77
|
-
# @return [Hash]
|
78
|
-
#
|
79
|
-
def exposed_methods
|
80
|
-
@exposed_methods ||= {}
|
81
|
-
end
|
82
|
-
|
83
|
-
private
|
84
|
-
|
85
|
-
#
|
86
|
-
# The cleanroom instance for this class. This method is intentionally
|
87
|
-
# NOT cached!
|
88
|
-
#
|
89
|
-
# @return [Class]
|
90
|
-
#
|
91
|
-
def cleanroom
|
92
|
-
exposed = exposed_methods.keys
|
93
|
-
parent = self.name
|
94
|
-
|
95
|
-
Class.new do
|
96
|
-
define_method(:initialize) do |instance|
|
97
|
-
@instance = instance
|
98
|
-
end
|
99
|
-
|
100
|
-
exposed.each do |exposed_method|
|
101
|
-
define_method(exposed_method) do |*args, &block|
|
102
|
-
@instance.send(exposed_method, *args, &block)
|
103
|
-
end
|
104
|
-
end
|
105
|
-
|
106
|
-
define_method(:inspect) do
|
107
|
-
"#<#{parent} (Cleanroom)>"
|
108
|
-
end
|
109
|
-
alias_method :to_s, :inspect
|
110
|
-
end
|
111
|
-
end
|
112
|
-
end
|
113
|
-
|
114
|
-
#
|
115
|
-
# Instance Mehtods
|
116
|
-
#
|
117
|
-
module InstanceMethods
|
118
|
-
#
|
119
|
-
# Evaluate the file against the current instance.
|
120
|
-
#
|
121
|
-
# @param (see Cleanroom.evaluate_file)
|
122
|
-
# @return [self]
|
123
|
-
#
|
124
|
-
def evaluate_file(filepath)
|
125
|
-
self.class.evaluate_file(self, filepath)
|
126
|
-
self
|
127
|
-
end
|
128
|
-
|
129
|
-
#
|
130
|
-
# Evaluate the contents against the current instance.
|
131
|
-
#
|
132
|
-
# @param (see Cleanroom.evaluate_file)
|
133
|
-
# @return [self]
|
134
|
-
#
|
135
|
-
def evaluate(*args, &block)
|
136
|
-
self.class.evaluate(self, *args, &block)
|
137
|
-
self
|
138
|
-
end
|
139
|
-
end
|
140
|
-
end
|
141
|
-
end
|
@@ -1,132 +0,0 @@
|
|
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
|
-
#
|
18
|
-
# This file contains the deprecated commands. This class, its references, and
|
19
|
-
# any associated tests should be removed in the next major release.
|
20
|
-
#
|
21
|
-
# @todo Remove in 4.0
|
22
|
-
#
|
23
|
-
module Omnibus
|
24
|
-
class Command::Base
|
25
|
-
class << self
|
26
|
-
include Util
|
27
|
-
|
28
|
-
alias_method :old_dispatch, :dispatch
|
29
|
-
def dispatch(m, args, options, config)
|
30
|
-
# Handle OMNIBUS_APPEND_TIMESTAMP environment
|
31
|
-
if ENV.key?('OMNIBUS_APPEND_TIMESTAMP')
|
32
|
-
value = ENV.delete('OMNIBUS_APPEND_TIMESTAMP')
|
33
|
-
|
34
|
-
if truthy?(value)
|
35
|
-
warn("The environment variable 'OMNIBUS_APPEND_TIMESTAMP' is deprecated. Please use '--override append_timestamp:true' instead.")
|
36
|
-
args += %w(--override append_timestamp:true)
|
37
|
-
elsif falsey?(value)
|
38
|
-
warn("The environment variable 'OMNIBUS_APPEND_TIMESTAMP' is deprecated. Please use '--override append_timestamp:false' instead.")
|
39
|
-
args += %w(--override append_timestamp:false)
|
40
|
-
else
|
41
|
-
raise Omnibus::Error, "Unknown value for OMNIBUS_APPEND_TIMESTAMP: #{value.inspect}!"
|
42
|
-
end
|
43
|
-
end
|
44
|
-
|
45
|
-
# Handle old Config.release_s3_bucket
|
46
|
-
if Config.has_key?(:release_s3_bucket)
|
47
|
-
warn("The config variable 'release_s3_bucket' is deprecated. Please remove it from your config.")
|
48
|
-
end
|
49
|
-
|
50
|
-
# Handle old --timestamp
|
51
|
-
if args.include?('--timestamp') || args.include?('-t')
|
52
|
-
warn("The '--timestamp' option has been deprecated! Please use '--override append_timestamp:true' instead.")
|
53
|
-
args.delete('--timestamp')
|
54
|
-
args.delete('-t')
|
55
|
-
args += %w(--override append_timestamp:true)
|
56
|
-
end
|
57
|
-
|
58
|
-
# Handle old --no-timestamp
|
59
|
-
if args.include?('--no-timestamp')
|
60
|
-
warn("The '--no-timestamp' option has been deprecated! Please use '--override append_timestamp:false' instead.")
|
61
|
-
args.delete('--no-timestamp')
|
62
|
-
args += %w(--override append_timestamp:false)
|
63
|
-
end
|
64
|
-
|
65
|
-
#
|
66
|
-
# Legacy build command:
|
67
|
-
#
|
68
|
-
# $ omnibus build project PROJECT
|
69
|
-
#
|
70
|
-
if args[0..1] == %w(build project)
|
71
|
-
warn("The interface for building a project has changed. Please use 'omnibus build #{args[2]}' instead.")
|
72
|
-
args.delete_at(1)
|
73
|
-
return old_dispatch(m, args, options, config)
|
74
|
-
end
|
75
|
-
|
76
|
-
#
|
77
|
-
# Legacy software builder:
|
78
|
-
#
|
79
|
-
# $ omnibus build software SOFTWARE
|
80
|
-
#
|
81
|
-
if args[0..1] == %w(build software)
|
82
|
-
raise Omnibus::Error, 'Building individual software definitions is no longer supported!'
|
83
|
-
end
|
84
|
-
|
85
|
-
#
|
86
|
-
# Legacy generator:
|
87
|
-
#
|
88
|
-
# $ omnibus project PROJECT
|
89
|
-
#
|
90
|
-
if args[0] == 'project'
|
91
|
-
warn("The project generator has been renamed to 'omnibus new'. Please use 'omnibus new' in the future.")
|
92
|
-
args[0] = 'new'
|
93
|
-
return old_dispatch(m, args, options, config)
|
94
|
-
end
|
95
|
-
|
96
|
-
#
|
97
|
-
# Legacy releaser:
|
98
|
-
#
|
99
|
-
# $ omnibus release
|
100
|
-
#
|
101
|
-
if args[0..1] == %w(release package)
|
102
|
-
warn("The interface for releasing a project has changed. Please use 'omnibus publish BACKEND [COMAMND]' instead.")
|
103
|
-
args[0] = 'publish'
|
104
|
-
args.delete('package')
|
105
|
-
args.insert(1, 's3')
|
106
|
-
|
107
|
-
if args.include?('--public')
|
108
|
-
warn("The '--public' option has been deprecated! Please use '--acl public' instead.")
|
109
|
-
args.delete('--public')
|
110
|
-
args += %w(--acl public)
|
111
|
-
end
|
112
|
-
|
113
|
-
if args.include?('--no-public')
|
114
|
-
warn("The '--no-public' option has been deprecated! Please use '--acl private' instead.")
|
115
|
-
args.delete('--no-public')
|
116
|
-
args += %w(--acl private)
|
117
|
-
end
|
118
|
-
|
119
|
-
if Config.has_key?(:release_s3_bucket)
|
120
|
-
warn("The config variable 'release_s3_bucket' is deprecated. Please use 'omnibus publish s3 #{Config[:release_s3_bucket]}' instead.")
|
121
|
-
args.insert(2, Config[:release_s3_bucket])
|
122
|
-
end
|
123
|
-
|
124
|
-
return old_dispatch(m, args, options, config)
|
125
|
-
end
|
126
|
-
|
127
|
-
# Dispatch everything else down the stack
|
128
|
-
old_dispatch(m, args, options, config)
|
129
|
-
end
|
130
|
-
end
|
131
|
-
end
|
132
|
-
end
|
@@ -1 +0,0 @@
|
|
1
|
-
All Rights Reserved
|
@@ -1,9 +0,0 @@
|
|
1
|
-
This will install <%= config[:name] %> on your Mac.
|
2
|
-
|
3
|
-
--------------------------------------------------
|
4
|
-
|
5
|
-
This is a basic welcome message that is generated for every Omnibus project. You should customize this message by editing the file at files/mac_pkg/welcome.html.
|
6
|
-
|
7
|
-
If you are not the developer of <%= config[:name] %>, the presence of this message is likely a bug and should be reported to the creator.
|
8
|
-
|
9
|
-
Thank you for choosing Omnibus! Have a fantastic day!
|
@@ -1,20 +0,0 @@
|
|
1
|
-
|
2
|
-
name '<%= config[:name] %>'
|
3
|
-
maintainer 'CHANGE ME'
|
4
|
-
homepage 'https://CHANGE-ME.com'
|
5
|
-
|
6
|
-
install_dir '<%= config[:install_dir] %>'
|
7
|
-
build_version Omnibus::BuildVersion.semver
|
8
|
-
build_iteration 1
|
9
|
-
|
10
|
-
# creates required build directories
|
11
|
-
dependency 'preparation'
|
12
|
-
|
13
|
-
# <%= config[:name] %> dependencies/components
|
14
|
-
# dependency 'somedep'
|
15
|
-
|
16
|
-
# version manifest file
|
17
|
-
dependency 'version-manifest'
|
18
|
-
|
19
|
-
exclude '\.git*'
|
20
|
-
exclude 'bundler\/git'
|
@@ -1,42 +0,0 @@
|
|
1
|
-
# This is an example software definition for a C project.
|
2
|
-
#
|
3
|
-
# Lots of software definitions for popular open source software
|
4
|
-
# already exist in `opscode-omnibus`:
|
5
|
-
#
|
6
|
-
# https://github.com/opscode/omnibus-software/tree/master/config/software
|
7
|
-
#
|
8
|
-
name "c-example"
|
9
|
-
default_version "1.0.0"
|
10
|
-
|
11
|
-
dependency "zlib"
|
12
|
-
dependency "openssl"
|
13
|
-
|
14
|
-
source :url => "http://itchy.neckbeard.se/download/c-example-1.0.0.tar.gz",
|
15
|
-
:md5 => "8e23151f569fb54afef093ac0695077d"
|
16
|
-
|
17
|
-
relative_path 'c-example-1.0.0'
|
18
|
-
|
19
|
-
env = {
|
20
|
-
"LDFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
|
21
|
-
"CFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
|
22
|
-
"LD_RUN_PATH" => "#{install_dir}/embedded/lib"
|
23
|
-
}
|
24
|
-
|
25
|
-
build do
|
26
|
-
command ["./configure",
|
27
|
-
"--prefix=#{install_dir}/embedded",
|
28
|
-
"--disable-debug",
|
29
|
-
"--enable-optimize",
|
30
|
-
"--disable-ldap",
|
31
|
-
"--disable-ldaps",
|
32
|
-
"--disable-rtsp",
|
33
|
-
"--enable-proxy",
|
34
|
-
"--disable-dependency-tracking",
|
35
|
-
"--enable-ipv6",
|
36
|
-
"--without-libidn",
|
37
|
-
"--with-ssl=#{install_dir}/embedded",
|
38
|
-
"--with-zlib=#{install_dir}/embedded"].join(" "), :env => env
|
39
|
-
|
40
|
-
command "make -j #{workers}", :env => env
|
41
|
-
|
42
|
-
end
|
@@ -1,38 +0,0 @@
|
|
1
|
-
# This is an example software definition for an Erlang project.
|
2
|
-
#
|
3
|
-
# Lots of software definitions for popular open source software
|
4
|
-
# already exist in `opscode-omnibus`:
|
5
|
-
#
|
6
|
-
# https://github.com/opscode/omnibus-software/tree/master/config/software
|
7
|
-
#
|
8
|
-
name "erlang-example"
|
9
|
-
default_version "1.0.0"
|
10
|
-
|
11
|
-
dependency "erlang"
|
12
|
-
dependency "rebar"
|
13
|
-
dependency "rsync"
|
14
|
-
|
15
|
-
source :git => "git://github.com/example/erlang.git"
|
16
|
-
|
17
|
-
relative_path "erlang-example"
|
18
|
-
|
19
|
-
env = {
|
20
|
-
"PATH" => "#{install_dir}/embedded/bin:#{ENV["PATH"]}",
|
21
|
-
"LDFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
|
22
|
-
"CFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
|
23
|
-
"LD_RUN_PATH" => "#{install_dir}/embedded/lib"
|
24
|
-
}
|
25
|
-
|
26
|
-
build do
|
27
|
-
command "make distclean", :env => env
|
28
|
-
command "make rel", :env => env
|
29
|
-
command "mkdir -p #{install_dir}/embedded/service/example-erlang"
|
30
|
-
command ["#{install_dir}/embedded/bin/rsync",
|
31
|
-
"-a",
|
32
|
-
"--delete",
|
33
|
-
"--exclude=.git/***",
|
34
|
-
"--exclude=.gitignore",
|
35
|
-
"./rel/erlang-example/",
|
36
|
-
"#{install_dir}/embedded/service/erlang-example/"].join(" ")
|
37
|
-
command "rm -rf #{install_dir}/embedded/service/erlang-example/log"
|
38
|
-
end
|