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,47 @@
|
|
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 "popt"
|
19
|
+
default_version "1.16"
|
20
|
+
|
21
|
+
source :url => "http://rpm5.org/files/popt/popt-1.16.tar.gz",
|
22
|
+
:md5 => "3743beefa3dd6247a73f8f7a32c14c33"
|
23
|
+
|
24
|
+
relative_path "popt-1.16"
|
25
|
+
|
26
|
+
env =
|
27
|
+
case platform
|
28
|
+
when "solaris2"
|
29
|
+
{
|
30
|
+
"LDFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
|
31
|
+
"CFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
|
32
|
+
"LD_RUN_PATH" => "#{install_dir}/embedded/lib"
|
33
|
+
}
|
34
|
+
else
|
35
|
+
{
|
36
|
+
"LDFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
|
37
|
+
"CFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
|
38
|
+
"LD_RUN_PATH" => "#{install_dir}/embedded/lib"
|
39
|
+
}
|
40
|
+
end
|
41
|
+
|
42
|
+
build do
|
43
|
+
# --disable-nls => Disable localization support.
|
44
|
+
command "./configure --prefix=#{install_dir}/embedded --disable-nls", :env => env
|
45
|
+
command "make -j #{max_build_jobs}", :env => env
|
46
|
+
command "make install"
|
47
|
+
end
|
@@ -0,0 +1,51 @@
|
|
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 "postgresql"
|
19
|
+
default_version "9.2.8"
|
20
|
+
|
21
|
+
dependency "zlib"
|
22
|
+
dependency "openssl"
|
23
|
+
dependency "libedit"
|
24
|
+
dependency "ncurses"
|
25
|
+
|
26
|
+
version "9.2.8" do
|
27
|
+
source :md5 => "c5c65a9b45ee53ead0b659be21ca1b97"
|
28
|
+
end
|
29
|
+
|
30
|
+
version "9.3.4" do
|
31
|
+
source :md5 => "d0a41f54c377b2d2fab4a003b0dac762"
|
32
|
+
end
|
33
|
+
|
34
|
+
source :url => "http://ftp.postgresql.org/pub/source/v#{version}/postgresql-#{version}.tar.bz2"
|
35
|
+
relative_path "postgresql-#{version}"
|
36
|
+
|
37
|
+
configure_env = {
|
38
|
+
"LDFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
|
39
|
+
"CFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
|
40
|
+
"LD_RUN_PATH" => "#{install_dir}/embedded/lib"
|
41
|
+
}
|
42
|
+
|
43
|
+
build do
|
44
|
+
command ["./configure",
|
45
|
+
"--prefix=#{install_dir}/embedded",
|
46
|
+
"--with-libedit-preferred",
|
47
|
+
"--with-openssl --with-includes=#{install_dir}/embedded/include",
|
48
|
+
"--with-libraries=#{install_dir}/embedded/lib"].join(" "), :env => configure_env
|
49
|
+
command "make -j #{max_build_jobs}", :env => {"LD_RUN_PATH" => "#{install_dir}/embedded/lib"}
|
50
|
+
command "make install"
|
51
|
+
end
|
@@ -0,0 +1,30 @@
|
|
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 "preparation"
|
19
|
+
description "the steps required to preprare the build"
|
20
|
+
default_version '1.0.0'
|
21
|
+
|
22
|
+
build do
|
23
|
+
block do
|
24
|
+
%w{embedded/lib embedded/bin bin}.each do |dir|
|
25
|
+
dir_fullpath = File.expand_path(File.join(install_dir, dir))
|
26
|
+
FileUtils.mkdir_p(dir_fullpath)
|
27
|
+
FileUtils.touch(File.join(dir_fullpath, '.gitkeep'))
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
#
|
2
|
+
# Copyright:: Copyright (c) 2013-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 "pygments"
|
19
|
+
default_version "1.6"
|
20
|
+
|
21
|
+
dependency "pip"
|
22
|
+
|
23
|
+
build do
|
24
|
+
command "#{install_dir}/embedded/bin/pip install -I --build #{project_dir} #{name}==#{version}"
|
25
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
#
|
2
|
+
# Copyright:: Copyright (c) 2013-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 "python"
|
19
|
+
default_version "2.7.5"
|
20
|
+
|
21
|
+
dependency "gdbm"
|
22
|
+
dependency "ncurses"
|
23
|
+
dependency "zlib"
|
24
|
+
dependency "openssl"
|
25
|
+
dependency "bzip2"
|
26
|
+
|
27
|
+
source :url => "http://python.org/ftp/python/#{version}/Python-#{version}.tgz",
|
28
|
+
:md5 => 'b4f01a1d0ba0b46b05c73b2ac909b1df'
|
29
|
+
|
30
|
+
relative_path "Python-#{version}"
|
31
|
+
|
32
|
+
env = {
|
33
|
+
"CFLAGS" => "-I#{install_dir}/embedded/include -O3 -g -pipe",
|
34
|
+
"LDFLAGS" => "-Wl,-rpath,#{install_dir}/embedded/lib -L#{install_dir}/embedded/lib"
|
35
|
+
}
|
36
|
+
|
37
|
+
build do
|
38
|
+
command ["./configure",
|
39
|
+
"--prefix=#{install_dir}/embedded",
|
40
|
+
"--enable-shared",
|
41
|
+
"--with-dbmliborder=gdbm"].join(" "), :env => env
|
42
|
+
command "make", :env => env
|
43
|
+
command "make install", :env => env
|
44
|
+
|
45
|
+
# There exists no configure flag to tell Python to not compile readline support :(
|
46
|
+
block do
|
47
|
+
FileUtils.rm_f(Dir.glob("#{install_dir}/embedded/lib/python2.7/lib-dynload/readline.*"))
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,36 @@
|
|
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 "rabbitmq"
|
19
|
+
default_version "2.7.1"
|
20
|
+
|
21
|
+
dependency "erlang"
|
22
|
+
dependency "rsync"
|
23
|
+
|
24
|
+
source :url => "http://www.rabbitmq.com/releases/rabbitmq-server/v2.7.1/rabbitmq-server-generic-unix-2.7.1.tar.gz",
|
25
|
+
:md5 => "34a5f9fb6f22e6681092443fcc80324f"
|
26
|
+
|
27
|
+
relative_path "rabbitmq_server-2.7.1"
|
28
|
+
|
29
|
+
build do
|
30
|
+
command "mkdir -p #{install_dir}/embedded/service/rabbitmq"
|
31
|
+
command "#{install_dir}/embedded/bin/rsync -a ./ #{install_dir}/embedded/service/rabbitmq/"
|
32
|
+
|
33
|
+
%w{rabbitmqctl rabbitmq-env rabbitmq-server}.each do |cmd|
|
34
|
+
command "ln -sf #{install_dir}/embedded/service/rabbitmq/sbin/#{cmd} #{install_dir}/embedded/bin/#{cmd}"
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,36 @@
|
|
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 "rebar"
|
19
|
+
default_version "2.0.0"
|
20
|
+
|
21
|
+
dependency "erlang"
|
22
|
+
|
23
|
+
source :git => "https://github.com/basho/rebar.git"
|
24
|
+
|
25
|
+
relative_path "rebar"
|
26
|
+
|
27
|
+
env = {
|
28
|
+
"PATH" => "#{install_dir}/embedded/bin:#{ENV["PATH"]}",
|
29
|
+
"LD_FLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
|
30
|
+
"LD_RUN_PATH" => "#{install_dir}/embedded/lib"
|
31
|
+
}
|
32
|
+
|
33
|
+
build do
|
34
|
+
command "./bootstrap", :env => env
|
35
|
+
command "cp ./rebar #{install_dir}/embedded/bin/"
|
36
|
+
end
|
@@ -0,0 +1,33 @@
|
|
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 "redis"
|
19
|
+
default_version "2.8.2"
|
20
|
+
|
21
|
+
source :url => "http://download.redis.io/releases/redis-#{version}.tar.gz",
|
22
|
+
:md5 => "ee527b0c37e1e2cbceb497f5f6b8112b"
|
23
|
+
|
24
|
+
relative_path "redis-#{version}"
|
25
|
+
|
26
|
+
make_args = ["PREFIX=#{install_dir}/embedded",
|
27
|
+
"CFLAGS='-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include'",
|
28
|
+
"LD_RUN_PATH=#{install_dir}/embedded/lib"].join(" ")
|
29
|
+
|
30
|
+
build do
|
31
|
+
command ["make -j #{max_build_jobs}", make_args].join(" ")
|
32
|
+
command ["make install", make_args].join(" ")
|
33
|
+
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 "rsync"
|
19
|
+
default_version "3.0.9"
|
20
|
+
|
21
|
+
dependency "popt"
|
22
|
+
|
23
|
+
source :url => "http://rsync.samba.org/ftp/rsync/src/rsync-3.0.9.tar.gz",
|
24
|
+
:md5 => "5ee72266fe2c1822333c407e1761b92b"
|
25
|
+
|
26
|
+
relative_path "rsync-3.0.9"
|
27
|
+
|
28
|
+
env =
|
29
|
+
case platform
|
30
|
+
when "solaris2"
|
31
|
+
{
|
32
|
+
"LDFLAGS" => "-R #{install_dir}/embedded/lib -L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
|
33
|
+
"CFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include -static-libgcc",
|
34
|
+
"LD_RUN_PATH" => "#{install_dir}/embedded/lib"
|
35
|
+
}
|
36
|
+
else
|
37
|
+
{
|
38
|
+
"LDFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
|
39
|
+
"CFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
|
40
|
+
"LD_RUN_PATH" => "#{install_dir}/embedded/lib"
|
41
|
+
}
|
42
|
+
end
|
43
|
+
|
44
|
+
build do
|
45
|
+
command "./configure --prefix=#{install_dir}/embedded --disable-iconv", :env => env
|
46
|
+
command "make -j #{max_build_jobs}", :env => env
|
47
|
+
command "make install"
|
48
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
#
|
2
|
+
# Copyright:: Copyright (c) 2012 Opscode, 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 "ruby-windows-devkit"
|
19
|
+
default_version "4.5.2-20111229-1559"
|
20
|
+
|
21
|
+
dependency "ruby-windows"
|
22
|
+
|
23
|
+
source :url => "http://cloud.github.com/downloads/oneclick/rubyinstaller/DevKit-tdm-32-#{version}-sfx.exe",
|
24
|
+
:md5 => "4bf8f2dd1d582c8733a67027583e19a6"
|
25
|
+
|
26
|
+
build do
|
27
|
+
command "DevKit-tdm-32-#{version}-sfx.exe -y -o#{File.expand_path(File.join(install_dir, "embedded")).gsub(/\//, "\\")}"
|
28
|
+
command "echo - #{install_dir}/embedded > config.yml", :cwd => "#{install_dir}/embedded"
|
29
|
+
ruby "dk.rb install", :cwd => "#{install_dir}/embedded"
|
30
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
#
|
2
|
+
# Copyright:: Copyright (c) 2012 Opscode, 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 "ruby-windows"
|
19
|
+
default_version "1.9.3-p484"
|
20
|
+
|
21
|
+
relative_path "ruby-#{version}-i386-mingw32"
|
22
|
+
|
23
|
+
source :url => "http://dl.bintray.com/oneclick/rubyinstaller/ruby-#{version}-i386-mingw32.7z?direct",
|
24
|
+
:md5 => "a0665113aaeea83f1c4bea02fcf16694"
|
25
|
+
|
26
|
+
build do
|
27
|
+
# Robocopy's return code is 1 if it succesfully copies over the
|
28
|
+
# files and 0 if the files are already existing at the destination
|
29
|
+
command "robocopy . #{install_dir}\\embedded\\ /MIR", :returns => [0, 1]
|
30
|
+
end
|
@@ -0,0 +1,162 @@
|
|
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 "ruby"
|
19
|
+
default_version "1.9.3-p484"
|
20
|
+
|
21
|
+
dependency "zlib"
|
22
|
+
dependency "ncurses"
|
23
|
+
dependency "libedit"
|
24
|
+
dependency "openssl"
|
25
|
+
dependency "libyaml"
|
26
|
+
dependency "libiconv"
|
27
|
+
dependency "gdbm"
|
28
|
+
dependency "libgcc" if (platform == "solaris2" and Omnibus.config.solaris_compiler == "gcc")
|
29
|
+
|
30
|
+
version "1.9.3-p484" do
|
31
|
+
source md5: '8ac0dee72fe12d75c8b2d0ef5d0c2968'
|
32
|
+
end
|
33
|
+
|
34
|
+
version "2.1.1" do
|
35
|
+
source md5: 'e57fdbb8ed56e70c43f39c79da1654b2'
|
36
|
+
end
|
37
|
+
|
38
|
+
source url: "http://cache.ruby-lang.org/pub/ruby/#{version.match(/^(\d+\.\d+)/)[0]}/ruby-#{version}.tar.gz"
|
39
|
+
|
40
|
+
relative_path "ruby-#{version}"
|
41
|
+
|
42
|
+
env =
|
43
|
+
case platform
|
44
|
+
when "mac_os_x"
|
45
|
+
{
|
46
|
+
# -Qunused-arguments suppresses "argument unused during compilation"
|
47
|
+
# warnings. These can be produced if you compile a program that doesn't
|
48
|
+
# link to anything in a path given with -Lextra-libs. Normally these
|
49
|
+
# would be harmless, except that autoconf treats any output to stderr as
|
50
|
+
# a failure when it makes a test program to check your CFLAGS (regardless
|
51
|
+
# of the actual exit code from the compiler).
|
52
|
+
"CFLAGS" => "-arch x86_64 -m64 -L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include -I#{install_dir}/embedded/include/ncurses -O3 -g -pipe -Qunused-arguments",
|
53
|
+
"LDFLAGS" => "-arch x86_64 -L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include -I#{install_dir}/embedded/include/ncurses"
|
54
|
+
}
|
55
|
+
when "solaris2"
|
56
|
+
{
|
57
|
+
"CFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include -O3 -g -pipe",
|
58
|
+
"LDFLAGS" => "-R#{install_dir}/embedded/lib -L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include -static-libgcc",
|
59
|
+
"LD_OPTIONS" => "-R#{install_dir}/embedded/lib"
|
60
|
+
}
|
61
|
+
when "aix"
|
62
|
+
{
|
63
|
+
# see http://www.ibm.com/developerworks/aix/library/au-gnu.html
|
64
|
+
#
|
65
|
+
# specifically:
|
66
|
+
#
|
67
|
+
# "To use AIX run-time linking, you should create the shared object
|
68
|
+
# using gcc -shared -Wl,-G and create executables using the library
|
69
|
+
# by adding the -Wl,-brtl option to the link line. Technically, you
|
70
|
+
# can leave off the -shared option, but it does no harm and reduces
|
71
|
+
# confusion."
|
72
|
+
#
|
73
|
+
# AIX also uses -Wl,-blibpath instead of -R or LD_RUN_PATH, but the
|
74
|
+
# option is not additive, so requires /usr/lib and /lib as well (there
|
75
|
+
# is a -bsvr4 option to allow ld to take an -R flag in addition
|
76
|
+
# to turning on -brtl, but it had other side effects I couldn't fix).
|
77
|
+
#
|
78
|
+
# If libraries linked with gcc -shared have symbol resolution failures
|
79
|
+
# then it may be useful to add -bexpfull to export all symbols.
|
80
|
+
#
|
81
|
+
# -O2 optimized away some configure test which caused ext libs to fail
|
82
|
+
#
|
83
|
+
# We also need prezl's M4 instead of picking up /usr/bin/m4 which
|
84
|
+
# barfs on ruby.
|
85
|
+
#
|
86
|
+
"CC" => "xlc -q64",
|
87
|
+
"CXX" => "xlC -q64",
|
88
|
+
"LD" => "ld -b64",
|
89
|
+
"CFLAGS" => "-q64 -O -qhot -I#{install_dir}/embedded/include",
|
90
|
+
"CXXFLAGS" => "-q64 -O -qhot -I#{install_dir}/embedded/include",
|
91
|
+
"LDFLAGS" => "-q64 -L#{install_dir}/embedded/lib -Wl,-brtl -Wl,-blibpath:#{install_dir}/embedded/lib:/usr/lib:/lib",
|
92
|
+
"OBJECT_MODE" => "64",
|
93
|
+
"ARFLAGS" => "-X64 cru",
|
94
|
+
"M4" => "/opt/freeware/bin/m4",
|
95
|
+
"warnflags" => "-qinfo=por"
|
96
|
+
}
|
97
|
+
else
|
98
|
+
{
|
99
|
+
"CFLAGS" => "-I#{install_dir}/embedded/include -O3 -g -pipe",
|
100
|
+
"LDFLAGS" => "-Wl,-rpath,#{install_dir}/embedded/lib -L#{install_dir}/embedded/lib"
|
101
|
+
}
|
102
|
+
end
|
103
|
+
|
104
|
+
build do
|
105
|
+
configure_command = ["./configure",
|
106
|
+
"--prefix=#{install_dir}/embedded",
|
107
|
+
"--with-out-ext=fiddle,dbm",
|
108
|
+
"--enable-shared",
|
109
|
+
"--enable-libedit",
|
110
|
+
"--with-ext=psych",
|
111
|
+
"--disable-install-doc"]
|
112
|
+
|
113
|
+
case platform
|
114
|
+
when "aix"
|
115
|
+
patch :source => "ruby-aix-configure.patch", :plevel => 1
|
116
|
+
patch :source => "ruby_aix_1_9_3_448_ssl_EAGAIN.patch", :plevel => 1
|
117
|
+
# --with-opt-dir causes ruby to send bogus commands to the AIX linker
|
118
|
+
when "freebsd"
|
119
|
+
configure_command << "--without-execinfo"
|
120
|
+
configure_command << "--with-opt-dir=#{install_dir}/embedded"
|
121
|
+
when "smartos"
|
122
|
+
# Opscode patch - someara@opscode.com
|
123
|
+
# GCC 4.7.0 chokes on mismatched function types between OpenSSL 1.0.1c and Ruby 1.9.3-p286
|
124
|
+
patch :source => "ruby-openssl-1.0.1c.patch", :plevel => 1
|
125
|
+
|
126
|
+
# Patches taken from RVM.
|
127
|
+
# http://bugs.ruby-lang.org/issues/5384
|
128
|
+
# https://www.illumos.org/issues/1587
|
129
|
+
# https://github.com/wayneeseguin/rvm/issues/719
|
130
|
+
patch :source => "rvm-cflags.patch", :plevel => 1
|
131
|
+
|
132
|
+
# From RVM forum
|
133
|
+
# https://github.com/wayneeseguin/rvm/commit/86766534fcc26f4582f23842a4d3789707ce6b96
|
134
|
+
configure_command << "ac_cv_func_dl_iterate_phdr=no"
|
135
|
+
configure_command << "--with-opt-dir=#{install_dir}/embedded"
|
136
|
+
else
|
137
|
+
configure_command << "--with-opt-dir=#{install_dir}/embedded"
|
138
|
+
end
|
139
|
+
|
140
|
+
# @todo expose bundle_bust() in the DSL
|
141
|
+
env.merge!({
|
142
|
+
"RUBYOPT" => nil,
|
143
|
+
"BUNDLE_BIN_PATH" => nil,
|
144
|
+
"BUNDLE_GEMFILE" => nil,
|
145
|
+
"GEM_PATH" => nil,
|
146
|
+
"GEM_HOME" => nil
|
147
|
+
})
|
148
|
+
|
149
|
+
# @todo: move into omnibus-ruby
|
150
|
+
has_gmake = system("gmake --version")
|
151
|
+
|
152
|
+
if has_gmake
|
153
|
+
env.merge!({'MAKE' => 'gmake'})
|
154
|
+
make_binary = 'gmake'
|
155
|
+
else
|
156
|
+
make_binary = 'make'
|
157
|
+
end
|
158
|
+
|
159
|
+
command configure_command.join(" "), :env => env
|
160
|
+
command "#{make_binary} -j #{max_build_jobs}", :env => env
|
161
|
+
command "#{make_binary} -j #{max_build_jobs} install", :env => env
|
162
|
+
end
|