omnibus 3.0.0 → 3.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +17 -1
- data/.travis.yml +11 -3
- data/CHANGELOG.md +39 -1
- data/Gemfile +0 -4
- data/README.md +10 -8
- data/Rakefile +18 -7
- data/bin/omnibus +3 -3
- data/docs/Building on Windows.md +98 -0
- data/features/commands/_deprecated.feature +46 -0
- data/features/commands/build.feature +9 -0
- data/features/commands/clean.feature +21 -0
- data/features/commands/list.feature +16 -0
- data/features/commands/new.feature +8 -0
- data/features/commands/version.feature +12 -0
- data/features/step_definitions/generator_steps.rb +28 -0
- data/features/support/env.rb +13 -0
- data/lib/omnibus.rb +319 -240
- data/lib/omnibus/artifact.rb +16 -0
- data/lib/omnibus/build_version.rb +39 -20
- data/lib/omnibus/build_version_dsl.rb +136 -0
- data/lib/omnibus/builder.rb +28 -23
- data/lib/omnibus/cleaner.rb +72 -0
- data/lib/omnibus/cli.rb +115 -11
- data/lib/omnibus/cli/base.rb +82 -81
- data/lib/omnibus/cli/cache.rb +80 -32
- data/lib/omnibus/cli/deprecated.rb +79 -0
- data/lib/omnibus/cli/release.rb +17 -21
- data/lib/omnibus/config.rb +38 -13
- data/lib/omnibus/exceptions.rb +70 -18
- data/lib/omnibus/fetcher.rb +18 -11
- data/lib/omnibus/fetchers/git_fetcher.rb +48 -53
- data/lib/omnibus/fetchers/net_fetcher.rb +29 -27
- data/lib/omnibus/fetchers/path_fetcher.rb +9 -12
- data/lib/omnibus/fetchers/s3_cache_fetcher.rb +5 -8
- data/lib/omnibus/generator.rb +131 -0
- data/lib/omnibus/{templates → generator_files}/.kitchen.local.yml.erb +0 -0
- data/lib/omnibus/{templates → generator_files}/.kitchen.yml.erb +0 -0
- data/lib/omnibus/{templates → generator_files}/Berksfile.erb +0 -0
- data/lib/omnibus/{templates → generator_files}/Gemfile.erb +2 -2
- data/lib/omnibus/{templates → generator_files}/README.md.erb +6 -7
- data/lib/omnibus/{templates → generator_files}/Vagrantfile.erb +0 -0
- data/lib/omnibus/{templates → generator_files}/gitignore.erb +0 -0
- data/lib/omnibus/{templates → generator_files}/mac_dmg/background.png +0 -0
- data/lib/omnibus/{templates → generator_files}/mac_dmg/icon.png +0 -0
- data/lib/omnibus/{templates → generator_files}/mac_pkg/background.png +0 -0
- data/lib/omnibus/{templates → generator_files}/mac_pkg/license.html.erb +0 -0
- data/lib/omnibus/{templates → generator_files}/mac_pkg/welcome.html.erb +0 -0
- data/lib/omnibus/{templates → generator_files}/omnibus.rb.example.erb +0 -0
- data/lib/omnibus/{templates → generator_files}/package_scripts/makeselfinst.erb +0 -0
- data/lib/omnibus/{templates → generator_files}/package_scripts/postinst.erb +0 -0
- data/lib/omnibus/{templates → generator_files}/package_scripts/postrm.erb +0 -0
- data/lib/omnibus/{templates → generator_files}/package_scripts/preinst.erb +0 -0
- data/lib/omnibus/{templates → generator_files}/package_scripts/prerm.erb +0 -0
- data/lib/omnibus/{templates → generator_files}/project.rb.erb +0 -1
- data/lib/omnibus/{templates → generator_files}/software/c-example.rb.erb +0 -0
- data/lib/omnibus/{templates → generator_files}/software/erlang-example.rb.erb +0 -0
- data/lib/omnibus/{templates → generator_files}/software/ruby-example.rb.erb +0 -0
- data/lib/omnibus/generator_files/windows_msi/assets/LICENSE.rtf +8 -0
- data/lib/omnibus/generator_files/windows_msi/assets/banner_background.bmp +0 -0
- data/lib/omnibus/generator_files/windows_msi/assets/dialog_background.bmp +0 -0
- data/lib/omnibus/generator_files/windows_msi/assets/project.ico +0 -0
- data/lib/omnibus/generator_files/windows_msi/assets/project_16x16.ico +0 -0
- data/lib/omnibus/generator_files/windows_msi/assets/project_32x32.ico +0 -0
- data/lib/omnibus/generator_files/windows_msi/localization-en-us.wxl.erb +20 -0
- data/lib/omnibus/generator_files/windows_msi/parameters.wxi.erb +9 -0
- data/lib/omnibus/generator_files/windows_msi/source.wxs.erb +74 -0
- data/lib/omnibus/health_check.rb +80 -40
- data/lib/omnibus/install_path_cache.rb +11 -12
- data/lib/omnibus/library.rb +30 -3
- data/lib/omnibus/logger.rb +47 -0
- data/lib/omnibus/logging.rb +60 -0
- data/lib/omnibus/null_builder.rb +23 -0
- data/lib/omnibus/ohai.rb +70 -0
- data/lib/omnibus/overrides.rb +69 -48
- data/lib/omnibus/package_release.rb +7 -14
- data/lib/omnibus/packagers/base.rb +66 -13
- data/lib/omnibus/packagers/mac_dmg.rb +23 -3
- data/lib/omnibus/packagers/mac_pkg.rb +20 -10
- data/lib/omnibus/packagers/windows_msi.rb +109 -0
- data/lib/omnibus/project.rb +136 -79
- data/lib/omnibus/reports.rb +1 -2
- data/lib/omnibus/{s3_cacher.rb → s3_cache.rb} +15 -37
- data/lib/omnibus/software.rb +77 -27
- data/lib/omnibus/software_s3_urls.rb +50 -0
- data/lib/omnibus/sugar.rb +1 -3
- data/lib/omnibus/util.rb +45 -18
- data/lib/omnibus/version.rb +2 -3
- data/omnibus.gemspec +5 -3
- data/spec/data/complicated/config/patches/bzip2/makefile_take_env_vars.patch +15 -0
- data/spec/data/complicated/config/patches/couchdb/patch_for_couchjs_stack.patch +19 -0
- data/spec/data/complicated/config/patches/gd/gd-2.0.33-configure-libpng.patch +100 -0
- data/spec/data/complicated/config/patches/keepalived/keepalived-1.2.9_opscode_centos_5.patch +15 -0
- data/spec/data/complicated/config/patches/libedit/freebsd-vi-fix.patch +24 -0
- data/spec/data/complicated/config/patches/libiconv/libiconv-1.14_srclib_stdio.in.h-remove-gets-declarations.patch +29 -0
- data/spec/data/complicated/config/patches/libwrap/tcp_wrappers-7.6-makefile-dest-fix.patch +35 -0
- data/spec/data/complicated/config/patches/libwrap/tcp_wrappers-7.6-malloc-fix.patch +13 -0
- data/spec/data/complicated/config/patches/libwrap/tcp_wrappers-7.6-shared_lib_plus_plus-1.patch +1035 -0
- data/spec/data/complicated/config/patches/logrotate/logrotate_basedir_override.patch +12 -0
- data/spec/data/complicated/config/patches/ncurses/ncurses-5.9-solaris-xopen_source_extended-detection.patch +11 -0
- data/spec/data/complicated/config/patches/ncurses/ncurses-clang.patch +42 -0
- data/spec/data/complicated/config/patches/ncurses/patch-aa +23 -0
- data/spec/data/complicated/config/patches/ncurses/patch-ab +44 -0
- data/spec/data/complicated/config/patches/ncurses/patch-ac +40 -0
- data/spec/data/complicated/config/patches/ncurses/patch-ad +12 -0
- data/spec/data/complicated/config/patches/ncurses/patch-aix-configure +23 -0
- data/spec/data/complicated/config/patches/ncurses/patch-cxx_cursesf.h +22 -0
- data/spec/data/complicated/config/patches/ncurses/patch-cxx_cursesm.h +22 -0
- data/spec/data/complicated/config/patches/nrpe/fix_for_runit.patch +64 -0
- data/spec/data/complicated/config/patches/openssl/openssl-1.0.1f-do-not-build-docs.patch +101 -0
- data/spec/data/complicated/config/patches/postgresql/postgresql-9.1.2-configure-ncurses-fix.patch +12 -0
- data/spec/data/complicated/config/patches/ruby/patch-configure +103 -0
- data/spec/data/complicated/config/patches/ruby/ruby-aix-configure.patch +10 -0
- data/spec/data/complicated/config/patches/ruby/ruby-openssl-1.0.1c.patch +42 -0
- data/spec/data/complicated/config/patches/ruby/ruby_aix_1_9_3_448_ssl_EAGAIN.patch +57 -0
- data/spec/data/complicated/config/patches/ruby/rvm-cflags.patch +27 -0
- data/spec/data/complicated/config/projects/angrychef.rb +32 -0
- data/spec/data/complicated/config/projects/chef-windows.rb +32 -0
- data/spec/data/complicated/config/projects/chef.rb +32 -0
- data/spec/data/complicated/config/projects/chefdk-windows.rb +41 -0
- data/spec/data/complicated/config/projects/chefdk.rb +44 -0
- data/spec/data/complicated/config/software/appbundler.rb +25 -0
- data/spec/data/complicated/config/software/autoconf.rb +35 -0
- data/spec/data/complicated/config/software/automake.rb +39 -0
- data/spec/data/complicated/config/software/berkshelf.rb +44 -0
- data/{lib/omnibus/fetchers.rb → spec/data/complicated/config/software/bundler.rb} +8 -5
- data/spec/data/complicated/config/software/bzip2.rb +46 -0
- data/spec/data/complicated/config/software/cacerts.rb +44 -0
- data/spec/data/complicated/config/software/chef-client-msi.rb +88 -0
- data/spec/data/complicated/config/software/chef-gem.rb +26 -0
- data/spec/data/complicated/config/software/chef-vault.rb +43 -0
- data/spec/data/complicated/config/software/chef-windows.rb +158 -0
- data/spec/data/complicated/config/software/chef.rb +170 -0
- data/spec/data/complicated/config/software/chefdk.rb +103 -0
- data/spec/data/complicated/config/software/couchdb.rb +53 -0
- data/spec/data/complicated/config/software/curl.rb +48 -0
- data/spec/data/complicated/config/software/erlang.rb +65 -0
- data/spec/data/complicated/config/software/expat.rb +21 -0
- data/spec/data/complicated/config/software/fcgi.rb +56 -0
- data/spec/data/complicated/config/software/fcgiwrap.rb +41 -0
- data/spec/data/complicated/config/software/gd.rb +56 -0
- data/spec/data/complicated/config/software/gdbm.rb +40 -0
- data/spec/data/complicated/config/software/gecode.rb +48 -0
- data/spec/data/complicated/config/software/git.rb +40 -0
- data/spec/data/complicated/config/software/help2man.rb +30 -0
- data/spec/data/complicated/config/software/icu.rb +40 -0
- data/spec/data/complicated/config/software/jre.rb +48 -0
- data/spec/data/complicated/config/software/keepalived.rb +43 -0
- data/spec/data/complicated/config/software/libarchive.rb +50 -0
- data/spec/data/complicated/config/software/libedit.rb +69 -0
- data/spec/data/complicated/config/software/libffi.rb +71 -0
- data/spec/data/complicated/config/software/libgcc.rb +39 -0
- data/spec/data/complicated/config/software/libiconv.rb +66 -0
- data/spec/data/complicated/config/software/libjpeg.rb +39 -0
- data/spec/data/complicated/config/software/libpng.rb +38 -0
- data/spec/data/complicated/config/software/libtool.rb +52 -0
- data/spec/data/complicated/config/software/libwrap.rb +50 -0
- data/spec/data/complicated/config/software/libxml2.rb +51 -0
- data/spec/data/complicated/config/software/libxslt.rb +52 -0
- data/spec/data/complicated/config/software/libyaml-windows.rb +43 -0
- data/spec/data/complicated/config/software/libyaml.rb +62 -0
- data/spec/data/complicated/config/software/logrotate.rb +41 -0
- data/spec/data/complicated/config/software/makedepend.rb +73 -0
- data/spec/data/complicated/config/software/mysql2.rb +42 -0
- data/spec/data/complicated/config/software/nagios-plugins.rb +53 -0
- data/spec/data/complicated/config/software/nagios.rb +66 -0
- data/spec/data/complicated/config/software/ncurses.rb +149 -0
- data/spec/data/complicated/config/software/nginx.rb +40 -0
- data/spec/data/complicated/config/software/nodejs.rb +44 -0
- data/spec/data/complicated/config/software/nokogiri.rb +55 -0
- data/spec/data/complicated/config/software/nrpe.rb +61 -0
- data/spec/data/complicated/config/software/ohai.rb +64 -0
- data/spec/data/complicated/config/software/omnibus-ctl.rb +34 -0
- data/spec/data/complicated/config/software/openresty.rb +67 -0
- data/spec/data/complicated/config/software/openssl.rb +158 -0
- data/spec/data/complicated/config/software/pcre.rb +42 -0
- data/spec/data/complicated/config/software/perl-extutils-embed.rb +15 -0
- data/spec/data/complicated/config/software/perl-extutils-makemaker.rb +15 -0
- data/spec/data/complicated/config/software/perl.rb +48 -0
- data/spec/data/complicated/config/software/perl_pg_driver.rb +12 -0
- data/spec/data/complicated/config/software/php.rb +41 -0
- data/spec/data/complicated/config/software/pip.rb +30 -0
- data/spec/data/complicated/config/software/pkg-config.rb +66 -0
- data/spec/data/complicated/config/software/popt.rb +47 -0
- data/spec/data/complicated/config/software/postgresql.rb +51 -0
- data/spec/data/complicated/config/software/preparation.rb +30 -0
- data/spec/data/complicated/config/software/pygments.rb +25 -0
- data/spec/data/complicated/config/software/python.rb +49 -0
- data/spec/data/complicated/config/software/rabbitmq.rb +36 -0
- data/spec/data/complicated/config/software/rebar.rb +36 -0
- data/spec/data/complicated/config/software/redis.rb +33 -0
- data/spec/data/complicated/config/software/rsync.rb +48 -0
- data/spec/data/complicated/config/software/ruby-windows-devkit.rb +30 -0
- data/spec/data/complicated/config/software/ruby-windows.rb +30 -0
- data/spec/data/complicated/config/software/ruby.rb +162 -0
- data/spec/data/complicated/config/software/rubygems-customization.rb +57 -0
- data/spec/data/complicated/config/software/rubygems.rb +37 -0
- data/spec/data/complicated/config/software/runit.rb +118 -0
- data/spec/data/complicated/config/software/server-jre.rb +46 -0
- data/spec/data/complicated/config/software/setuptools.rb +30 -0
- data/spec/data/complicated/config/software/spawn-fcgi.rb +40 -0
- data/spec/data/complicated/config/software/sphinx.rb +26 -0
- data/spec/data/complicated/config/software/spidermonkey.rb +60 -0
- data/spec/data/complicated/config/software/sqitch.rb +24 -0
- data/spec/data/complicated/config/software/test-kitchen.rb +39 -0
- data/spec/data/complicated/config/software/unicorn.rb +27 -0
- data/spec/data/complicated/config/software/util-macros.rb +46 -0
- data/spec/data/complicated/config/software/version-manifest.rb +32 -0
- data/spec/data/complicated/config/software/xproto.rb +46 -0
- data/spec/data/complicated/config/software/yajl.rb +30 -0
- data/spec/data/complicated/config/software/zlib.rb +67 -0
- data/spec/data/projects/chefdk.rb +4 -4
- data/spec/data/projects/sample.rb +3 -0
- data/spec/data/software/erchef.rb +1 -1
- data/spec/fixtures/sample/files/windows_msi/Resources/assets/LICENSE.rtf +8 -0
- 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/localization-en-us.wxl +20 -0
- data/spec/fixtures/sample/files/windows_msi/Resources/parameters.wxi.erb +9 -0
- data/spec/fixtures/sample/files/windows_msi/Resources/source.wxs +74 -0
- data/spec/functional/packagers/mac_spec.rb +3 -20
- data/spec/functional/packagers/windows_spec.rb +69 -0
- data/spec/spec_helper.rb +79 -1
- data/spec/unit/artifact_spec.rb +0 -18
- data/spec/unit/build_version_dsl_spec.rb +136 -0
- data/spec/unit/build_version_spec.rb +185 -198
- data/spec/unit/config_spec.rb +18 -1
- data/spec/unit/fetchers/git_fetcher_spec.rb +55 -80
- data/spec/unit/fetchers/net_fetcher_spec.rb +11 -21
- data/spec/unit/install_path_cache_spec.rb +164 -136
- data/spec/unit/library_spec.rb +125 -5
- data/spec/unit/omnibus_spec.rb +25 -9
- data/spec/unit/overrides_spec.rb +2 -14
- data/spec/unit/package_release_spec.rb +0 -18
- data/spec/unit/packagers/base_spec.rb +84 -21
- data/spec/unit/packagers/mac_pkg_spec.rb +34 -24
- data/spec/unit/project_spec.rb +100 -102
- data/spec/unit/s3_cacher_spec.rb +0 -18
- data/spec/unit/software_spec.rb +152 -6
- data/spec/{sugar_spec.rb → unit/sugar_spec.rb} +0 -3
- metadata +365 -38
- data/lib/omnibus/cli/application.rb +0 -147
- data/lib/omnibus/cli/build.rb +0 -64
@@ -0,0 +1,170 @@
|
|
1
|
+
#
|
2
|
+
# Copyright:: Copyright (c) 2012-2014 Chef Software, Inc.
|
3
|
+
# License:: Apache License, Version 2.0
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
#
|
17
|
+
|
18
|
+
name "chef"
|
19
|
+
|
20
|
+
dependency "ruby"
|
21
|
+
dependency "rubygems"
|
22
|
+
dependency "yajl"
|
23
|
+
dependency "bundler"
|
24
|
+
|
25
|
+
default_version "master"
|
26
|
+
|
27
|
+
source :git => "git://github.com/opscode/chef"
|
28
|
+
|
29
|
+
relative_path "chef"
|
30
|
+
|
31
|
+
always_build (self.project.name == "chef")
|
32
|
+
|
33
|
+
env =
|
34
|
+
case platform
|
35
|
+
when "solaris2"
|
36
|
+
{
|
37
|
+
"CFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
|
38
|
+
"LDFLAGS" => "-R#{install_dir}/embedded/lib -L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include -static-libgcc",
|
39
|
+
"LD_OPTIONS" => "-R#{install_dir}/embedded/lib"
|
40
|
+
}
|
41
|
+
when "aix"
|
42
|
+
{
|
43
|
+
"LDFLAGS" => "-Wl,-blibpath:#{install_dir}/embedded/lib:/usr/lib:/lib -L#{install_dir}/embedded/lib",
|
44
|
+
"CFLAGS" => "-I#{install_dir}/embedded/include"
|
45
|
+
}
|
46
|
+
else
|
47
|
+
{
|
48
|
+
"CFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
|
49
|
+
"LDFLAGS" => "-Wl,-rpath #{install_dir}/embedded/lib -L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include"
|
50
|
+
}
|
51
|
+
end
|
52
|
+
|
53
|
+
build do
|
54
|
+
#####################################################################
|
55
|
+
#
|
56
|
+
# nasty nasty nasty hack for setting artifact version
|
57
|
+
#
|
58
|
+
#####################################################################
|
59
|
+
#
|
60
|
+
# since omnibus-ruby is not architected to intentionally let the
|
61
|
+
# software definitions define the #build_version and
|
62
|
+
# #build_iteration of the package artifact, we're going to implement
|
63
|
+
# a temporary hack here that lets us do so. this type of use case
|
64
|
+
# will become a feature of omnibus-ruby in the future, but in order
|
65
|
+
# to get things shipped, we'll hack it up here.
|
66
|
+
#
|
67
|
+
# <3 Stephen
|
68
|
+
#
|
69
|
+
#####################################################################
|
70
|
+
block do
|
71
|
+
project = self.project
|
72
|
+
if project.name == "chef"
|
73
|
+
git_cmd = "git describe --tags"
|
74
|
+
src_dir = self.project_dir
|
75
|
+
shell = Mixlib::ShellOut.new(git_cmd,
|
76
|
+
:cwd => src_dir)
|
77
|
+
shell.run_command
|
78
|
+
shell.error!
|
79
|
+
build_version = shell.stdout.chomp
|
80
|
+
|
81
|
+
project.build_version build_version
|
82
|
+
project.build_iteration ENV["CHEF_PACKAGE_ITERATION"].to_i || 1
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
86
|
+
# COMPAT HACK :( - Chef 11 finally has the core Chef code in the root of the
|
87
|
+
# project repo. Since the Chef Client pipeline needs to build/test Chef 10.x
|
88
|
+
# and 11 releases our software definition need to handle both cases
|
89
|
+
# gracefully.
|
90
|
+
block do
|
91
|
+
build_commands = self.builder.build_commands
|
92
|
+
chef_root = File.join(self.project_dir, "chef")
|
93
|
+
if File.exists?(chef_root)
|
94
|
+
build_commands.each_index do |i|
|
95
|
+
cmd = build_commands[i].dup
|
96
|
+
if cmd.is_a? Array
|
97
|
+
if cmd.last.is_a? Hash
|
98
|
+
cmd_opts = cmd.pop.dup
|
99
|
+
cmd_opts[:cwd] = chef_root
|
100
|
+
cmd << cmd_opts
|
101
|
+
else
|
102
|
+
cmd << {:cwd => chef_root}
|
103
|
+
end
|
104
|
+
build_commands[i] = cmd
|
105
|
+
end
|
106
|
+
end
|
107
|
+
end
|
108
|
+
end
|
109
|
+
|
110
|
+
# The way we install chef is different between chefdk and chef projects
|
111
|
+
# due to the fact that chefdk project has appbundler enabled.
|
112
|
+
# Two differences are:
|
113
|
+
# 1-) Order of bundle install & rake gem
|
114
|
+
# 2-) "-n #{install_dir}/bin" option for gem install
|
115
|
+
# We don't expect any side effects from (1) other than not creating
|
116
|
+
# link to erubis binary (which is not needed other than ruby 1.8.7 due to
|
117
|
+
# change that switched the template syntax checking to native ruby code.
|
118
|
+
# Not having (2) does not create symlinks for binaries under
|
119
|
+
# #{install_dir}/bin which gets created by appbundler later on.
|
120
|
+
if project.name == "chef"
|
121
|
+
# install chef first so that ohai gets installed into /opt/chef/bin/ohai
|
122
|
+
rake "gem", :env => env.merge({"PATH" => "#{install_dir}/embedded/bin:#{ENV['PATH']}"})
|
123
|
+
|
124
|
+
command "rm -f pkg/chef-*-x86-mingw32.gem"
|
125
|
+
|
126
|
+
gem ["install pkg/chef-*.gem",
|
127
|
+
"-n #{install_dir}/bin",
|
128
|
+
"--no-rdoc --no-ri"].join(" "), :env => env.merge({"PATH" => "#{install_dir}/embedded/bin:#{ENV['PATH']}"})
|
129
|
+
|
130
|
+
# install the whole bundle, so that we get dev gems (like rspec) and can later test in CI
|
131
|
+
# against all the exact gems that we ship (we will run rspec unbundled in the test phase).
|
132
|
+
bundle "install --without server docgen", :env => env.merge({"PATH" => "#{install_dir}/embedded/bin:#{ENV['PATH']}"})
|
133
|
+
else
|
134
|
+
# install the whole bundle first
|
135
|
+
bundle "install --without server docgen", :env => env.merge({"PATH" => "#{install_dir}/embedded/bin:#{ENV['PATH']}"})
|
136
|
+
|
137
|
+
rake "gem", :env => env.merge({"PATH" => "#{install_dir}/embedded/bin:#{ENV['PATH']}"})
|
138
|
+
|
139
|
+
command "rm -f pkg/chef-*-x86-mingw32.gem"
|
140
|
+
|
141
|
+
# Don't use -n #{install_dir}/bin. Appbundler will take care of them later
|
142
|
+
gem ["install pkg/chef-*.gem",
|
143
|
+
"--no-rdoc --no-ri"].join(" "), :env => env.merge({"PATH" => "#{install_dir}/embedded/bin:#{ENV['PATH']}"})
|
144
|
+
end
|
145
|
+
|
146
|
+
auxiliary_gems = []
|
147
|
+
auxiliary_gems << "ruby-shadow" unless platform == "aix"
|
148
|
+
|
149
|
+
gem ["install",
|
150
|
+
auxiliary_gems.join(" "),
|
151
|
+
"--no-rdoc --no-ri"].join(" "), :env => env.merge({"PATH" => "#{install_dir}/embedded/bin:#{ENV['PATH']}"})
|
152
|
+
|
153
|
+
#
|
154
|
+
# TODO: the "clean up" section below was cargo-culted from the
|
155
|
+
# clojure version of omnibus that depended on the build order of the
|
156
|
+
# tasks and not dependencies. if we really need to clean stuff up,
|
157
|
+
# we should probably stick the clean up steps somewhere else
|
158
|
+
#
|
159
|
+
|
160
|
+
# clean up
|
161
|
+
["docs",
|
162
|
+
"share/man",
|
163
|
+
"share/doc",
|
164
|
+
"share/gtk-doc",
|
165
|
+
"ssl/man",
|
166
|
+
"man",
|
167
|
+
"info"].each do |dir|
|
168
|
+
command "rm -rf #{install_dir}/embedded/#{dir}"
|
169
|
+
end
|
170
|
+
end
|
@@ -0,0 +1,103 @@
|
|
1
|
+
#
|
2
|
+
# Copyright:: Copyright (c) 2012-2014 Chef Software, Inc.
|
3
|
+
# License:: Apache License, Version 2.0
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
#
|
17
|
+
|
18
|
+
name "chefdk"
|
19
|
+
default_version "master"
|
20
|
+
|
21
|
+
source :git => "git://github.com/opscode/chef-dk"
|
22
|
+
|
23
|
+
relative_path "chef-dk"
|
24
|
+
|
25
|
+
always_build (self.project.name == "chefdk")
|
26
|
+
|
27
|
+
if platform == 'windows'
|
28
|
+
dependency "chef-windows"
|
29
|
+
else
|
30
|
+
dependency "chef"
|
31
|
+
end
|
32
|
+
|
33
|
+
dependency "test-kitchen"
|
34
|
+
dependency "appbundler"
|
35
|
+
dependency "berkshelf"
|
36
|
+
dependency "chef-vault"
|
37
|
+
|
38
|
+
sep = File::PATH_SEPARATOR || ":"
|
39
|
+
path = "#{install_dir}/embedded/bin#{sep}#{ENV['PATH']}"
|
40
|
+
|
41
|
+
env = {
|
42
|
+
# rubocop pulls in nokogiri 1.5.11, so needs PKG_CONFIG_PATH and
|
43
|
+
# NOKOGIRI_USE_SYSTEM_LIBRARIES until rubocop stops doing that
|
44
|
+
"PKG_CONFIG_PATH" => "#{install_dir}/embedded/lib/pkgconfig",
|
45
|
+
"NOKOGIRI_USE_SYSTEM_LIBRARIES" => "true",
|
46
|
+
"PATH" => path
|
47
|
+
}
|
48
|
+
|
49
|
+
build do
|
50
|
+
# Nasty hack to set the artifact version until this gets fixed:
|
51
|
+
# https://github.com/opscode/omnibus-ruby/issues/134
|
52
|
+
block do
|
53
|
+
project = self.project
|
54
|
+
if project.name == "chefdk"
|
55
|
+
project.build_version Omnibus::BuildVersion.new(self.project_dir).semver
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
def appbuilder(app_path, bin_path)
|
60
|
+
sep = File::PATH_SEPARATOR || ":"
|
61
|
+
path = "#{install_dir}/embedded/bin#{sep}#{ENV['PATH']}"
|
62
|
+
|
63
|
+
gemfile = File.join(app_path, "Gemfile.lock")
|
64
|
+
command("#{install_dir}/embedded/bin/appbundler #{app_path} #{bin_path}",
|
65
|
+
:env => {
|
66
|
+
'RUBYOPT' => nil,
|
67
|
+
'BUNDLE_BIN_PATH' => nil,
|
68
|
+
'BUNDLE_GEMFILE' => gemfile,
|
69
|
+
'GEM_PATH' => nil,
|
70
|
+
'GEM_HOME' => nil,
|
71
|
+
'PATH' => path
|
72
|
+
})
|
73
|
+
end
|
74
|
+
|
75
|
+
bundle "install", :env => {"PATH" => path}
|
76
|
+
rake "build", :env => env.merge({"PATH" => path})
|
77
|
+
|
78
|
+
gem ["install pkg/chef-dk*.gem",
|
79
|
+
"--no-rdoc --no-ri"].join(" "), :env => env.merge({"PATH" => path})
|
80
|
+
|
81
|
+
auxiliary_gems = []
|
82
|
+
|
83
|
+
auxiliary_gems << {name: 'foodcritic', version: '3.0.3'}
|
84
|
+
auxiliary_gems << {name: 'chefspec', version: '3.4.0'}
|
85
|
+
auxiliary_gems << {name: 'rubocop', version: '0.18.1'}
|
86
|
+
auxiliary_gems << {name: 'knife-spork', version: '1.3.2'}
|
87
|
+
auxiliary_gems << {name: 'kitchen-vagrant', version: '0.15.0'}
|
88
|
+
# strainer build is hosed on windows
|
89
|
+
# auxiliary_gems << {name: 'strainer', version: '3.3.0'}
|
90
|
+
|
91
|
+
# do multiple gem installs to better isolate/debug failures
|
92
|
+
auxiliary_gems.each do |g|
|
93
|
+
gem "install #{g[:name]} -v #{g[:version]} -n #{install_dir}/bin --no-rdoc --no-ri --verbose", :env => env
|
94
|
+
end
|
95
|
+
|
96
|
+
block { FileUtils.mkdir_p("#{install_dir}/embedded/apps") }
|
97
|
+
|
98
|
+
appbundler_apps = %w[chef berkshelf test-kitchen chef-dk chef-vault]
|
99
|
+
appbundler_apps.each do |app_name|
|
100
|
+
block { FileUtils.cp_r("#{source_dir}/#{app_name}", "#{install_dir}/embedded/apps/") }
|
101
|
+
appbuilder("#{install_dir}/embedded/apps/#{app_name}", "#{install_dir}/bin")
|
102
|
+
end
|
103
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
#
|
2
|
+
# Copyright:: Copyright (c) 2012-2014 Chef Software, Inc.
|
3
|
+
# License:: Apache License, Version 2.0
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
#
|
17
|
+
|
18
|
+
name "couchdb"
|
19
|
+
default_version "1.0.3"
|
20
|
+
|
21
|
+
dependency "spidermonkey"
|
22
|
+
dependency "icu"
|
23
|
+
dependency "curl"
|
24
|
+
dependency "erlang"
|
25
|
+
|
26
|
+
source :url => "http://archive.apache.org/dist/couchdb/#{version}/apache-couchdb-#{version}.tar.gz",
|
27
|
+
:md5 => "cfdc2ab751bf18049c5ef7866602d8ed"
|
28
|
+
|
29
|
+
relative_path "apache-couchdb-#{version}"
|
30
|
+
|
31
|
+
build_env = {
|
32
|
+
"RPATH" => "#{install_dir}/embedded/lib",
|
33
|
+
"CURL_CONFIG" => "#{install_dir}/embedded/bin/curl-config",
|
34
|
+
"ICU_CONFIG" => "#{install_dir}/embedded/bin/icu-config",
|
35
|
+
"ERL" => "#{install_dir}/embedded/bin/erl",
|
36
|
+
"ERLC" => "#{install_dir}/embedded/bin/erlc",
|
37
|
+
"LD_RUN_PATH" => "#{install_dir}/embedded/lib",
|
38
|
+
"CFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
|
39
|
+
"PATH" => "#{install_dir}/embedded/bin:#{ENV["PATH"]}"
|
40
|
+
}
|
41
|
+
|
42
|
+
build do
|
43
|
+
# command "./bootstrap", :env => build_env
|
44
|
+
command ["./configure",
|
45
|
+
"--prefix=#{install_dir}/embedded",
|
46
|
+
"--disable-init",
|
47
|
+
"--disable-launchd",
|
48
|
+
"--with-erlang=#{install_dir}/embedded/lib/erlang/usr/include",
|
49
|
+
"--with-js-include=#{install_dir}/embedded/include",
|
50
|
+
"--with-js-lib=#{install_dir}/embedded/lib"].join(" "), :env => build_env
|
51
|
+
command "make -j #{max_build_jobs}", :env => build_env
|
52
|
+
command "make install", :env => build_env
|
53
|
+
end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
#
|
2
|
+
# Copyright:: Copyright (c) 2012-2014 Chef Software, Inc.
|
3
|
+
# License:: Apache License, Version 2.0
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
#
|
17
|
+
|
18
|
+
name "curl"
|
19
|
+
default_version "7.36.0"
|
20
|
+
|
21
|
+
dependency "zlib"
|
22
|
+
dependency "openssl"
|
23
|
+
|
24
|
+
source :url => "http://curl.haxx.se/download/curl-#{version}.tar.gz",
|
25
|
+
:md5 => "643a7030b27449e76413d501d4b8eb57"
|
26
|
+
|
27
|
+
relative_path "curl-#{version}"
|
28
|
+
|
29
|
+
build do
|
30
|
+
command ["./configure",
|
31
|
+
"--prefix=#{install_dir}/embedded",
|
32
|
+
"--disable-debug",
|
33
|
+
"--enable-optimize",
|
34
|
+
"--disable-ldap",
|
35
|
+
"--disable-ldaps",
|
36
|
+
"--disable-rtsp",
|
37
|
+
"--enable-proxy",
|
38
|
+
"--disable-dependency-tracking",
|
39
|
+
"--enable-ipv6",
|
40
|
+
"--without-libidn",
|
41
|
+
"--without-gnutls",
|
42
|
+
"--without-librtmp",
|
43
|
+
"--with-ssl=#{install_dir}/embedded",
|
44
|
+
"--with-zlib=#{install_dir}/embedded"].join(" ")
|
45
|
+
|
46
|
+
command "make -j #{max_build_jobs}", :env => {"LD_RUN_PATH" => "#{install_dir}/embedded/lib"}
|
47
|
+
command "make install"
|
48
|
+
end
|
@@ -0,0 +1,65 @@
|
|
1
|
+
#
|
2
|
+
# Copyright:: Copyright (c) 2012-2014 Chef Software, Inc.
|
3
|
+
# License:: Apache License, Version 2.0
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
#
|
17
|
+
|
18
|
+
name "erlang"
|
19
|
+
default_version "R15B03-1"
|
20
|
+
|
21
|
+
dependency "zlib"
|
22
|
+
dependency "openssl"
|
23
|
+
dependency "ncurses"
|
24
|
+
|
25
|
+
version "R15B03-1" do
|
26
|
+
source :md5 => 'eccd1e6dda6132993555e088005019f2'
|
27
|
+
relative_path "otp_src_R15B03"
|
28
|
+
end
|
29
|
+
|
30
|
+
version "R16B03-1" do
|
31
|
+
source md5: 'e5ece977375197338c1b93b3d88514f8'
|
32
|
+
relative_path "otp_src_#{version}"
|
33
|
+
end
|
34
|
+
|
35
|
+
source :url => "http://www.erlang.org/download/otp_src_#{version}.tar.gz"
|
36
|
+
|
37
|
+
env = {
|
38
|
+
"CFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/erlang/include",
|
39
|
+
"LDFLAGS" => "-Wl,-rpath #{install_dir}/embedded/lib -L#{install_dir}/embedded/lib -I#{install_dir}/embedded/erlang/include"
|
40
|
+
}
|
41
|
+
|
42
|
+
build do
|
43
|
+
# set up the erlang include dir
|
44
|
+
command "mkdir -p #{install_dir}/embedded/erlang/include"
|
45
|
+
%w{ncurses openssl zlib.h zconf.h}.each do |link|
|
46
|
+
command "ln -fs #{install_dir}/embedded/include/#{link} #{install_dir}/embedded/erlang/include/#{link}"
|
47
|
+
end
|
48
|
+
|
49
|
+
# TODO: build cross-platform. this is for linux
|
50
|
+
command(["./configure",
|
51
|
+
"--prefix=#{install_dir}/embedded",
|
52
|
+
"--enable-threads",
|
53
|
+
"--enable-smp-support",
|
54
|
+
"--enable-kernel-poll",
|
55
|
+
"--enable-dynamic-ssl-lib",
|
56
|
+
"--enable-shared-zlib",
|
57
|
+
"--enable-hipe",
|
58
|
+
"--without-javac",
|
59
|
+
"--with-ssl=#{install_dir}/embedded",
|
60
|
+
"--disable-debug"].join(" "),
|
61
|
+
:env => env)
|
62
|
+
|
63
|
+
command "make -j #{max_build_jobs}", :env => env
|
64
|
+
command "make install"
|
65
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
name "expat"
|
2
|
+
default_version "2.1.0"
|
3
|
+
|
4
|
+
relative_path "expat-2.1.0"
|
5
|
+
|
6
|
+
source :url => "http://downloads.sourceforge.net/project/expat/expat/2.1.0/expat-2.1.0.tar.gz?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fexpat%2F&ts=1374730265&use_mirror=iweb",
|
7
|
+
:md5 => "dd7dab7a5fea97d2a6a43f511449b7cd"
|
8
|
+
|
9
|
+
env = {
|
10
|
+
"LDFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
|
11
|
+
"CFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
|
12
|
+
"LD_RUN_PATH" => "#{install_dir}/embedded/lib"
|
13
|
+
}
|
14
|
+
|
15
|
+
build do
|
16
|
+
command ["./configure",
|
17
|
+
"--prefix=#{install_dir}/embedded"].join(" "), :env => env
|
18
|
+
|
19
|
+
command "make -j #{max_build_jobs}", :env => env
|
20
|
+
command "make install"
|
21
|
+
end
|