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,149 @@
|
|
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 "ncurses"
|
19
|
+
default_version "5.9"
|
20
|
+
|
21
|
+
dependency "libgcc"
|
22
|
+
dependency "libtool" if platform == "aix"
|
23
|
+
|
24
|
+
source :url => "http://ftp.gnu.org/gnu/ncurses/ncurses-5.9.tar.gz",
|
25
|
+
:md5 => "8cb9c412e5f2d96bc6f459aa8c6282a1"
|
26
|
+
|
27
|
+
relative_path "ncurses-5.9"
|
28
|
+
|
29
|
+
env = case platform
|
30
|
+
when "aix"
|
31
|
+
{
|
32
|
+
"PATH" => "#{install_dir}/embedded/bin:" + ENV['PATH'],
|
33
|
+
"LDFLAGS" => "-Wl,-brtl -Wl,-blibpath:#{install_dir}/embedded/lib:/usr/lib:/lib -L#{install_dir}/embedded/lib",
|
34
|
+
"CXXFLAGS" => "-O -I#{install_dir}/embedded/include",
|
35
|
+
"CFLAGS" => "-O -I#{install_dir}/embedded/include",
|
36
|
+
"OBJECT_MODE" => "64",
|
37
|
+
"CC" => "gcc -maix64",
|
38
|
+
"CXX" => "g++ -maix64",
|
39
|
+
"CFLAGS" => "-maix64 -I#{install_dir}/embedded/include",
|
40
|
+
"ARFLAGS" => "-X64 cru"
|
41
|
+
}
|
42
|
+
else
|
43
|
+
{
|
44
|
+
"LD_RUN_PATH" => "#{install_dir}/embedded/lib",
|
45
|
+
"CFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
|
46
|
+
"LDFLAGS" => "-L#{install_dir}/embedded/lib"
|
47
|
+
}
|
48
|
+
end
|
49
|
+
|
50
|
+
if platform == "solaris2"
|
51
|
+
env.merge!({"LDFLAGS" => "-R#{install_dir}/embedded/lib -L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include -static-libgcc"})
|
52
|
+
env.merge!({"LD_OPTIONS" => "-R#{install_dir}/embedded/lib"})
|
53
|
+
# gcc4 from opencsw fails to compile ncurses
|
54
|
+
env.merge!({"PATH" => "/opt/csw/gcc3/bin:/opt/csw/bin:/usr/local/bin:/usr/sfw/bin:/usr/ccs/bin:/usr/sbin:/usr/bin"})
|
55
|
+
env.merge!({"CC" => "/opt/csw/gcc3/bin/gcc"})
|
56
|
+
env.merge!({"CXX" => "/opt/csw/gcc3/bin/g++"})
|
57
|
+
elsif platform == "smartos"
|
58
|
+
env.merge!({"LD_OPTIONS" => "-R#{install_dir}/embedded/lib -L#{install_dir}/embedded/lib "})
|
59
|
+
end
|
60
|
+
|
61
|
+
########################################################################
|
62
|
+
#
|
63
|
+
# wide-character support:
|
64
|
+
# Ruby 1.9 optimistically builds against libncursesw for UTF-8
|
65
|
+
# support. In order to prevent Ruby from linking against a
|
66
|
+
# package-installed version of ncursesw, we build wide-character
|
67
|
+
# support into ncurses with the "--enable-widec" configure parameter.
|
68
|
+
# To support other applications and libraries that still try to link
|
69
|
+
# against libncurses, we also have to create non-wide libraries.
|
70
|
+
#
|
71
|
+
# The methods below are adapted from:
|
72
|
+
# http://www.linuxfromscratch.org/lfs/view/development/chapter06/ncurses.html
|
73
|
+
#
|
74
|
+
########################################################################
|
75
|
+
|
76
|
+
build do
|
77
|
+
if platform == "smartos"
|
78
|
+
# SmartOS is Illumos Kernel, plus NetBSD userland with a GNU toolchain.
|
79
|
+
# These patches are taken from NetBSD pkgsrc and provide GCC 4.7.0
|
80
|
+
# compatibility:
|
81
|
+
# http://ftp.netbsd.org/pub/pkgsrc/current/pkgsrc/devel/ncurses/patches/
|
82
|
+
patch :source => 'patch-aa', :plevel => 0
|
83
|
+
patch :source => 'patch-ab', :plevel => 0
|
84
|
+
patch :source => 'patch-ac', :plevel => 0
|
85
|
+
patch :source => 'patch-ad', :plevel => 0
|
86
|
+
patch :source => 'patch-cxx_cursesf.h', :plevel => 0
|
87
|
+
patch :source => 'patch-cxx_cursesm.h', :plevel => 0
|
88
|
+
|
89
|
+
# Opscode patches - <someara@opscode.com>
|
90
|
+
# The configure script from the pristine tarball detects xopen_source_extended incorrectly.
|
91
|
+
# Manually working around a false positive.
|
92
|
+
patch :source => 'ncurses-5.9-solaris-xopen_source_extended-detection.patch', :plevel => 0
|
93
|
+
end
|
94
|
+
|
95
|
+
if platform == "aix"
|
96
|
+
patch :source => 'patch-aix-configure', :plevel => 0
|
97
|
+
end
|
98
|
+
|
99
|
+
if platform == "mac_os_x"
|
100
|
+
# References:
|
101
|
+
# https://github.com/Homebrew/homebrew-dupes/issues/43
|
102
|
+
# http://invisible-island.net/ncurses/NEWS.html#t20110409
|
103
|
+
#
|
104
|
+
# Patches ncurses for clang compiler. Changes have been accepted into
|
105
|
+
# upstream, but occurred shortly after the 5.9 release. We should be able
|
106
|
+
# to remove this after upgrading to any release created after June 2012
|
107
|
+
patch :source => 'ncurses-clang.patch'
|
108
|
+
end
|
109
|
+
|
110
|
+
# build wide-character libraries
|
111
|
+
cmd_array = ["./configure",
|
112
|
+
"--prefix=#{install_dir}/embedded",
|
113
|
+
"--with-shared",
|
114
|
+
"--with-termlib",
|
115
|
+
"--without-debug",
|
116
|
+
"--without-normal", # AIX doesn't like building static libs
|
117
|
+
"--enable-overwrite",
|
118
|
+
"--enable-widec"]
|
119
|
+
|
120
|
+
cmd_array << "--with-libtool" if platform == 'aix'
|
121
|
+
command(cmd_array.join(" "),
|
122
|
+
:env => env)
|
123
|
+
command "make -j #{max_build_jobs}", :env => env
|
124
|
+
command "make -j #{max_build_jobs} install", :env => env
|
125
|
+
|
126
|
+
# build non-wide-character libraries
|
127
|
+
command "make distclean"
|
128
|
+
cmd_array = ["./configure",
|
129
|
+
"--prefix=#{install_dir}/embedded",
|
130
|
+
"--with-shared",
|
131
|
+
"--with-termlib",
|
132
|
+
"--without-debug",
|
133
|
+
"--without-normal",
|
134
|
+
"--enable-overwrite"]
|
135
|
+
cmd_array << "--with-libtool" if platform == 'aix'
|
136
|
+
command(cmd_array.join(" "),
|
137
|
+
:env => env)
|
138
|
+
command "make -j #{max_build_jobs}", :env => env
|
139
|
+
|
140
|
+
# installing the non-wide libraries will also install the non-wide
|
141
|
+
# binaries, which doesn't happen to be a problem since we don't
|
142
|
+
# utilize the ncurses binaries in private-chef (or oss chef)
|
143
|
+
command "make -j #{max_build_jobs} install", :env => env
|
144
|
+
|
145
|
+
# Ensure embedded ncurses wins in the LD search path
|
146
|
+
if platform == "smartos"
|
147
|
+
command "ln -sf #{install_dir}/embedded/lib/libcurses.so #{install_dir}/embedded/lib/libcurses.so.1"
|
148
|
+
end
|
149
|
+
end
|
@@ -0,0 +1,40 @@
|
|
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 "nginx"
|
19
|
+
default_version "1.4.4"
|
20
|
+
|
21
|
+
dependency "pcre"
|
22
|
+
dependency "openssl"
|
23
|
+
|
24
|
+
source :url => "http://nginx.org/download/nginx-#{version}.tar.gz",
|
25
|
+
:md5 => "5dfaba1cbeae9087f3949860a02caa9f"
|
26
|
+
|
27
|
+
relative_path "nginx-#{version}"
|
28
|
+
|
29
|
+
build do
|
30
|
+
command ["./configure",
|
31
|
+
"--prefix=#{install_dir}/embedded",
|
32
|
+
"--with-http_ssl_module",
|
33
|
+
"--with-http_stub_status_module",
|
34
|
+
"--with-ipv6",
|
35
|
+
"--with-debug",
|
36
|
+
"--with-ld-opt=-L#{install_dir}/embedded/lib",
|
37
|
+
"--with-cc-opt=\"-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include\""].join(" ")
|
38
|
+
command "make -j #{max_build_jobs}", :env => {"LD_RUN_PATH" => "#{install_dir}/embedded/lib"}
|
39
|
+
command "make install"
|
40
|
+
end
|
@@ -0,0 +1,44 @@
|
|
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 "nodejs"
|
19
|
+
default_version "0.10.10"
|
20
|
+
|
21
|
+
version "0.10.10" do
|
22
|
+
source :md5 => "a47a9141567dd591eec486db05b09e1c"
|
23
|
+
end
|
24
|
+
|
25
|
+
version "0.10.26" do
|
26
|
+
source :md5 => "15e9018dadc63a2046f61eb13dfd7bd6"
|
27
|
+
end
|
28
|
+
|
29
|
+
source :url => "http://nodejs.org/dist/v#{version}/node-v#{version}.tar.gz"
|
30
|
+
|
31
|
+
relative_path "node-v#{version}"
|
32
|
+
|
33
|
+
# Ensure we run with Python 2.6 on Redhats < 6
|
34
|
+
if Ohai['platform_family'] == "rhel" && Ohai['platform_version'].to_f < 6
|
35
|
+
python = 'python26'
|
36
|
+
else
|
37
|
+
python = 'python'
|
38
|
+
end
|
39
|
+
|
40
|
+
build do
|
41
|
+
command "#{python} ./configure --prefix=#{install_dir}/embedded"
|
42
|
+
command "make -j #{max_build_jobs}"
|
43
|
+
command "make install"
|
44
|
+
end
|
@@ -0,0 +1,55 @@
|
|
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 "nokogiri"
|
19
|
+
default_version "1.6.1"
|
20
|
+
|
21
|
+
if platform == 'windows'
|
22
|
+
dependency "ruby-windows"
|
23
|
+
dependency "ruby-windows-devkit"
|
24
|
+
else
|
25
|
+
dependency "ruby"
|
26
|
+
dependency "rubygems"
|
27
|
+
dependency "libxml2"
|
28
|
+
dependency "libxslt"
|
29
|
+
dependency "libiconv"
|
30
|
+
dependency "zlib"
|
31
|
+
end
|
32
|
+
|
33
|
+
# nokogiri uses pkg-config, and on a mac that will find the system pkg-config
|
34
|
+
# which will find the system pkg-configs which will pull in libicucore from the
|
35
|
+
# libxml2 pkg-config spec. override pkg-configs path here to point into our
|
36
|
+
# /opt/chef/embedded pkg-configs. this should probably be done more generally,
|
37
|
+
# in core ominbus-ruby.
|
38
|
+
env = {
|
39
|
+
"PKG_CONFIG_PATH" => "#{install_dir}/embedded/lib/pkgconfig",
|
40
|
+
"NOKOGIRI_USE_SYSTEM_LIBRARIES" => "true",
|
41
|
+
}
|
42
|
+
|
43
|
+
build do
|
44
|
+
gem ["install",
|
45
|
+
"nokogiri",
|
46
|
+
"-v #{version}",
|
47
|
+
"--",
|
48
|
+
"--use-system-libraries",
|
49
|
+
"--with-xml2-lib=#{install_dir}/embedded/lib",
|
50
|
+
"--with-xml2-include=#{install_dir}/embedded/include/libxml2",
|
51
|
+
"--with-xslt-lib=#{install_dir}/embedded/lib",
|
52
|
+
"--with-xslt-include=#{install_dir}/embedded/include/libxslt",
|
53
|
+
"--with-iconv-dir=#{install_dir}/embedded",
|
54
|
+
"--with-zlib-dir=#{install_dir}/embedded"].join(" "), :env => env
|
55
|
+
end
|
@@ -0,0 +1,61 @@
|
|
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 "nrpe"
|
19
|
+
default_version "2.13"
|
20
|
+
|
21
|
+
dependency "zlib"
|
22
|
+
dependency "openssl"
|
23
|
+
dependency "libwrap"
|
24
|
+
|
25
|
+
# tarball location comes from sourceforge download redirect
|
26
|
+
source :url => "http://downloads.sourceforge.net/project/nagios/nrpe-2.x/nrpe-2.13/nrpe-2.13.tar.gz",
|
27
|
+
:md5 => "e5176d9b258123ce9cf5872e33a77c1a"
|
28
|
+
|
29
|
+
relative_path "nrpe-2.13"
|
30
|
+
|
31
|
+
env = {
|
32
|
+
"LDFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
|
33
|
+
"CFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
|
34
|
+
"LD_RUN_PATH" => "#{install_dir}/embedded/lib",
|
35
|
+
"PATH" => "#{install_dir}/embedded/bin:#{ENV["PATH"]}"
|
36
|
+
}
|
37
|
+
|
38
|
+
build do
|
39
|
+
# TODO: OMG THIS IS HORRIBLE
|
40
|
+
command "sed -i 's:\\r::g' ./src/nrpe.c"
|
41
|
+
|
42
|
+
patch :source => "fix_for_runit.patch",
|
43
|
+
:target => "./src/nrpe.c"
|
44
|
+
|
45
|
+
# configure it
|
46
|
+
command(["./configure",
|
47
|
+
"--prefix=#{install_dir}/embedded",
|
48
|
+
"--with-ssl=#{install_dir}/embedded",
|
49
|
+
"--with-ssl-lib=#{install_dir}/embedded/lib",
|
50
|
+
"--with-ssl-inc=#{install_dir}/embedded/include"].join(" "),
|
51
|
+
:env => env)
|
52
|
+
|
53
|
+
# build it
|
54
|
+
command "make all", :env => {"LD_RUN_PATH" => "#{install_dir}/embedded/lib"}
|
55
|
+
|
56
|
+
# move it
|
57
|
+
command "mkdir -p #{install_dir}/embedded/nagios/libexec"
|
58
|
+
command "mkdir -p #{install_dir}/embedded/nagios/bin"
|
59
|
+
command "cp ./src/check_nrpe #{install_dir}/embedded/nagios/libexec"
|
60
|
+
command "sudo cp ./src/nrpe #{install_dir}/embedded/nagios/bin"
|
61
|
+
end
|
@@ -0,0 +1,64 @@
|
|
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 "ohai"
|
19
|
+
if platform == 'windows'
|
20
|
+
dependency "ruby-windows" #includes rubygems
|
21
|
+
dependency "ruby-windows-devkit"
|
22
|
+
else
|
23
|
+
dependency "ruby"
|
24
|
+
dependency "rubygems"
|
25
|
+
dependency "yajl"
|
26
|
+
end
|
27
|
+
|
28
|
+
dependency "bundler"
|
29
|
+
|
30
|
+
default_version "master"
|
31
|
+
|
32
|
+
source :git => "git://github.com/opscode/ohai"
|
33
|
+
|
34
|
+
relative_path "ohai"
|
35
|
+
|
36
|
+
env =
|
37
|
+
case platform
|
38
|
+
when "solaris2"
|
39
|
+
{
|
40
|
+
"CFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
|
41
|
+
"LDFLAGS" => "-R#{install_dir}/embedded/lib -L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include"
|
42
|
+
}
|
43
|
+
when "aix"
|
44
|
+
{
|
45
|
+
"LDFLAGS" => "-Wl,-blibpath:#{install_dir}/embedded/lib:/usr/lib:/lib -L#{install_dir}/embedded/lib",
|
46
|
+
"CFLAGS" => "-I#{install_dir}/embedded/include"
|
47
|
+
}
|
48
|
+
else
|
49
|
+
{
|
50
|
+
"CFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
|
51
|
+
"LDFLAGS" => "-Wl,-rpath #{install_dir}/embedded/lib -L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include"
|
52
|
+
}
|
53
|
+
end
|
54
|
+
|
55
|
+
build do
|
56
|
+
|
57
|
+
# install chef first so that ohai gets installed into /opt/chef/bin/ohai
|
58
|
+
rake "gem", :env => env.merge({"PATH" => "#{install_dir}/embedded/bin:#{ENV['PATH']}"})
|
59
|
+
|
60
|
+
gem ["install pkg/ohai*.gem",
|
61
|
+
"-n #{install_dir}/bin",
|
62
|
+
"--no-rdoc --no-ri"].join(" "), :env => env.merge({"PATH" => "#{install_dir}/embedded/bin:#{ENV['PATH']}"})
|
63
|
+
|
64
|
+
end
|
@@ -0,0 +1,34 @@
|
|
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 "omnibus-ctl"
|
19
|
+
default_version "0.0.7"
|
20
|
+
|
21
|
+
dependency "ruby"
|
22
|
+
dependency "rubygems"
|
23
|
+
dependency "bundler"
|
24
|
+
|
25
|
+
source :git => "git://github.com/opscode/omnibus-ctl.git"
|
26
|
+
|
27
|
+
relative_path "omnibus-ctl"
|
28
|
+
|
29
|
+
build do
|
30
|
+
gem "build omnibus-ctl.gemspec"
|
31
|
+
gem "install omnibus-ctl-#{version}.gem"
|
32
|
+
command "mkdir -p #{install_dir}/embedded/service/omnibus-ctl"
|
33
|
+
command "touch #{install_dir}/embedded/service/omnibus-ctl/.gitkeep"
|
34
|
+
end
|