omnibus 3.2.2 → 4.0.0.beta.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +140 -10
- data/CHANGELOG.md +181 -8
- data/README.md +63 -35
- data/Rakefile +1 -1
- data/docs/omnibus-build-cache.md b/data/docs/Build → Cache.md +0 -0
- data/docs/Building on Debian.md +59 -0
- data/docs/Building on OSX.md +61 -35
- data/docs/Building on RHEL.md +74 -0
- data/docs/Building on Windows.md +40 -81
- data/features/commands/build.feature +1 -2
- data/features/commands/clean.feature +1 -1
- data/lib/omnibus.rb +111 -204
- data/lib/omnibus/build_version.rb +3 -20
- data/lib/omnibus/build_version_dsl.rb +2 -3
- data/lib/omnibus/builder.rb +103 -211
- data/lib/omnibus/cleaner.rb +5 -7
- data/lib/omnibus/cli.rb +1 -4
- data/lib/omnibus/cli/base.rb +9 -16
- data/lib/omnibus/compressor.rb +60 -0
- data/{spec/data/complicated/config/software/version-manifest.rb → lib/omnibus/compressors/base.rb} +17 -12
- data/lib/omnibus/compressors/dmg.rb +312 -0
- data/lib/omnibus/{null_builder.rb → compressors/null.rb} +10 -4
- data/lib/omnibus/compressors/tgz.rb +141 -0
- data/lib/omnibus/config.rb +89 -83
- data/lib/omnibus/core_extensions.rb +1 -0
- data/lib/omnibus/core_extensions/open_uri.rb +58 -0
- data/lib/omnibus/digestable.rb +9 -3
- data/lib/omnibus/exceptions.rb +116 -175
- data/lib/omnibus/fetcher.rb +97 -138
- data/lib/omnibus/fetchers/git_fetcher.rb +130 -165
- data/lib/omnibus/fetchers/net_fetcher.rb +205 -164
- data/lib/omnibus/fetchers/{s3_cache_fetcher.rb → null_fetcher.rb} +27 -17
- data/lib/omnibus/fetchers/path_fetcher.rb +74 -32
- data/lib/omnibus/file_syncer.rb +149 -0
- data/lib/omnibus/generator.rb +103 -32
- data/lib/omnibus/generator_files/.kitchen.yml.erb +5 -1
- data/lib/omnibus/generator_files/Gemfile.erb +13 -7
- data/lib/omnibus/generator_files/config/projects/project.rb.erb +28 -0
- data/lib/omnibus/generator_files/config/software/zlib.rb.erb +55 -0
- data/lib/omnibus/generator_files/omnibus.rb.erb +5 -7
- data/lib/omnibus/git_cache.rb +11 -13
- data/lib/omnibus/logger.rb +76 -22
- data/lib/omnibus/logging.rb +1 -1
- data/lib/omnibus/metadata.rb +264 -0
- data/lib/omnibus/ohai.rb +0 -51
- data/lib/omnibus/package.rb +4 -228
- data/lib/omnibus/packager.rb +71 -0
- data/lib/omnibus/packagers/base.rb +118 -176
- data/lib/omnibus/packagers/bff.rb +136 -0
- data/lib/omnibus/packagers/deb.rb +389 -0
- data/lib/omnibus/packagers/makeself.rb +114 -0
- data/lib/omnibus/packagers/msi.rb +346 -0
- data/lib/omnibus/packagers/pkg.rb +278 -0
- data/lib/omnibus/packagers/rpm.rb +438 -0
- data/lib/omnibus/packagers/solaris.rb +110 -0
- data/lib/omnibus/project.rb +263 -666
- data/lib/omnibus/publisher.rb +3 -3
- data/lib/omnibus/s3_cache.rb +21 -30
- data/lib/omnibus/software.rb +132 -271
- data/lib/omnibus/templating.rb +66 -0
- data/lib/omnibus/thread_pool.rb +109 -0
- data/lib/omnibus/util.rb +137 -15
- data/lib/omnibus/version.rb +1 -1
- data/omnibus.gemspec +2 -2
- data/resources/bff/gen.template.erb +22 -0
- data/resources/bff/postinstall.sh +0 -0
- data/resources/bff/unpostinstall.sh +0 -0
- data/resources/deb/conffiles.erb +3 -0
- data/resources/deb/control.erb +25 -0
- data/resources/deb/md5sums.erb +3 -0
- data/{lib/omnibus/generator_files/mac_dmg → resources/dmg}/background.png +0 -0
- data/resources/dmg/create_dmg.osascript.erb +17 -0
- data/{lib/omnibus/generator_files/mac_dmg → resources/dmg}/icon.png +0 -0
- data/{bin → resources/makeself}/makeself-header.sh +0 -0
- data/{bin → resources/makeself}/makeself.sh +0 -0
- data/{lib/omnibus/generator_files/package_scripts/makeselfinst.erb → resources/makeself/post_extract.sh.erb} +4 -4
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/LICENSE.rtf +0 -0
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/banner_background.bmp +0 -0
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/dialog_background.bmp +0 -0
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/project.ico +0 -0
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/project_16x16.ico +0 -0
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/project_32x32.ico +0 -0
- data/{spec/fixtures/sample/files/windows_msi/Resources/localization-en-us.wxl → resources/msi/localization-en-us.wxl.erb} +3 -4
- data/resources/msi/parameters.wxi.erb +9 -0
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/source.wxs.erb +14 -15
- data/{lib/omnibus/generator_files/mac_pkg → resources/pkg}/background.png +0 -0
- data/resources/pkg/distribution.xml.erb +21 -0
- data/resources/pkg/license.html.erb +3 -0
- data/resources/pkg/welcome.html.erb +7 -0
- data/resources/rpm/rpmmacros.erb +3 -0
- data/resources/rpm/signing.erb +40 -0
- data/resources/rpm/spec.erb +70 -0
- data/spec/functional/builder_spec.rb +90 -111
- data/spec/functional/fetchers/git_fetcher_spec.rb +130 -0
- data/spec/functional/fetchers/net_fetcher_spec.rb +110 -0
- data/spec/functional/fetchers/path_fetcher_spec.rb +97 -0
- data/spec/functional/file_syncer_spec.rb +206 -0
- data/spec/functional/templating_spec.rb +73 -0
- data/spec/spec_helper.rb +31 -94
- data/spec/support/env_helpers.rb +20 -0
- data/spec/support/examples.rb +56 -0
- data/spec/support/file_helpers.rb +46 -0
- data/spec/support/git_helpers.rb +107 -0
- data/spec/support/logging_helpers.rb +33 -0
- data/spec/support/matchers.rb +36 -0
- data/spec/support/ohai_helpers.rb +22 -0
- data/spec/support/path_helpers.rb +19 -0
- data/spec/support/shell_helpers.rb +14 -0
- data/spec/unit/build_version_dsl_spec.rb +0 -17
- data/spec/unit/build_version_spec.rb +1 -19
- data/spec/unit/builder_spec.rb +158 -46
- data/spec/unit/compressor_spec.rb +45 -0
- data/spec/unit/compressors/base_spec.rb +26 -0
- data/spec/unit/compressors/dmg_spec.rb +291 -0
- data/spec/unit/compressors/null_spec.rb +23 -0
- data/spec/unit/compressors/tgz_spec.rb +67 -0
- data/spec/unit/config_spec.rb +27 -34
- data/spec/unit/digestable_spec.rb +4 -4
- data/spec/unit/fetchers/git_fetcher_spec.rb +110 -39
- data/spec/unit/fetchers/net_fetcher_spec.rb +182 -72
- data/spec/unit/fetchers/path_fetcher_spec.rb +111 -0
- data/spec/unit/generator_spec.rb +137 -0
- data/spec/unit/git_cache_spec.rb +24 -34
- data/spec/unit/library_spec.rb +21 -82
- data/spec/unit/metadata_spec.rb +207 -0
- data/spec/unit/ohai_spec.rb +0 -7
- data/spec/unit/omnibus_spec.rb +41 -36
- data/spec/unit/package_spec.rb +1 -216
- data/spec/unit/packagers/base_spec.rb +76 -190
- data/spec/unit/packagers/bff_spec.rb +160 -0
- data/spec/unit/packagers/deb_spec.rb +324 -0
- data/spec/unit/packagers/makeself_spec.rb +80 -0
- data/spec/unit/packagers/msi_spec.rb +267 -0
- data/spec/unit/packagers/pkg_spec.rb +219 -0
- data/spec/unit/packagers/rpm_spec.rb +328 -0
- data/spec/unit/project_spec.rb +217 -80
- data/spec/unit/publisher_spec.rb +6 -2
- data/spec/unit/publishers/artifactory_publisher_spec.rb +1 -1
- data/spec/unit/publishers/s3_publisher_spec.rb +1 -1
- data/spec/unit/s3_cacher_spec.rb +22 -5
- data/spec/unit/software_spec.rb +89 -232
- data/spec/unit/util_spec.rb +188 -0
- metadata +159 -402
- data/features/commands/_deprecated.feature +0 -84
- data/lib/omnibus/cleanroom.rb +0 -141
- data/lib/omnibus/cli/deprecated.rb +0 -132
- data/lib/omnibus/generator_files/mac_pkg/license.html.erb +0 -1
- data/lib/omnibus/generator_files/mac_pkg/welcome.html.erb +0 -9
- data/lib/omnibus/generator_files/project.rb.erb +0 -20
- data/lib/omnibus/generator_files/software/c-example.rb.erb +0 -42
- data/lib/omnibus/generator_files/software/erlang-example.rb.erb +0 -38
- data/lib/omnibus/generator_files/software/ruby-example.rb.erb +0 -24
- data/lib/omnibus/generator_files/windows_msi/localization-en-us.wxl.erb +0 -20
- data/lib/omnibus/generator_files/windows_msi/parameters.wxi.erb +0 -9
- data/lib/omnibus/packagers/mac_dmg.rb +0 -235
- data/lib/omnibus/packagers/mac_pkg.rb +0 -176
- data/lib/omnibus/packagers/windows_msi.rb +0 -109
- data/spec/data/complicated/config/patches/bzip2/makefile_take_env_vars.patch +0 -15
- data/spec/data/complicated/config/patches/couchdb/patch_for_couchjs_stack.patch +0 -19
- data/spec/data/complicated/config/patches/gd/gd-2.0.33-configure-libpng.patch +0 -100
- data/spec/data/complicated/config/patches/keepalived/keepalived-1.2.9_opscode_centos_5.patch +0 -15
- data/spec/data/complicated/config/patches/libedit/freebsd-vi-fix.patch +0 -24
- data/spec/data/complicated/config/patches/libiconv/libiconv-1.14_srclib_stdio.in.h-remove-gets-declarations.patch +0 -29
- data/spec/data/complicated/config/patches/libwrap/tcp_wrappers-7.6-makefile-dest-fix.patch +0 -35
- data/spec/data/complicated/config/patches/libwrap/tcp_wrappers-7.6-malloc-fix.patch +0 -13
- data/spec/data/complicated/config/patches/libwrap/tcp_wrappers-7.6-shared_lib_plus_plus-1.patch +0 -1035
- data/spec/data/complicated/config/patches/logrotate/logrotate_basedir_override.patch +0 -12
- data/spec/data/complicated/config/patches/ncurses/ncurses-5.9-solaris-xopen_source_extended-detection.patch +0 -11
- data/spec/data/complicated/config/patches/ncurses/ncurses-clang.patch +0 -42
- data/spec/data/complicated/config/patches/ncurses/patch-aa +0 -23
- data/spec/data/complicated/config/patches/ncurses/patch-ab +0 -44
- data/spec/data/complicated/config/patches/ncurses/patch-ac +0 -40
- data/spec/data/complicated/config/patches/ncurses/patch-ad +0 -12
- data/spec/data/complicated/config/patches/ncurses/patch-aix-configure +0 -23
- data/spec/data/complicated/config/patches/ncurses/patch-cxx_cursesf.h +0 -22
- data/spec/data/complicated/config/patches/ncurses/patch-cxx_cursesm.h +0 -22
- data/spec/data/complicated/config/patches/nrpe/fix_for_runit.patch +0 -64
- data/spec/data/complicated/config/patches/openssl/openssl-1.0.1f-do-not-build-docs.patch +0 -101
- data/spec/data/complicated/config/patches/postgresql/postgresql-9.1.2-configure-ncurses-fix.patch +0 -12
- data/spec/data/complicated/config/patches/ruby/patch-configure +0 -103
- data/spec/data/complicated/config/patches/ruby/ruby-aix-configure.patch +0 -10
- data/spec/data/complicated/config/patches/ruby/ruby-openssl-1.0.1c.patch +0 -42
- data/spec/data/complicated/config/patches/ruby/ruby_aix_1_9_3_448_ssl_EAGAIN.patch +0 -57
- data/spec/data/complicated/config/patches/ruby/rvm-cflags.patch +0 -27
- data/spec/data/complicated/config/projects/angrychef.rb +0 -32
- data/spec/data/complicated/config/projects/chef-windows.rb +0 -32
- data/spec/data/complicated/config/projects/chef.rb +0 -32
- data/spec/data/complicated/config/projects/chefdk-windows.rb +0 -41
- data/spec/data/complicated/config/projects/chefdk.rb +0 -44
- data/spec/data/complicated/config/software/appbundler.rb +0 -25
- data/spec/data/complicated/config/software/autoconf.rb +0 -35
- data/spec/data/complicated/config/software/automake.rb +0 -39
- data/spec/data/complicated/config/software/berkshelf.rb +0 -44
- data/spec/data/complicated/config/software/bundler.rb +0 -25
- data/spec/data/complicated/config/software/bzip2.rb +0 -46
- data/spec/data/complicated/config/software/cacerts.rb +0 -44
- data/spec/data/complicated/config/software/chef-client-msi.rb +0 -87
- data/spec/data/complicated/config/software/chef-gem.rb +0 -26
- data/spec/data/complicated/config/software/chef-vault.rb +0 -43
- data/spec/data/complicated/config/software/chef-windows.rb +0 -158
- data/spec/data/complicated/config/software/chef.rb +0 -170
- data/spec/data/complicated/config/software/chefdk.rb +0 -103
- data/spec/data/complicated/config/software/couchdb.rb +0 -53
- data/spec/data/complicated/config/software/curl.rb +0 -48
- data/spec/data/complicated/config/software/erlang.rb +0 -65
- data/spec/data/complicated/config/software/expat.rb +0 -21
- data/spec/data/complicated/config/software/fcgi.rb +0 -56
- data/spec/data/complicated/config/software/fcgiwrap.rb +0 -41
- data/spec/data/complicated/config/software/gd.rb +0 -56
- data/spec/data/complicated/config/software/gdbm.rb +0 -40
- data/spec/data/complicated/config/software/gecode.rb +0 -48
- data/spec/data/complicated/config/software/git.rb +0 -40
- data/spec/data/complicated/config/software/help2man.rb +0 -30
- data/spec/data/complicated/config/software/icu.rb +0 -40
- data/spec/data/complicated/config/software/jre.rb +0 -48
- data/spec/data/complicated/config/software/keepalived.rb +0 -43
- data/spec/data/complicated/config/software/libarchive.rb +0 -50
- data/spec/data/complicated/config/software/libedit.rb +0 -69
- data/spec/data/complicated/config/software/libffi.rb +0 -71
- data/spec/data/complicated/config/software/libgcc.rb +0 -39
- data/spec/data/complicated/config/software/libiconv.rb +0 -55
- data/spec/data/complicated/config/software/libjpeg.rb +0 -39
- data/spec/data/complicated/config/software/libpng.rb +0 -38
- data/spec/data/complicated/config/software/libtool.rb +0 -52
- data/spec/data/complicated/config/software/libwrap.rb +0 -50
- data/spec/data/complicated/config/software/libxml2.rb +0 -51
- data/spec/data/complicated/config/software/libxslt.rb +0 -52
- data/spec/data/complicated/config/software/libyaml-windows.rb +0 -43
- data/spec/data/complicated/config/software/libyaml.rb +0 -62
- data/spec/data/complicated/config/software/logrotate.rb +0 -41
- data/spec/data/complicated/config/software/makedepend.rb +0 -73
- data/spec/data/complicated/config/software/mysql2.rb +0 -42
- data/spec/data/complicated/config/software/nagios-plugins.rb +0 -53
- data/spec/data/complicated/config/software/nagios.rb +0 -66
- data/spec/data/complicated/config/software/ncurses.rb +0 -149
- data/spec/data/complicated/config/software/nginx.rb +0 -40
- data/spec/data/complicated/config/software/nodejs.rb +0 -44
- data/spec/data/complicated/config/software/nokogiri.rb +0 -55
- data/spec/data/complicated/config/software/nrpe.rb +0 -61
- data/spec/data/complicated/config/software/ohai.rb +0 -64
- data/spec/data/complicated/config/software/omnibus-ctl.rb +0 -34
- data/spec/data/complicated/config/software/openresty.rb +0 -67
- data/spec/data/complicated/config/software/openssl.rb +0 -158
- data/spec/data/complicated/config/software/pcre.rb +0 -42
- data/spec/data/complicated/config/software/perl-extutils-embed.rb +0 -15
- data/spec/data/complicated/config/software/perl-extutils-makemaker.rb +0 -15
- data/spec/data/complicated/config/software/perl.rb +0 -48
- data/spec/data/complicated/config/software/perl_pg_driver.rb +0 -12
- data/spec/data/complicated/config/software/php.rb +0 -41
- data/spec/data/complicated/config/software/pip.rb +0 -30
- data/spec/data/complicated/config/software/pkg-config.rb +0 -66
- data/spec/data/complicated/config/software/popt.rb +0 -47
- data/spec/data/complicated/config/software/postgresql.rb +0 -51
- data/spec/data/complicated/config/software/preparation.rb +0 -30
- data/spec/data/complicated/config/software/pygments.rb +0 -25
- data/spec/data/complicated/config/software/python.rb +0 -49
- data/spec/data/complicated/config/software/rabbitmq.rb +0 -36
- data/spec/data/complicated/config/software/rebar.rb +0 -36
- data/spec/data/complicated/config/software/redis.rb +0 -33
- data/spec/data/complicated/config/software/rsync.rb +0 -48
- data/spec/data/complicated/config/software/ruby-windows-devkit.rb +0 -30
- data/spec/data/complicated/config/software/ruby-windows.rb +0 -30
- data/spec/data/complicated/config/software/ruby.rb +0 -162
- data/spec/data/complicated/config/software/rubygems-customization.rb +0 -57
- data/spec/data/complicated/config/software/rubygems.rb +0 -37
- data/spec/data/complicated/config/software/runit.rb +0 -118
- data/spec/data/complicated/config/software/server-jre.rb +0 -46
- data/spec/data/complicated/config/software/setuptools.rb +0 -30
- data/spec/data/complicated/config/software/spawn-fcgi.rb +0 -40
- data/spec/data/complicated/config/software/sphinx.rb +0 -26
- data/spec/data/complicated/config/software/spidermonkey.rb +0 -60
- data/spec/data/complicated/config/software/sqitch.rb +0 -24
- data/spec/data/complicated/config/software/test-kitchen.rb +0 -39
- data/spec/data/complicated/config/software/unicorn.rb +0 -27
- data/spec/data/complicated/config/software/util-macros.rb +0 -46
- data/spec/data/complicated/config/software/xproto.rb +0 -46
- data/spec/data/complicated/config/software/yajl.rb +0 -30
- data/spec/data/complicated/config/software/zlib.rb +0 -67
- data/spec/data/overrides/bad_line.overrides +0 -3
- data/spec/data/overrides/good.overrides +0 -5
- data/spec/data/overrides/with_dupes.overrides +0 -4
- data/spec/data/projects/chefdk.rb +0 -41
- data/spec/data/projects/sample.rb +0 -13
- data/spec/data/software/erchef.rb +0 -42
- data/spec/data/software/zlib.rb +0 -67
- data/spec/fixtures/sample/files/mac_dmg/Resources/background.png +0 -0
- data/spec/fixtures/sample/files/mac_dmg/Resources/icon.png +0 -0
- data/spec/fixtures/sample/files/mac_pkg/Resources/background.png +0 -0
- data/spec/fixtures/sample/files/mac_pkg/Resources/license.html +0 -1
- data/spec/fixtures/sample/files/mac_pkg/Resources/welcome.html +0 -9
- data/spec/fixtures/sample/files/windows_msi/Resources/assets/LICENSE.rtf +0 -8
- data/spec/fixtures/sample/files/windows_msi/Resources/assets/banner_background.bmp +0 -0
- data/spec/fixtures/sample/files/windows_msi/Resources/assets/dialog_background.bmp +0 -0
- data/spec/fixtures/sample/files/windows_msi/Resources/assets/project.ico +0 -0
- data/spec/fixtures/sample/files/windows_msi/Resources/assets/project_16x16.ico +0 -0
- data/spec/fixtures/sample/files/windows_msi/Resources/assets/project_32x32.ico +0 -0
- data/spec/fixtures/sample/files/windows_msi/Resources/parameters.wxi.erb +0 -9
- data/spec/fixtures/sample/files/windows_msi/Resources/source.wxs +0 -74
- data/spec/integration/packagers/mac_spec.rb +0 -58
- data/spec/integration/packagers/windows_spec.rb +0 -70
- data/spec/unit/packagers/mac_pkg_spec.rb +0 -151
@@ -0,0 +1,114 @@
|
|
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
|
+
class Packager::Makeself < Packager::Base
|
19
|
+
id :makeself
|
20
|
+
|
21
|
+
setup do
|
22
|
+
# Copy the full-stack installer into our scratch directory, accounting for
|
23
|
+
# any excluded files.
|
24
|
+
#
|
25
|
+
# /opt/hamlet => /tmp/daj29013
|
26
|
+
FileSyncer.sync(project.install_dir, staging_dir, exclude: exclusions)
|
27
|
+
end
|
28
|
+
|
29
|
+
build do
|
30
|
+
# Render the post_extract file
|
31
|
+
write_post_extract_file
|
32
|
+
|
33
|
+
# Create the makeself archive
|
34
|
+
create_makeself_package
|
35
|
+
end
|
36
|
+
|
37
|
+
# @see Base#package_name
|
38
|
+
def package_name
|
39
|
+
"#{project.name}-#{project.build_version}_#{project.build_iteration}.#{safe_architecture}.run"
|
40
|
+
end
|
41
|
+
|
42
|
+
#
|
43
|
+
# The path to the makeself script - the default should almost always be
|
44
|
+
# fine!
|
45
|
+
#
|
46
|
+
# @return [String]
|
47
|
+
#
|
48
|
+
def makeself
|
49
|
+
resource_path('makeself.sh')
|
50
|
+
end
|
51
|
+
|
52
|
+
#
|
53
|
+
# The path to the makeself-header script - the default should almost always
|
54
|
+
# be fine!
|
55
|
+
#
|
56
|
+
# @return [String]
|
57
|
+
#
|
58
|
+
def makeself_header
|
59
|
+
resource_path('makeself-header.sh')
|
60
|
+
end
|
61
|
+
|
62
|
+
#
|
63
|
+
# Write the post-extraction file that will be executed upon extraction of
|
64
|
+
# the makeself file.
|
65
|
+
#
|
66
|
+
# @return [void]
|
67
|
+
#
|
68
|
+
def write_post_extract_file
|
69
|
+
render_template(resource_path('post_extract.sh.erb'),
|
70
|
+
destination: File.join(staging_dir, 'post_extract.sh'),
|
71
|
+
mode: 0755,
|
72
|
+
variables: {
|
73
|
+
name: project.name,
|
74
|
+
friendly_name: project.friendly_name,
|
75
|
+
install_dir: project.install_dir,
|
76
|
+
}
|
77
|
+
)
|
78
|
+
end
|
79
|
+
|
80
|
+
#
|
81
|
+
# Run the actual makeself command, publishing the generated package.
|
82
|
+
#
|
83
|
+
# @return [void]
|
84
|
+
#
|
85
|
+
def create_makeself_package
|
86
|
+
log.info(log_key) { "Creating makeself package" }
|
87
|
+
|
88
|
+
Dir.chdir(staging_dir) do
|
89
|
+
shellout! <<-EOH.gsub(/^ {10}/, '')
|
90
|
+
#{makeself} \\
|
91
|
+
--header "#{makeself_header}" \\
|
92
|
+
--gzip \\
|
93
|
+
"#{staging_dir}" \\
|
94
|
+
"#{package_name}" \\
|
95
|
+
"#{project.description}" \\
|
96
|
+
"./post_extract.sh"
|
97
|
+
EOH
|
98
|
+
end
|
99
|
+
|
100
|
+
FileSyncer.glob("#{staging_dir}/*.run").each do |makeself|
|
101
|
+
copy_file(makeself, Config.package_dir)
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
#
|
106
|
+
# The architecture for this makeself package.
|
107
|
+
#
|
108
|
+
# @return [String]
|
109
|
+
#
|
110
|
+
def safe_architecture
|
111
|
+
Ohai['kernel']['machine']
|
112
|
+
end
|
113
|
+
end
|
114
|
+
end
|
@@ -0,0 +1,346 @@
|
|
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
|
+
class Packager::MSI < Packager::Base
|
19
|
+
id :msi
|
20
|
+
|
21
|
+
setup do
|
22
|
+
# Render the localization
|
23
|
+
write_localization_file
|
24
|
+
|
25
|
+
# Render the msi parameters
|
26
|
+
write_parameters_file
|
27
|
+
|
28
|
+
# Render the source file
|
29
|
+
write_source_file
|
30
|
+
|
31
|
+
# Copy all the staging assets from vendored Omnibus into the resources
|
32
|
+
# directory.
|
33
|
+
create_directory("#{resources_dir}/assets")
|
34
|
+
FileSyncer.glob("#{Omnibus.source_root}/resources/#{id}/assets/*").each do |file|
|
35
|
+
copy_file(file, "#{resources_dir}/assets/#{File.basename(file)}")
|
36
|
+
end
|
37
|
+
|
38
|
+
# Copy all assets in the user's project directory - this may overwrite
|
39
|
+
# files copied in the previous step, but that's okay :)
|
40
|
+
FileSyncer.glob("#{resources_path}/assets/*").each do |file|
|
41
|
+
copy_file(file, "#{resources_dir}/assets/#{File.basename(file)}")
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
build do
|
46
|
+
# Harvest the files with heat.exe, recursively generate fragment for
|
47
|
+
# project directory
|
48
|
+
Dir.chdir(staging_dir) do
|
49
|
+
shellout! <<-EOH.split.join(' ').squeeze(' ').strip
|
50
|
+
heat.exe dir "#{windows_safe_path(project.install_dir)}"
|
51
|
+
-nologo -srd -gg -cg ProjectDir
|
52
|
+
-dr PROJECTLOCATION
|
53
|
+
-var "var.ProjectSourceDir"
|
54
|
+
-out "project-files.wxs"
|
55
|
+
EOH
|
56
|
+
|
57
|
+
# Compile with candle.exe
|
58
|
+
shellout! <<-EOH.split.join(' ').squeeze(' ').strip
|
59
|
+
candle.exe
|
60
|
+
-nologo
|
61
|
+
#{wix_extension_switches(wix_candle_extensions)}
|
62
|
+
-dProjectSourceDir="#{windows_safe_path(project.install_dir)}" "project-files.wxs"
|
63
|
+
"#{windows_safe_path(staging_dir, 'source.wxs')}"
|
64
|
+
EOH
|
65
|
+
|
66
|
+
# Create the msi, ignoring the 204 return code from light.exe since it is
|
67
|
+
# about some expected warnings
|
68
|
+
shellout! <<-EOH.split.join(' ').squeeze(' ').strip
|
69
|
+
light.exe
|
70
|
+
-nologo
|
71
|
+
-ext WixUIExtension
|
72
|
+
#{wix_extension_switches(wix_light_extensions)}
|
73
|
+
-cultures:en-us
|
74
|
+
-loc "#{windows_safe_path(staging_dir, 'localization-en-us.wxl')}"
|
75
|
+
project-files.wixobj source.wixobj
|
76
|
+
-out "#{windows_safe_path(Config.package_dir, package_name)}"
|
77
|
+
EOH
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
#
|
82
|
+
# @!group DSL methods
|
83
|
+
# --------------------------------------------------
|
84
|
+
|
85
|
+
#
|
86
|
+
# Set or retrieve the upgrade code.
|
87
|
+
#
|
88
|
+
# @example
|
89
|
+
# upgrade_code 'ABCD-1234'
|
90
|
+
#
|
91
|
+
# @param [Hash] val
|
92
|
+
# the UpgradeCode to set
|
93
|
+
#
|
94
|
+
# @return [Hash]
|
95
|
+
# the set UpgradeCode
|
96
|
+
#
|
97
|
+
def upgrade_code(val = NULL)
|
98
|
+
if null?(val)
|
99
|
+
@upgrade_code || raise(MissingRequiredAttribute.new(self, :upgrade_code, '2CD7259C-776D-4DDB-A4C8-6E544E580AA1'))
|
100
|
+
else
|
101
|
+
unless val.is_a?(String)
|
102
|
+
raise InvalidValue.new(:parameters, 'be a String')
|
103
|
+
end
|
104
|
+
|
105
|
+
@upgrade_code = val
|
106
|
+
end
|
107
|
+
end
|
108
|
+
expose :upgrade_code
|
109
|
+
|
110
|
+
#
|
111
|
+
# Set or retrieve the custom msi building parameters.
|
112
|
+
#
|
113
|
+
# @example
|
114
|
+
# parameters {
|
115
|
+
# 'MagicParam' => 'ABCD-1234'
|
116
|
+
# }
|
117
|
+
#
|
118
|
+
# @param [Hash] val
|
119
|
+
# the parameters to set
|
120
|
+
#
|
121
|
+
# @return [Hash]
|
122
|
+
# the set parameters
|
123
|
+
#
|
124
|
+
def parameters(val = NULL)
|
125
|
+
if null?(val)
|
126
|
+
@parameters || {}
|
127
|
+
else
|
128
|
+
unless val.is_a?(Hash)
|
129
|
+
raise InvalidValue.new(:parameters, 'be a Hash')
|
130
|
+
end
|
131
|
+
|
132
|
+
@parameters = val
|
133
|
+
end
|
134
|
+
end
|
135
|
+
expose :parameters
|
136
|
+
|
137
|
+
#
|
138
|
+
# Set the wix light extensions to load
|
139
|
+
#
|
140
|
+
# @example
|
141
|
+
# wix_light_extension 'WixUtilExtension'
|
142
|
+
#
|
143
|
+
# @param [String] extension
|
144
|
+
# A list of extensions to load
|
145
|
+
#
|
146
|
+
# @return [Array]
|
147
|
+
# The list of extensions that will be loaded
|
148
|
+
#
|
149
|
+
def wix_light_extension(extension)
|
150
|
+
unless extension.is_a?(String)
|
151
|
+
raise InvalidValue.new(:wix_light_extension, 'be an String')
|
152
|
+
end
|
153
|
+
|
154
|
+
wix_light_extensions << extension
|
155
|
+
end
|
156
|
+
expose :wix_light_extension
|
157
|
+
|
158
|
+
#
|
159
|
+
# Set the wix candle extensions to load
|
160
|
+
#
|
161
|
+
# @example
|
162
|
+
# wix_candle_extension 'WixUtilExtension'
|
163
|
+
#
|
164
|
+
# @param [String] extension
|
165
|
+
# A list of extensions to load
|
166
|
+
#
|
167
|
+
# @return [Array]
|
168
|
+
# The list of extensions that will be loaded
|
169
|
+
#
|
170
|
+
def wix_candle_extension(extension)
|
171
|
+
unless extension.is_a?(String)
|
172
|
+
raise InvalidValue.new(:wix_candle_extension, 'be an String')
|
173
|
+
end
|
174
|
+
|
175
|
+
wix_candle_extensions << extension
|
176
|
+
end
|
177
|
+
expose :wix_candle_extension
|
178
|
+
|
179
|
+
#
|
180
|
+
# @!endgroup
|
181
|
+
# --------------------------------------------------
|
182
|
+
|
183
|
+
# @see Base#package_name
|
184
|
+
def package_name
|
185
|
+
"#{project.name}-#{project.build_version}-#{project.build_iteration}.msi"
|
186
|
+
end
|
187
|
+
|
188
|
+
#
|
189
|
+
# The path where the MSI resources will live.
|
190
|
+
#
|
191
|
+
# @return [String]
|
192
|
+
#
|
193
|
+
def resources_dir
|
194
|
+
File.expand_path("#{staging_dir}/Resources")
|
195
|
+
end
|
196
|
+
|
197
|
+
#
|
198
|
+
# Write the localization file into the staging directory.
|
199
|
+
#
|
200
|
+
# @return [void]
|
201
|
+
#
|
202
|
+
def write_localization_file
|
203
|
+
render_template(resource_path('localization-en-us.wxl.erb'),
|
204
|
+
destination: "#{staging_dir}/localization-en-us.wxl",
|
205
|
+
variables: {
|
206
|
+
name: project.name,
|
207
|
+
friendly_name: project.friendly_name,
|
208
|
+
maintainer: project.maintainer,
|
209
|
+
}
|
210
|
+
)
|
211
|
+
end
|
212
|
+
|
213
|
+
#
|
214
|
+
# Write the parameters file into the staging directory.
|
215
|
+
#
|
216
|
+
# @return [void]
|
217
|
+
#
|
218
|
+
def write_parameters_file
|
219
|
+
render_template(resource_path('parameters.wxi.erb'),
|
220
|
+
destination: "#{staging_dir}/parameters.wxi",
|
221
|
+
variables: {
|
222
|
+
name: project.name,
|
223
|
+
friendly_name: project.friendly_name,
|
224
|
+
maintainer: project.maintainer,
|
225
|
+
upgrade_code: upgrade_code,
|
226
|
+
parameters: parameters,
|
227
|
+
version: msi_version,
|
228
|
+
display_version: msi_display_version,
|
229
|
+
}
|
230
|
+
)
|
231
|
+
end
|
232
|
+
|
233
|
+
#
|
234
|
+
# Write the source file into the staging directory.
|
235
|
+
#
|
236
|
+
# @return [void]
|
237
|
+
#
|
238
|
+
def write_source_file
|
239
|
+
paths = []
|
240
|
+
|
241
|
+
# Remove C:/
|
242
|
+
install_dir = project.install_dir.split('/')[1..-1].join('/')
|
243
|
+
|
244
|
+
# Grab all parent paths
|
245
|
+
Pathname.new(install_dir).ascend do |path|
|
246
|
+
paths << path.to_s
|
247
|
+
end
|
248
|
+
|
249
|
+
# Create the hierarchy
|
250
|
+
hierarchy = paths.reverse.inject({}) do |hash, path|
|
251
|
+
hash[File.basename(path)] = path.gsub(/[^[:alnum:]]/, '').upcase + 'LOCATION'
|
252
|
+
hash
|
253
|
+
end
|
254
|
+
|
255
|
+
# The last item in the path MUST be named PROJECTLOCATION or else space
|
256
|
+
# robots will cause permanent damage to you and your family.
|
257
|
+
hierarchy[hierarchy.keys.last] = 'PROJECTLOCATION'
|
258
|
+
|
259
|
+
# If the path hierarchy is > 1, the customizable installation directory
|
260
|
+
# should default to the second-to-last item in the hierarchy. If the
|
261
|
+
# hierarchy is smaller than that, then just use the system drive.
|
262
|
+
wix_install_dir = if hierarchy.size > 1
|
263
|
+
hierarchy.to_a[-2][1]
|
264
|
+
else
|
265
|
+
'WINDOWSVOLUME'
|
266
|
+
end
|
267
|
+
|
268
|
+
render_template(resource_path('source.wxs.erb'),
|
269
|
+
destination: "#{staging_dir}/source.wxs",
|
270
|
+
variables: {
|
271
|
+
name: project.name,
|
272
|
+
friendly_name: project.friendly_name,
|
273
|
+
maintainer: project.maintainer,
|
274
|
+
hierarchy: hierarchy,
|
275
|
+
|
276
|
+
wix_install_dir: wix_install_dir,
|
277
|
+
}
|
278
|
+
)
|
279
|
+
end
|
280
|
+
|
281
|
+
#
|
282
|
+
# Parse and return the MSI version from the {Project#build_version}.
|
283
|
+
#
|
284
|
+
# A project's +build_version+ looks something like:
|
285
|
+
#
|
286
|
+
# dev builds => 11.14.0-alpha.1+20140501194641.git.94.561b564
|
287
|
+
# => 0.0.0+20140506165802.1
|
288
|
+
#
|
289
|
+
# rel builds => 11.14.0.alpha.1 || 11.14.0
|
290
|
+
#
|
291
|
+
# The MSI version spec expects a version that looks like X.Y.Z.W where
|
292
|
+
# X, Y, Z & W are all 32 bit integers.
|
293
|
+
#
|
294
|
+
# @return [String]
|
295
|
+
#
|
296
|
+
def msi_version
|
297
|
+
versions = project.build_version.split(/[.+-]/)
|
298
|
+
"#{versions[0]}.#{versions[1]}.#{versions[2]}.#{project.build_iteration}"
|
299
|
+
end
|
300
|
+
|
301
|
+
#
|
302
|
+
# The display version calculated from the {Project#build_version}.
|
303
|
+
#
|
304
|
+
# @see #msi_version an explanation of the breakdown
|
305
|
+
#
|
306
|
+
# @return [String]
|
307
|
+
#
|
308
|
+
def msi_display_version
|
309
|
+
versions = project.build_version.split(/[.+-]/)
|
310
|
+
"#{versions[0]}.#{versions[1]}.#{versions[2]}"
|
311
|
+
end
|
312
|
+
|
313
|
+
#
|
314
|
+
# Returns the extensions to use for light
|
315
|
+
#
|
316
|
+
# @return [Array]
|
317
|
+
# the extensions that will be loaded for light
|
318
|
+
#
|
319
|
+
def wix_light_extensions
|
320
|
+
@wix_light_extensions ||= []
|
321
|
+
end
|
322
|
+
|
323
|
+
#
|
324
|
+
# Returns the extensions to use for candle
|
325
|
+
#
|
326
|
+
# @return [Array]
|
327
|
+
# the extensions that will be loaded for candle
|
328
|
+
#
|
329
|
+
def wix_candle_extensions
|
330
|
+
@wix_candle_extensions ||= []
|
331
|
+
end
|
332
|
+
|
333
|
+
#
|
334
|
+
# Takes an array of wix extension names and creates a string
|
335
|
+
# that can be passed to wix to load those.
|
336
|
+
#
|
337
|
+
# for example,
|
338
|
+
# ['a', 'b'] => "-ext 'a' -ext 'b'"
|
339
|
+
#
|
340
|
+
# @return [String]
|
341
|
+
#
|
342
|
+
def wix_extension_switches(arr)
|
343
|
+
"#{arr.map {|e| "-ext '#{e}'"}.join(' ')}"
|
344
|
+
end
|
345
|
+
end
|
346
|
+
end
|