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
@@ -14,54 +14,96 @@
|
|
14
14
|
# limitations under the License.
|
15
15
|
#
|
16
16
|
|
17
|
+
require 'fileutils'
|
18
|
+
|
17
19
|
module Omnibus
|
18
|
-
# Fetcher implementation for projects on the filesystem
|
19
20
|
class PathFetcher < Fetcher
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
super
|
21
|
+
#
|
22
|
+
# Fetch if the local directory checksum is different than the path directory
|
23
|
+
# checksum.
|
24
|
+
#
|
25
|
+
# @return [true, false]
|
26
|
+
#
|
27
|
+
def fetch_required?
|
28
|
+
target_shasum != destination_shasum
|
29
29
|
end
|
30
30
|
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
31
|
+
#
|
32
|
+
# The version identifier for this path. This is computed using the path
|
33
|
+
# on disk to the source and the recursive shasum of that path on disk.
|
34
|
+
#
|
35
|
+
# @return [String]
|
36
|
+
#
|
37
|
+
def version_guid
|
38
|
+
"path:#{source_path}"
|
36
39
|
end
|
37
40
|
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
41
|
+
#
|
42
|
+
# Clean the given path by removing the project directory.
|
43
|
+
#
|
44
|
+
# @return [true, false]
|
45
|
+
# true if the directory was cleaned, false otherwise
|
46
|
+
#
|
47
|
+
def clean
|
48
|
+
if File.exist?(project_dir)
|
49
|
+
log.info(log_key) { "Cleaning project directory `#{project_dir}'" }
|
50
|
+
FileUtils.rm_rf(project_dir)
|
51
|
+
fetch
|
52
|
+
true
|
44
53
|
else
|
45
|
-
|
46
|
-
shellout!(sync_cmd)
|
54
|
+
false
|
47
55
|
end
|
48
56
|
end
|
49
57
|
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
58
|
+
#
|
59
|
+
# Fetch any new files by copying them to the +project_dir+.
|
60
|
+
#
|
61
|
+
# @return [void]
|
62
|
+
#
|
55
63
|
def fetch
|
56
|
-
|
64
|
+
log.info(log_key) { "Copying from `#{source_path}'" }
|
65
|
+
|
66
|
+
create_required_directories
|
67
|
+
FileSyncer.sync(source_path, project_dir)
|
57
68
|
end
|
58
69
|
|
70
|
+
#
|
71
|
+
# The version for this item in the cache. The is the shasum of the directory
|
72
|
+
# on disk.
|
73
|
+
#
|
74
|
+
# @return [String]
|
75
|
+
#
|
59
76
|
def version_for_cache
|
60
|
-
|
77
|
+
"path:#{source_path}|shasum:#{target_shasum}"
|
61
78
|
end
|
62
79
|
|
63
|
-
|
64
|
-
|
80
|
+
private
|
81
|
+
|
82
|
+
#
|
83
|
+
# The path on disk to pull the files from.
|
84
|
+
#
|
85
|
+
# @return [String]
|
86
|
+
#
|
87
|
+
def source_path
|
88
|
+
source[:path]
|
89
|
+
end
|
90
|
+
|
91
|
+
#
|
92
|
+
# The shasum of the directory **inside** the project.
|
93
|
+
#
|
94
|
+
# @return [String]
|
95
|
+
#
|
96
|
+
def target_shasum
|
97
|
+
@target_shasum ||= digest_directory(project_dir, :sha256)
|
98
|
+
end
|
99
|
+
|
100
|
+
#
|
101
|
+
# The shasum of the directory **outside** of the project.
|
102
|
+
#
|
103
|
+
# @return [String]
|
104
|
+
#
|
105
|
+
def destination_shasum
|
106
|
+
@destination_shasum ||= digest_directory(source_path, :sha256)
|
65
107
|
end
|
66
108
|
end
|
67
109
|
end
|
@@ -0,0 +1,149 @@
|
|
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 'fileutils'
|
18
|
+
|
19
|
+
module Omnibus
|
20
|
+
module FileSyncer
|
21
|
+
extend self
|
22
|
+
|
23
|
+
# Files to be ignored during a directory globbing
|
24
|
+
IGNORED_FILES = %w(. ..).freeze
|
25
|
+
|
26
|
+
#
|
27
|
+
# Glob across the given pattern, accounting for dotfiles, removing Ruby's
|
28
|
+
# dumb idea to include +'.'+ and +'..'+ as entries.
|
29
|
+
#
|
30
|
+
# @param [String] pattern
|
31
|
+
# the path or glob pattern to get all files from
|
32
|
+
#
|
33
|
+
# @return [Array<String>]
|
34
|
+
# the list of all files
|
35
|
+
#
|
36
|
+
def glob(pattern)
|
37
|
+
Dir.glob(pattern, File::FNM_DOTMATCH).sort.reject do |file|
|
38
|
+
basename = File.basename(file)
|
39
|
+
IGNORED_FILES.include?(basename)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
#
|
44
|
+
# Copy the files from +source+ to +destination+, while removing any files
|
45
|
+
# in +destination+ that are not present in +source+.
|
46
|
+
#
|
47
|
+
# The method accepts an optional +:exclude+ parameter to ignore files and
|
48
|
+
# folders that match the given pattern(s). Note the exclude pattern behaves
|
49
|
+
# on paths relative to the given source. If you want to exclude a nested
|
50
|
+
# directory, you will need to use something like +**/directory+.
|
51
|
+
#
|
52
|
+
# @raise ArgumentError
|
53
|
+
# if the +source+ parameter is not a directory
|
54
|
+
#
|
55
|
+
# @param [String] source
|
56
|
+
# the path on disk to sync from
|
57
|
+
# @param [String] destination
|
58
|
+
# the path on disk to sync to
|
59
|
+
#
|
60
|
+
# @option options [String, Array<String>] :exclude
|
61
|
+
# a file, folder, or globbing pattern of files to ignore when syncing
|
62
|
+
#
|
63
|
+
# @return [true]
|
64
|
+
#
|
65
|
+
def sync(source, destination, options = {})
|
66
|
+
unless File.directory?(source)
|
67
|
+
raise ArgumentError, "`source' must be a directory, but was a " \
|
68
|
+
"`#{File.ftype(source)}'! If you just want to sync a file, use " \
|
69
|
+
"the `copy' method instead."
|
70
|
+
end
|
71
|
+
|
72
|
+
# Reject any files that match the excludes pattern
|
73
|
+
excludes = Array(options[:exclude]).map do |exclude|
|
74
|
+
[exclude, "#{exclude}/*"]
|
75
|
+
end.flatten
|
76
|
+
|
77
|
+
source_files = glob(File.join(source, '**/*'))
|
78
|
+
source_files = source_files.reject do |source_file|
|
79
|
+
basename = relative_path_for(source_file, source)
|
80
|
+
excludes.any? { |exclude| File.fnmatch?(exclude, basename, File::FNM_DOTMATCH) }
|
81
|
+
end
|
82
|
+
|
83
|
+
# Ensure the destination directory exists
|
84
|
+
FileUtils.mkdir_p(destination) unless File.directory?(destination)
|
85
|
+
|
86
|
+
# Copy over the filtered source files
|
87
|
+
source_files.each do |source_file|
|
88
|
+
relative_path = relative_path_for(source_file, source)
|
89
|
+
|
90
|
+
# Create the parent directory
|
91
|
+
parent = File.join(destination, File.dirname(relative_path))
|
92
|
+
FileUtils.mkdir_p(parent) unless File.directory?(parent)
|
93
|
+
|
94
|
+
case File.ftype(source_file).to_sym
|
95
|
+
when :directory
|
96
|
+
FileUtils.mkdir_p("#{destination}/#{relative_path}")
|
97
|
+
when :link
|
98
|
+
target = File.readlink(source_file)
|
99
|
+
|
100
|
+
Dir.chdir(destination) do
|
101
|
+
FileUtils.ln_sf(target, "#{destination}/#{relative_path}")
|
102
|
+
end
|
103
|
+
when :file
|
104
|
+
FileUtils.cp(source_file, "#{destination}/#{relative_path}")
|
105
|
+
else
|
106
|
+
raise RuntimeError,
|
107
|
+
"Unknown file type: `File.ftype(source_file)' at `#{source_file}'!"
|
108
|
+
end
|
109
|
+
end
|
110
|
+
|
111
|
+
# Remove any files in the destination that are not in the source files
|
112
|
+
destination_files = glob("#{destination}/**/*")
|
113
|
+
|
114
|
+
# Calculate the relative paths of files so we can compare to the
|
115
|
+
# source.
|
116
|
+
relative_source_files = source_files.map do |file|
|
117
|
+
relative_path_for(file, source)
|
118
|
+
end
|
119
|
+
relative_destination_files = destination_files.map do |file|
|
120
|
+
relative_path_for(file, destination)
|
121
|
+
end
|
122
|
+
|
123
|
+
# Remove any extra files that are present in the destination, but are
|
124
|
+
# not in the source list
|
125
|
+
extra_files = relative_destination_files - relative_source_files
|
126
|
+
extra_files.each do |file|
|
127
|
+
FileUtils.rm_rf(File.join(destination, file))
|
128
|
+
end
|
129
|
+
|
130
|
+
true
|
131
|
+
end
|
132
|
+
|
133
|
+
private
|
134
|
+
|
135
|
+
#
|
136
|
+
# The relative path of the given +path+ to the +parent+.
|
137
|
+
#
|
138
|
+
# @param [String] path
|
139
|
+
# the path to get relative with
|
140
|
+
# @param [String] parent
|
141
|
+
# the parent where the path is contained (hopefully)
|
142
|
+
#
|
143
|
+
# @return [String]
|
144
|
+
#
|
145
|
+
def relative_path_for(path, parent)
|
146
|
+
Pathname.new(path).relative_path_from(Pathname.new(parent)).to_s
|
147
|
+
end
|
148
|
+
end
|
149
|
+
end
|
data/lib/omnibus/generator.rb
CHANGED
@@ -35,10 +35,43 @@ module Omnibus
|
|
35
35
|
type: :string,
|
36
36
|
default: '.'
|
37
37
|
|
38
|
+
class_option :bff_assets,
|
39
|
+
desc: 'Generate AIX bff assets',
|
40
|
+
type: :boolean,
|
41
|
+
default: false
|
42
|
+
|
43
|
+
class_option :deb_assets,
|
44
|
+
desc: 'Generate Debian deb assets',
|
45
|
+
type: :boolean,
|
46
|
+
default: false
|
47
|
+
|
48
|
+
class_option :dmg_assets,
|
49
|
+
desc: 'Generate Mac OS X dmg assets',
|
50
|
+
type: :boolean,
|
51
|
+
default: false
|
52
|
+
|
53
|
+
class_option :makeself_assets,
|
54
|
+
desc: 'Generate makeself assets',
|
55
|
+
type: :boolean,
|
56
|
+
default: false
|
57
|
+
|
58
|
+
class_option :msi_assets,
|
59
|
+
desc: 'Generate Windows MSI assets',
|
60
|
+
type: :boolean,
|
61
|
+
default: false
|
62
|
+
|
63
|
+
class_option :pkg_assets,
|
64
|
+
desc: 'Generate Mac OS X pkg assets',
|
65
|
+
type: :boolean,
|
66
|
+
default: false
|
67
|
+
|
68
|
+
class_option :rpm_assets,
|
69
|
+
desc: 'Generate RHEL/CentOS rpm assets',
|
70
|
+
type: :boolean,
|
71
|
+
default: false
|
72
|
+
|
38
73
|
class << self
|
39
|
-
#
|
40
|
-
# Set the source root for Thor.
|
41
|
-
#
|
74
|
+
# Set the source root for Thor
|
42
75
|
def source_root
|
43
76
|
File.expand_path('../generator_files', __FILE__)
|
44
77
|
end
|
@@ -52,13 +85,11 @@ module Omnibus
|
|
52
85
|
end
|
53
86
|
|
54
87
|
def create_project_definition
|
55
|
-
template('project.rb.erb', "#{target}/config/projects/#{name}.rb", template_options)
|
88
|
+
template('config/projects/project.rb.erb', "#{target}/config/projects/#{name}.rb", template_options)
|
56
89
|
end
|
57
90
|
|
58
91
|
def create_example_software_definitions
|
59
|
-
template('software/
|
60
|
-
template('software/erlang-example.rb.erb', "#{target}/config/software/erlang-example.rb", template_options)
|
61
|
-
template('software/ruby-example.rb.erb', "#{target}/config/software/ruby-example.rb", template_options)
|
92
|
+
template('config/software/zlib.rb.erb', "#{target}/config/software/#{name}-zlib.rb", template_options)
|
62
93
|
end
|
63
94
|
|
64
95
|
def create_kitchen_files
|
@@ -68,43 +99,74 @@ module Omnibus
|
|
68
99
|
end
|
69
100
|
|
70
101
|
def create_package_scripts
|
71
|
-
%w(
|
102
|
+
%w(preinst prerm postinst postrm).each do |package_script|
|
72
103
|
script_path = "#{target}/package-scripts/#{name}/#{package_script}"
|
73
104
|
template("package_scripts/#{package_script}.erb", script_path, template_options)
|
74
105
|
|
75
|
-
#
|
106
|
+
# Ensure the package script is executable
|
76
107
|
chmod(script_path, 0755)
|
77
108
|
end
|
78
109
|
end
|
79
110
|
|
80
|
-
def
|
81
|
-
|
82
|
-
|
83
|
-
copy_file('
|
111
|
+
def create_bff_assets
|
112
|
+
return unless options[:bff_assets]
|
113
|
+
|
114
|
+
copy_file(resource_path('bff/gen.template.erb'), "#{target}/resources/bff/gen.template.erb")
|
115
|
+
copy_file(resource_path('bff/postinstall.sh'), "#{target}/resources/bff/postinstall.sh")
|
116
|
+
copy_file(resource_path('bff/unpostinstall.sh'), "#{target}/resources/bff/unpostinstall.sh")
|
117
|
+
end
|
118
|
+
|
119
|
+
def create_deb_assets
|
120
|
+
return unless options[:deb_assets]
|
121
|
+
|
122
|
+
copy_file(resource_path('deb/conffiles.erb'), "#{target}/resources/deb/conffiles.erb")
|
123
|
+
copy_file(resource_path('deb/control.erb'), "#{target}/resources/deb/control.erb")
|
124
|
+
copy_file(resource_path('deb/md5sums.erb'), "#{target}/resources/deb/md5sums.erb")
|
84
125
|
end
|
85
126
|
|
86
127
|
def create_dmg_assets
|
87
|
-
|
88
|
-
|
128
|
+
return unless options[:dmg_assets]
|
129
|
+
|
130
|
+
copy_file(resource_path('dmg/background.png'), "#{target}/resources/dmg/background.png")
|
131
|
+
copy_file(resource_path('dmg/icon.png'), "#{target}/resources/dmg/icon.png")
|
132
|
+
end
|
133
|
+
|
134
|
+
def create_makeself_assets
|
135
|
+
return unless options[:makeself_assets]
|
136
|
+
|
137
|
+
copy_file(resource_path('makeself/post_extract.sh.erb'), "#{target}/resources/makeself/post_extract.sh.erb")
|
89
138
|
end
|
90
139
|
|
91
|
-
def
|
92
|
-
|
93
|
-
# because the parameters are resolved at the build time for localization
|
94
|
-
# and parameters files.
|
95
|
-
copy_file('windows_msi/localization-en-us.wxl.erb', "#{target}/files/windows_msi/Resources/localization-en-us.wxl.erb")
|
96
|
-
copy_file('windows_msi/parameters.wxi.erb', "#{target}/files/windows_msi/Resources/parameters.wxi.erb")
|
140
|
+
def create_msi_assets
|
141
|
+
return unless options[:msi_assets]
|
97
142
|
|
98
|
-
|
143
|
+
copy_file(resource_path('msi/localization-en-us.wxl.erb'), "#{target}/resources/msi/localization-en-us.wxl.erb")
|
144
|
+
copy_file(resource_path('msi/parameters.wxi.erb'), "#{target}/resources/msi/parameters.wxi.erb")
|
145
|
+
copy_file(resource_path('msi/source.wxs.erb'), "#{target}/resources/msi/source.wxs.erb")
|
99
146
|
|
100
|
-
copy_file('
|
101
|
-
copy_file('
|
102
|
-
copy_file('
|
103
|
-
copy_file('
|
104
|
-
copy_file('
|
105
|
-
copy_file('
|
147
|
+
copy_file(resource_path('msi/assets/LICENSE.rtf'), "#{target}/resources/msi/assets/LICENSE.rtf")
|
148
|
+
copy_file(resource_path('msi/assets/banner_background.bmp'), "#{target}/resources/msi/assets/banner_background.bmp")
|
149
|
+
copy_file(resource_path('msi/assets/dialog_background.bmp'), "#{target}/resources/msi/assets/dialog_background.bmp")
|
150
|
+
copy_file(resource_path('msi/assets/project.ico'), "#{target}/resources/msi/assets/project.ico")
|
151
|
+
copy_file(resource_path('msi/assets/project_16x16.ico'), "#{target}/resources/msi/assets/project_16x16.ico")
|
152
|
+
copy_file(resource_path('msi/assets/project_32x32.ico'), "#{target}/resources/msi/assets/project_32x32.ico")
|
106
153
|
end
|
107
154
|
|
155
|
+
def create_pkg_assets
|
156
|
+
return unless options[:pkg_assets]
|
157
|
+
|
158
|
+
copy_file(resource_path('pkg/background.png'), "#{target}/resources/pkg/background.png")
|
159
|
+
copy_file(resource_path('pkg/license.html.erb'), "#{target}/resources/pkg/license.html.erb")
|
160
|
+
copy_file(resource_path('pkg/welcome.html.erb'), "#{target}/resources/pkg/welcome.html.erb")
|
161
|
+
end
|
162
|
+
|
163
|
+
def create_rpm_assets
|
164
|
+
return unless options[:rpm_assets]
|
165
|
+
|
166
|
+
copy_file(resource_path('rpm/rpmmacros.erb'), "#{target}/resources/rpm/rpmmacros.erb")
|
167
|
+
copy_file(resource_path('rpm/signing.erb'), "#{target}/resources/rpm/signing.erb")
|
168
|
+
copy_file(resource_path('rpm/spec.erb'), "#{target}/resources/rpm/spec.erb")
|
169
|
+
end
|
108
170
|
private
|
109
171
|
|
110
172
|
#
|
@@ -122,10 +184,19 @@ module Omnibus
|
|
122
184
|
# @return [Hash]
|
123
185
|
#
|
124
186
|
def template_options
|
125
|
-
@template_options ||= {
|
126
|
-
|
127
|
-
|
128
|
-
|
187
|
+
@template_options ||= { name: name }
|
188
|
+
end
|
189
|
+
|
190
|
+
#
|
191
|
+
# The path to a vendored resource within Omnibus.
|
192
|
+
#
|
193
|
+
# @param [String, Array<String>] args
|
194
|
+
# the sub-path to get
|
195
|
+
#
|
196
|
+
# @return [String]
|
197
|
+
#
|
198
|
+
def resource_path(*args)
|
199
|
+
Omnibus.source_root.join('resources', *args).to_s
|
129
200
|
end
|
130
201
|
end
|
131
202
|
end
|