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,136 @@
|
|
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::BFF < Packager::Base
|
19
|
+
id :bff
|
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/opt/hamlet
|
26
|
+
destination = File.join(staging_dir, project.install_dir)
|
27
|
+
FileSyncer.sync(project.install_dir, destination, exclude: exclusions)
|
28
|
+
end
|
29
|
+
|
30
|
+
build do
|
31
|
+
# Render the gen template
|
32
|
+
write_gen_template
|
33
|
+
|
34
|
+
# Create the package
|
35
|
+
create_bff_file
|
36
|
+
end
|
37
|
+
|
38
|
+
# @see Base#package_name
|
39
|
+
def package_name
|
40
|
+
"#{project.name}.#{bff_version}.#{safe_architecture}.bff"
|
41
|
+
end
|
42
|
+
|
43
|
+
#
|
44
|
+
# Create the gen template for +mkinstallp+.
|
45
|
+
#
|
46
|
+
# @return [void]
|
47
|
+
#
|
48
|
+
def write_gen_template
|
49
|
+
# Get a list of all files
|
50
|
+
files = FileSyncer.glob("#{staging_dir}/**/*")
|
51
|
+
.map { |path| path.gsub(/^#{staging_dir}/, '') }
|
52
|
+
|
53
|
+
render_template(resource_path('gen.template.erb'),
|
54
|
+
destination: File.join(staging_dir, 'gen.template'),
|
55
|
+
variables: {
|
56
|
+
name: safe_project_name,
|
57
|
+
install_dir: project.install_dir,
|
58
|
+
friendly_name: project.friendly_name,
|
59
|
+
version: bff_version,
|
60
|
+
description: project.description,
|
61
|
+
files: files,
|
62
|
+
|
63
|
+
# Add configuration files
|
64
|
+
configuration_script: resource_path('postinstall.sh'),
|
65
|
+
unconfiguration_script: resource_path('unpostinstall.sh'),
|
66
|
+
}
|
67
|
+
)
|
68
|
+
end
|
69
|
+
|
70
|
+
#
|
71
|
+
# Create the bff file using +mkinstallp+.
|
72
|
+
#
|
73
|
+
# Warning: This command runs as sudo! AIX requires the use of sudo to run
|
74
|
+
# the +mkinstallp+ command.
|
75
|
+
#
|
76
|
+
# @return [void]
|
77
|
+
#
|
78
|
+
def create_bff_file
|
79
|
+
log.info(log_key) { "Creating .bff file" }
|
80
|
+
|
81
|
+
shellout!("/usr/sbin/mkinstallp -d #{staging_dir} -T #{staging_dir}/gen.template")
|
82
|
+
|
83
|
+
# Copy the resulting package up to the package_dir
|
84
|
+
FileSyncer.glob("#{staging_dir}/tmp/*.bff").each do |bff|
|
85
|
+
copy_file(bff, Config.package_dir)
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
#
|
90
|
+
# Return the BFF-ready project name, converting any invalid characters to
|
91
|
+
# dashes (+-+).
|
92
|
+
#
|
93
|
+
# @return [String]
|
94
|
+
#
|
95
|
+
def safe_project_name
|
96
|
+
if project.name =~ /\A[a-z0-9\.\+\-]+\z/
|
97
|
+
project.name.dup
|
98
|
+
else
|
99
|
+
converted = project.name.downcase.gsub(/[^a-z0-9\.\+\-]+/, '-')
|
100
|
+
|
101
|
+
log.warn(log_key) do
|
102
|
+
"The `name' compontent of BFF package names can only include " \
|
103
|
+
"lowercase alphabetical characters (a-z), numbers (0-9), dots (.), " \
|
104
|
+
"plus signs (+), and dashes (-). Converting `#{project.name}' to " \
|
105
|
+
"`#{converted}'."
|
106
|
+
end
|
107
|
+
|
108
|
+
converted
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
112
|
+
#
|
113
|
+
# Return the BFF-specific version for this package. This is calculated
|
114
|
+
# using the first three digits of the version, concatenated by a dot, then
|
115
|
+
# suffixed with the build_iteration.
|
116
|
+
#
|
117
|
+
# @todo This is probably not the best way to extract the version and
|
118
|
+
# probably misses edge cases like when using git describe!
|
119
|
+
#
|
120
|
+
# @return [String]
|
121
|
+
#
|
122
|
+
def bff_version
|
123
|
+
version = project.build_version.split(/[^\d]/)[0..2].join('.')
|
124
|
+
"#{version}.#{project.build_iteration}"
|
125
|
+
end
|
126
|
+
|
127
|
+
#
|
128
|
+
# The architecture for this RPM package.
|
129
|
+
#
|
130
|
+
# @return [String]
|
131
|
+
#
|
132
|
+
def safe_architecture
|
133
|
+
Ohai['kernel']['machine']
|
134
|
+
end
|
135
|
+
end
|
136
|
+
end
|
@@ -0,0 +1,389 @@
|
|
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::DEB < Packager::Base
|
19
|
+
id :deb
|
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/opt/hamlet
|
26
|
+
destination = File.join(staging_dir, project.install_dir)
|
27
|
+
FileSyncer.sync(project.install_dir, destination, exclude: exclusions)
|
28
|
+
|
29
|
+
# Copy over any user-specified extra package files.
|
30
|
+
#
|
31
|
+
# Files retain their relative paths inside the scratch directory, so
|
32
|
+
# we need to grab the dirname of the file, create that directory, and
|
33
|
+
# then copy the file into that directory.
|
34
|
+
#
|
35
|
+
# extra_package_file '/path/to/foo.txt' #=> /tmp/scratch/path/to/foo.txt
|
36
|
+
project.extra_package_files.each do |file|
|
37
|
+
parent = File.dirname(file)
|
38
|
+
destination = File.join(staging_dir, parent)
|
39
|
+
|
40
|
+
create_directory(destination)
|
41
|
+
copy_file(file, destination)
|
42
|
+
end
|
43
|
+
|
44
|
+
# Create the Debain file directory
|
45
|
+
create_directory(debian_dir)
|
46
|
+
end
|
47
|
+
|
48
|
+
build do
|
49
|
+
# Render the Debian +control+ file
|
50
|
+
write_control_file
|
51
|
+
|
52
|
+
# Write the conffiles
|
53
|
+
write_conffiles_file
|
54
|
+
|
55
|
+
# Write the scripts
|
56
|
+
write_scripts
|
57
|
+
|
58
|
+
# Render the md5 sums
|
59
|
+
write_md5_sums
|
60
|
+
|
61
|
+
# Create the deb
|
62
|
+
create_deb_file
|
63
|
+
end
|
64
|
+
|
65
|
+
#
|
66
|
+
# @!group DSL methods
|
67
|
+
# --------------------------------------------------
|
68
|
+
|
69
|
+
#
|
70
|
+
# Set or return the vendor who made this package.
|
71
|
+
#
|
72
|
+
# @example
|
73
|
+
# vendor "Seth Vargo <sethvargo@gmail.com>"
|
74
|
+
#
|
75
|
+
# @param [String] val
|
76
|
+
# the vendor who make this package
|
77
|
+
#
|
78
|
+
# @return [String]
|
79
|
+
# the vendor who make this package
|
80
|
+
#
|
81
|
+
def vendor(val = NULL)
|
82
|
+
if null?(val)
|
83
|
+
@vendor || 'Omnibus <omnibus@getchef.com>'
|
84
|
+
else
|
85
|
+
unless val.is_a?(String)
|
86
|
+
raise InvalidValue.new(:vendor, 'be a String')
|
87
|
+
end
|
88
|
+
|
89
|
+
@vendor = val
|
90
|
+
end
|
91
|
+
end
|
92
|
+
expose :vendor
|
93
|
+
|
94
|
+
#
|
95
|
+
# Set or return the license for this package.
|
96
|
+
#
|
97
|
+
# @example
|
98
|
+
# license "Apache 2.0"
|
99
|
+
#
|
100
|
+
# @param [String] val
|
101
|
+
# the license for this package
|
102
|
+
#
|
103
|
+
# @return [String]
|
104
|
+
# the license for this package
|
105
|
+
#
|
106
|
+
def license(val = NULL)
|
107
|
+
if null?(val)
|
108
|
+
@license || 'unknown'
|
109
|
+
else
|
110
|
+
unless val.is_a?(String)
|
111
|
+
raise InvalidValue.new(:license, 'be a String')
|
112
|
+
end
|
113
|
+
|
114
|
+
@license = val
|
115
|
+
end
|
116
|
+
end
|
117
|
+
expose :license
|
118
|
+
|
119
|
+
#
|
120
|
+
# Set or return the priority for this package.
|
121
|
+
#
|
122
|
+
# @example
|
123
|
+
# priority "extra"
|
124
|
+
#
|
125
|
+
# @param [String] val
|
126
|
+
# the priority for this package
|
127
|
+
#
|
128
|
+
# @return [String]
|
129
|
+
# the priority for this package
|
130
|
+
#
|
131
|
+
def priority(val = NULL)
|
132
|
+
if null?(val)
|
133
|
+
@priority || 'extra'
|
134
|
+
else
|
135
|
+
unless val.is_a?(String)
|
136
|
+
raise InvalidValue.new(:priority, 'be a String')
|
137
|
+
end
|
138
|
+
|
139
|
+
@priority = val
|
140
|
+
end
|
141
|
+
end
|
142
|
+
expose :priority
|
143
|
+
|
144
|
+
#
|
145
|
+
# Set or return the section for this package.
|
146
|
+
#
|
147
|
+
# @example
|
148
|
+
# section "databases"
|
149
|
+
#
|
150
|
+
# @param [String] val
|
151
|
+
# the section for this package
|
152
|
+
#
|
153
|
+
# @return [String]
|
154
|
+
# the section for this package
|
155
|
+
#
|
156
|
+
def section(val = NULL)
|
157
|
+
if null?(val)
|
158
|
+
@section || 'misc'
|
159
|
+
else
|
160
|
+
unless val.is_a?(String)
|
161
|
+
raise InvalidValue.new(:section, 'be a String')
|
162
|
+
end
|
163
|
+
|
164
|
+
@section = val
|
165
|
+
end
|
166
|
+
end
|
167
|
+
expose :section
|
168
|
+
|
169
|
+
#
|
170
|
+
# @!endgroup
|
171
|
+
# --------------------------------------------------
|
172
|
+
|
173
|
+
#
|
174
|
+
# The name of the package to create. Note, this does **not** include the
|
175
|
+
# extension.
|
176
|
+
#
|
177
|
+
def package_name
|
178
|
+
"#{safe_project_name}_#{safe_version}-#{safe_build_iteration}_#{safe_architecture}.deb"
|
179
|
+
end
|
180
|
+
|
181
|
+
#
|
182
|
+
# The path where Debian-specific files will live.
|
183
|
+
#
|
184
|
+
# @example
|
185
|
+
# /var/.../chef-server_11.12.4/DEBIAN
|
186
|
+
#
|
187
|
+
# @return [String]
|
188
|
+
#
|
189
|
+
def debian_dir
|
190
|
+
@debian_dir ||= File.join(staging_dir, 'DEBIAN')
|
191
|
+
end
|
192
|
+
|
193
|
+
#
|
194
|
+
# Render a control file in +#{debian_dir}/control+ using the supplied ERB
|
195
|
+
# template.
|
196
|
+
#
|
197
|
+
# @return [void]
|
198
|
+
#
|
199
|
+
def write_control_file
|
200
|
+
render_template(resource_path('control.erb'),
|
201
|
+
destination: File.join(debian_dir, 'control'),
|
202
|
+
variables: {
|
203
|
+
name: safe_project_name,
|
204
|
+
version: safe_version,
|
205
|
+
iteration: safe_build_iteration,
|
206
|
+
vendor: vendor,
|
207
|
+
license: license,
|
208
|
+
architecture: safe_architecture,
|
209
|
+
maintainer: project.maintainer,
|
210
|
+
installed_size: package_size,
|
211
|
+
homepage: project.homepage,
|
212
|
+
description: project.description,
|
213
|
+
priority: priority,
|
214
|
+
section: section,
|
215
|
+
conflicts: project.conflicts,
|
216
|
+
replaces: project.replaces,
|
217
|
+
dependencies: project.runtime_dependencies,
|
218
|
+
}
|
219
|
+
)
|
220
|
+
end
|
221
|
+
|
222
|
+
#
|
223
|
+
# Render the list of config files into the conffile.
|
224
|
+
#
|
225
|
+
# @return [void]
|
226
|
+
#
|
227
|
+
def write_conffiles_file
|
228
|
+
return if project.config_files.empty?
|
229
|
+
|
230
|
+
render_template(resource_path('conffiles.erb'),
|
231
|
+
destination: File.join(debian_dir, 'conffiles'),
|
232
|
+
variables: {
|
233
|
+
config_files: project.config_files,
|
234
|
+
}
|
235
|
+
)
|
236
|
+
end
|
237
|
+
|
238
|
+
#
|
239
|
+
# Copy all scripts in {Project#package_scripts_path} to the control
|
240
|
+
# directory of this repo.
|
241
|
+
#
|
242
|
+
# @return [void]
|
243
|
+
#
|
244
|
+
def write_scripts
|
245
|
+
%w(preinst postinst prerm postrm).each do |script|
|
246
|
+
path = File.join(project.package_scripts_path, script)
|
247
|
+
|
248
|
+
if File.file?(path)
|
249
|
+
log.debug(log_key) { "Adding script `#{script}' to `#{debian_dir}'" }
|
250
|
+
copy_file(path, debian_dir)
|
251
|
+
end
|
252
|
+
end
|
253
|
+
end
|
254
|
+
|
255
|
+
#
|
256
|
+
# Generate a list of the md5 sums of every file in the package and write it
|
257
|
+
# to +#{debian_dir}/control/md5sums+.
|
258
|
+
#
|
259
|
+
# @return [void]
|
260
|
+
#
|
261
|
+
def write_md5_sums
|
262
|
+
path = "#{staging_dir}/**/*"
|
263
|
+
hash = FileSyncer.glob(path).inject({}) do |hash, path|
|
264
|
+
if File.file?(path) && !File.symlink?(path)
|
265
|
+
relative_path = path.gsub("#{staging_dir}/", '')
|
266
|
+
hash[relative_path] = digest(path, :md5)
|
267
|
+
end
|
268
|
+
|
269
|
+
hash
|
270
|
+
end
|
271
|
+
|
272
|
+
render_template(resource_path('md5sums.erb'),
|
273
|
+
destination: File.join(debian_dir, 'md5sums'),
|
274
|
+
variables: {
|
275
|
+
md5sums: hash,
|
276
|
+
}
|
277
|
+
)
|
278
|
+
end
|
279
|
+
|
280
|
+
#
|
281
|
+
# Create the +.deb+ file, compressing at gzip level 9. The use of the
|
282
|
+
# +fakeroot+ command is required so that the package is owned by
|
283
|
+
# +root:root+, but the build user does not need to have sudo permissions.
|
284
|
+
#
|
285
|
+
# @return [void]
|
286
|
+
#
|
287
|
+
def create_deb_file
|
288
|
+
log.info(log_key) { "Creating .deb file" }
|
289
|
+
|
290
|
+
# Execute the build command
|
291
|
+
Dir.chdir(Config.package_dir) do
|
292
|
+
shellout!("fakeroot dpkg-deb -z9 -Zgzip -D --build #{staging_dir} #{package_name}")
|
293
|
+
end
|
294
|
+
end
|
295
|
+
|
296
|
+
#
|
297
|
+
# The size of this Debian package. This is dynamically calculated.
|
298
|
+
#
|
299
|
+
# @return [Fixnum]
|
300
|
+
#
|
301
|
+
def package_size
|
302
|
+
@package_size ||= begin
|
303
|
+
path = "#{project.install_dir}/**/*"
|
304
|
+
total = FileSyncer.glob(path).inject(0) do |size, path|
|
305
|
+
unless File.directory?(path) || File.symlink?(path)
|
306
|
+
size += File.size(path)
|
307
|
+
end
|
308
|
+
|
309
|
+
size
|
310
|
+
end
|
311
|
+
|
312
|
+
# Per http://www.debian.org/doc/debian-policy/ch-controlfields.html, the
|
313
|
+
# disk space is given as the integer value of the estimated installed
|
314
|
+
# size in bytes, divided by 1024 and rounded up.
|
315
|
+
total / 1024
|
316
|
+
end
|
317
|
+
end
|
318
|
+
|
319
|
+
#
|
320
|
+
# Return the Debian-ready project name, converting any invalid characters to
|
321
|
+
# dashes (+-+).
|
322
|
+
#
|
323
|
+
# @return [String]
|
324
|
+
#
|
325
|
+
def safe_project_name
|
326
|
+
if project.name =~ /\A[a-zA-Z0-9\.\+\-]+\z/
|
327
|
+
project.name.dup
|
328
|
+
else
|
329
|
+
converted = project.name.gsub(/[^a-zA-Z0-9\.\+\-]+/, '-')
|
330
|
+
|
331
|
+
log.warn(log_key) do
|
332
|
+
"The `name' compontent of Debian package names can only include " \
|
333
|
+
"alphabetical characters (a-z, A-Z), numbers (0-9), dots (.), " \
|
334
|
+
"plus signs (+), and dashes (-). Converting `#{project.name}' to " \
|
335
|
+
"`#{converted}'."
|
336
|
+
end
|
337
|
+
|
338
|
+
converted
|
339
|
+
end
|
340
|
+
end
|
341
|
+
|
342
|
+
#
|
343
|
+
# This is actually just the regular build_iternation, but it felt lonely
|
344
|
+
# among all the other +safe_*+ methods.
|
345
|
+
#
|
346
|
+
# @return [String]
|
347
|
+
#
|
348
|
+
def safe_build_iteration
|
349
|
+
project.build_iteration
|
350
|
+
end
|
351
|
+
|
352
|
+
#
|
353
|
+
# Return the Debian-ready version, converting any invalid characters to
|
354
|
+
# dashes (+-+).
|
355
|
+
#
|
356
|
+
# @return [String]
|
357
|
+
#
|
358
|
+
def safe_version
|
359
|
+
if project.build_version =~ /\A[a-zA-Z0-9\.\+\-\:]+\z/
|
360
|
+
project.build_version.dup
|
361
|
+
else
|
362
|
+
converted = project.build_version.gsub(/[^a-zA-Z0-9\.\+\-\:]+/, '-')
|
363
|
+
|
364
|
+
log.warn(log_key) do
|
365
|
+
"The `version' compontent of Debian package names can only include " \
|
366
|
+
"alphabetical characters (a-z, A-Z), numbers (0-9), dots (.), " \
|
367
|
+
"plus signs (+), dashes (-), and colons (:). Converting " \
|
368
|
+
"`#{project.build_version}' to `#{converted}'."
|
369
|
+
end
|
370
|
+
|
371
|
+
converted
|
372
|
+
end
|
373
|
+
end
|
374
|
+
|
375
|
+
#
|
376
|
+
# Debian does not follow the standards when naming 64-bit packages.
|
377
|
+
#
|
378
|
+
# @return [String]
|
379
|
+
#
|
380
|
+
def safe_architecture
|
381
|
+
case Ohai['kernel']['machine']
|
382
|
+
when 'x86_64'
|
383
|
+
'amd64'
|
384
|
+
else
|
385
|
+
Ohai['kernel']['machine']
|
386
|
+
end
|
387
|
+
end
|
388
|
+
end
|
389
|
+
end
|