omnibus 3.0.0 → 3.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (246) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +17 -1
  3. data/.travis.yml +11 -3
  4. data/CHANGELOG.md +39 -1
  5. data/Gemfile +0 -4
  6. data/README.md +10 -8
  7. data/Rakefile +18 -7
  8. data/bin/omnibus +3 -3
  9. data/docs/Building on Windows.md +98 -0
  10. data/features/commands/_deprecated.feature +46 -0
  11. data/features/commands/build.feature +9 -0
  12. data/features/commands/clean.feature +21 -0
  13. data/features/commands/list.feature +16 -0
  14. data/features/commands/new.feature +8 -0
  15. data/features/commands/version.feature +12 -0
  16. data/features/step_definitions/generator_steps.rb +28 -0
  17. data/features/support/env.rb +13 -0
  18. data/lib/omnibus.rb +319 -240
  19. data/lib/omnibus/artifact.rb +16 -0
  20. data/lib/omnibus/build_version.rb +39 -20
  21. data/lib/omnibus/build_version_dsl.rb +136 -0
  22. data/lib/omnibus/builder.rb +28 -23
  23. data/lib/omnibus/cleaner.rb +72 -0
  24. data/lib/omnibus/cli.rb +115 -11
  25. data/lib/omnibus/cli/base.rb +82 -81
  26. data/lib/omnibus/cli/cache.rb +80 -32
  27. data/lib/omnibus/cli/deprecated.rb +79 -0
  28. data/lib/omnibus/cli/release.rb +17 -21
  29. data/lib/omnibus/config.rb +38 -13
  30. data/lib/omnibus/exceptions.rb +70 -18
  31. data/lib/omnibus/fetcher.rb +18 -11
  32. data/lib/omnibus/fetchers/git_fetcher.rb +48 -53
  33. data/lib/omnibus/fetchers/net_fetcher.rb +29 -27
  34. data/lib/omnibus/fetchers/path_fetcher.rb +9 -12
  35. data/lib/omnibus/fetchers/s3_cache_fetcher.rb +5 -8
  36. data/lib/omnibus/generator.rb +131 -0
  37. data/lib/omnibus/{templates → generator_files}/.kitchen.local.yml.erb +0 -0
  38. data/lib/omnibus/{templates → generator_files}/.kitchen.yml.erb +0 -0
  39. data/lib/omnibus/{templates → generator_files}/Berksfile.erb +0 -0
  40. data/lib/omnibus/{templates → generator_files}/Gemfile.erb +2 -2
  41. data/lib/omnibus/{templates → generator_files}/README.md.erb +6 -7
  42. data/lib/omnibus/{templates → generator_files}/Vagrantfile.erb +0 -0
  43. data/lib/omnibus/{templates → generator_files}/gitignore.erb +0 -0
  44. data/lib/omnibus/{templates → generator_files}/mac_dmg/background.png +0 -0
  45. data/lib/omnibus/{templates → generator_files}/mac_dmg/icon.png +0 -0
  46. data/lib/omnibus/{templates → generator_files}/mac_pkg/background.png +0 -0
  47. data/lib/omnibus/{templates → generator_files}/mac_pkg/license.html.erb +0 -0
  48. data/lib/omnibus/{templates → generator_files}/mac_pkg/welcome.html.erb +0 -0
  49. data/lib/omnibus/{templates → generator_files}/omnibus.rb.example.erb +0 -0
  50. data/lib/omnibus/{templates → generator_files}/package_scripts/makeselfinst.erb +0 -0
  51. data/lib/omnibus/{templates → generator_files}/package_scripts/postinst.erb +0 -0
  52. data/lib/omnibus/{templates → generator_files}/package_scripts/postrm.erb +0 -0
  53. data/lib/omnibus/{templates → generator_files}/package_scripts/preinst.erb +0 -0
  54. data/lib/omnibus/{templates → generator_files}/package_scripts/prerm.erb +0 -0
  55. data/lib/omnibus/{templates → generator_files}/project.rb.erb +0 -1
  56. data/lib/omnibus/{templates → generator_files}/software/c-example.rb.erb +0 -0
  57. data/lib/omnibus/{templates → generator_files}/software/erlang-example.rb.erb +0 -0
  58. data/lib/omnibus/{templates → generator_files}/software/ruby-example.rb.erb +0 -0
  59. data/lib/omnibus/generator_files/windows_msi/assets/LICENSE.rtf +8 -0
  60. data/lib/omnibus/generator_files/windows_msi/assets/banner_background.bmp +0 -0
  61. data/lib/omnibus/generator_files/windows_msi/assets/dialog_background.bmp +0 -0
  62. data/lib/omnibus/generator_files/windows_msi/assets/project.ico +0 -0
  63. data/lib/omnibus/generator_files/windows_msi/assets/project_16x16.ico +0 -0
  64. data/lib/omnibus/generator_files/windows_msi/assets/project_32x32.ico +0 -0
  65. data/lib/omnibus/generator_files/windows_msi/localization-en-us.wxl.erb +20 -0
  66. data/lib/omnibus/generator_files/windows_msi/parameters.wxi.erb +9 -0
  67. data/lib/omnibus/generator_files/windows_msi/source.wxs.erb +74 -0
  68. data/lib/omnibus/health_check.rb +80 -40
  69. data/lib/omnibus/install_path_cache.rb +11 -12
  70. data/lib/omnibus/library.rb +30 -3
  71. data/lib/omnibus/logger.rb +47 -0
  72. data/lib/omnibus/logging.rb +60 -0
  73. data/lib/omnibus/null_builder.rb +23 -0
  74. data/lib/omnibus/ohai.rb +70 -0
  75. data/lib/omnibus/overrides.rb +69 -48
  76. data/lib/omnibus/package_release.rb +7 -14
  77. data/lib/omnibus/packagers/base.rb +66 -13
  78. data/lib/omnibus/packagers/mac_dmg.rb +23 -3
  79. data/lib/omnibus/packagers/mac_pkg.rb +20 -10
  80. data/lib/omnibus/packagers/windows_msi.rb +109 -0
  81. data/lib/omnibus/project.rb +136 -79
  82. data/lib/omnibus/reports.rb +1 -2
  83. data/lib/omnibus/{s3_cacher.rb → s3_cache.rb} +15 -37
  84. data/lib/omnibus/software.rb +77 -27
  85. data/lib/omnibus/software_s3_urls.rb +50 -0
  86. data/lib/omnibus/sugar.rb +1 -3
  87. data/lib/omnibus/util.rb +45 -18
  88. data/lib/omnibus/version.rb +2 -3
  89. data/omnibus.gemspec +5 -3
  90. data/spec/data/complicated/config/patches/bzip2/makefile_take_env_vars.patch +15 -0
  91. data/spec/data/complicated/config/patches/couchdb/patch_for_couchjs_stack.patch +19 -0
  92. data/spec/data/complicated/config/patches/gd/gd-2.0.33-configure-libpng.patch +100 -0
  93. data/spec/data/complicated/config/patches/keepalived/keepalived-1.2.9_opscode_centos_5.patch +15 -0
  94. data/spec/data/complicated/config/patches/libedit/freebsd-vi-fix.patch +24 -0
  95. data/spec/data/complicated/config/patches/libiconv/libiconv-1.14_srclib_stdio.in.h-remove-gets-declarations.patch +29 -0
  96. data/spec/data/complicated/config/patches/libwrap/tcp_wrappers-7.6-makefile-dest-fix.patch +35 -0
  97. data/spec/data/complicated/config/patches/libwrap/tcp_wrappers-7.6-malloc-fix.patch +13 -0
  98. data/spec/data/complicated/config/patches/libwrap/tcp_wrappers-7.6-shared_lib_plus_plus-1.patch +1035 -0
  99. data/spec/data/complicated/config/patches/logrotate/logrotate_basedir_override.patch +12 -0
  100. data/spec/data/complicated/config/patches/ncurses/ncurses-5.9-solaris-xopen_source_extended-detection.patch +11 -0
  101. data/spec/data/complicated/config/patches/ncurses/ncurses-clang.patch +42 -0
  102. data/spec/data/complicated/config/patches/ncurses/patch-aa +23 -0
  103. data/spec/data/complicated/config/patches/ncurses/patch-ab +44 -0
  104. data/spec/data/complicated/config/patches/ncurses/patch-ac +40 -0
  105. data/spec/data/complicated/config/patches/ncurses/patch-ad +12 -0
  106. data/spec/data/complicated/config/patches/ncurses/patch-aix-configure +23 -0
  107. data/spec/data/complicated/config/patches/ncurses/patch-cxx_cursesf.h +22 -0
  108. data/spec/data/complicated/config/patches/ncurses/patch-cxx_cursesm.h +22 -0
  109. data/spec/data/complicated/config/patches/nrpe/fix_for_runit.patch +64 -0
  110. data/spec/data/complicated/config/patches/openssl/openssl-1.0.1f-do-not-build-docs.patch +101 -0
  111. data/spec/data/complicated/config/patches/postgresql/postgresql-9.1.2-configure-ncurses-fix.patch +12 -0
  112. data/spec/data/complicated/config/patches/ruby/patch-configure +103 -0
  113. data/spec/data/complicated/config/patches/ruby/ruby-aix-configure.patch +10 -0
  114. data/spec/data/complicated/config/patches/ruby/ruby-openssl-1.0.1c.patch +42 -0
  115. data/spec/data/complicated/config/patches/ruby/ruby_aix_1_9_3_448_ssl_EAGAIN.patch +57 -0
  116. data/spec/data/complicated/config/patches/ruby/rvm-cflags.patch +27 -0
  117. data/spec/data/complicated/config/projects/angrychef.rb +32 -0
  118. data/spec/data/complicated/config/projects/chef-windows.rb +32 -0
  119. data/spec/data/complicated/config/projects/chef.rb +32 -0
  120. data/spec/data/complicated/config/projects/chefdk-windows.rb +41 -0
  121. data/spec/data/complicated/config/projects/chefdk.rb +44 -0
  122. data/spec/data/complicated/config/software/appbundler.rb +25 -0
  123. data/spec/data/complicated/config/software/autoconf.rb +35 -0
  124. data/spec/data/complicated/config/software/automake.rb +39 -0
  125. data/spec/data/complicated/config/software/berkshelf.rb +44 -0
  126. data/{lib/omnibus/fetchers.rb → spec/data/complicated/config/software/bundler.rb} +8 -5
  127. data/spec/data/complicated/config/software/bzip2.rb +46 -0
  128. data/spec/data/complicated/config/software/cacerts.rb +44 -0
  129. data/spec/data/complicated/config/software/chef-client-msi.rb +88 -0
  130. data/spec/data/complicated/config/software/chef-gem.rb +26 -0
  131. data/spec/data/complicated/config/software/chef-vault.rb +43 -0
  132. data/spec/data/complicated/config/software/chef-windows.rb +158 -0
  133. data/spec/data/complicated/config/software/chef.rb +170 -0
  134. data/spec/data/complicated/config/software/chefdk.rb +103 -0
  135. data/spec/data/complicated/config/software/couchdb.rb +53 -0
  136. data/spec/data/complicated/config/software/curl.rb +48 -0
  137. data/spec/data/complicated/config/software/erlang.rb +65 -0
  138. data/spec/data/complicated/config/software/expat.rb +21 -0
  139. data/spec/data/complicated/config/software/fcgi.rb +56 -0
  140. data/spec/data/complicated/config/software/fcgiwrap.rb +41 -0
  141. data/spec/data/complicated/config/software/gd.rb +56 -0
  142. data/spec/data/complicated/config/software/gdbm.rb +40 -0
  143. data/spec/data/complicated/config/software/gecode.rb +48 -0
  144. data/spec/data/complicated/config/software/git.rb +40 -0
  145. data/spec/data/complicated/config/software/help2man.rb +30 -0
  146. data/spec/data/complicated/config/software/icu.rb +40 -0
  147. data/spec/data/complicated/config/software/jre.rb +48 -0
  148. data/spec/data/complicated/config/software/keepalived.rb +43 -0
  149. data/spec/data/complicated/config/software/libarchive.rb +50 -0
  150. data/spec/data/complicated/config/software/libedit.rb +69 -0
  151. data/spec/data/complicated/config/software/libffi.rb +71 -0
  152. data/spec/data/complicated/config/software/libgcc.rb +39 -0
  153. data/spec/data/complicated/config/software/libiconv.rb +66 -0
  154. data/spec/data/complicated/config/software/libjpeg.rb +39 -0
  155. data/spec/data/complicated/config/software/libpng.rb +38 -0
  156. data/spec/data/complicated/config/software/libtool.rb +52 -0
  157. data/spec/data/complicated/config/software/libwrap.rb +50 -0
  158. data/spec/data/complicated/config/software/libxml2.rb +51 -0
  159. data/spec/data/complicated/config/software/libxslt.rb +52 -0
  160. data/spec/data/complicated/config/software/libyaml-windows.rb +43 -0
  161. data/spec/data/complicated/config/software/libyaml.rb +62 -0
  162. data/spec/data/complicated/config/software/logrotate.rb +41 -0
  163. data/spec/data/complicated/config/software/makedepend.rb +73 -0
  164. data/spec/data/complicated/config/software/mysql2.rb +42 -0
  165. data/spec/data/complicated/config/software/nagios-plugins.rb +53 -0
  166. data/spec/data/complicated/config/software/nagios.rb +66 -0
  167. data/spec/data/complicated/config/software/ncurses.rb +149 -0
  168. data/spec/data/complicated/config/software/nginx.rb +40 -0
  169. data/spec/data/complicated/config/software/nodejs.rb +44 -0
  170. data/spec/data/complicated/config/software/nokogiri.rb +55 -0
  171. data/spec/data/complicated/config/software/nrpe.rb +61 -0
  172. data/spec/data/complicated/config/software/ohai.rb +64 -0
  173. data/spec/data/complicated/config/software/omnibus-ctl.rb +34 -0
  174. data/spec/data/complicated/config/software/openresty.rb +67 -0
  175. data/spec/data/complicated/config/software/openssl.rb +158 -0
  176. data/spec/data/complicated/config/software/pcre.rb +42 -0
  177. data/spec/data/complicated/config/software/perl-extutils-embed.rb +15 -0
  178. data/spec/data/complicated/config/software/perl-extutils-makemaker.rb +15 -0
  179. data/spec/data/complicated/config/software/perl.rb +48 -0
  180. data/spec/data/complicated/config/software/perl_pg_driver.rb +12 -0
  181. data/spec/data/complicated/config/software/php.rb +41 -0
  182. data/spec/data/complicated/config/software/pip.rb +30 -0
  183. data/spec/data/complicated/config/software/pkg-config.rb +66 -0
  184. data/spec/data/complicated/config/software/popt.rb +47 -0
  185. data/spec/data/complicated/config/software/postgresql.rb +51 -0
  186. data/spec/data/complicated/config/software/preparation.rb +30 -0
  187. data/spec/data/complicated/config/software/pygments.rb +25 -0
  188. data/spec/data/complicated/config/software/python.rb +49 -0
  189. data/spec/data/complicated/config/software/rabbitmq.rb +36 -0
  190. data/spec/data/complicated/config/software/rebar.rb +36 -0
  191. data/spec/data/complicated/config/software/redis.rb +33 -0
  192. data/spec/data/complicated/config/software/rsync.rb +48 -0
  193. data/spec/data/complicated/config/software/ruby-windows-devkit.rb +30 -0
  194. data/spec/data/complicated/config/software/ruby-windows.rb +30 -0
  195. data/spec/data/complicated/config/software/ruby.rb +162 -0
  196. data/spec/data/complicated/config/software/rubygems-customization.rb +57 -0
  197. data/spec/data/complicated/config/software/rubygems.rb +37 -0
  198. data/spec/data/complicated/config/software/runit.rb +118 -0
  199. data/spec/data/complicated/config/software/server-jre.rb +46 -0
  200. data/spec/data/complicated/config/software/setuptools.rb +30 -0
  201. data/spec/data/complicated/config/software/spawn-fcgi.rb +40 -0
  202. data/spec/data/complicated/config/software/sphinx.rb +26 -0
  203. data/spec/data/complicated/config/software/spidermonkey.rb +60 -0
  204. data/spec/data/complicated/config/software/sqitch.rb +24 -0
  205. data/spec/data/complicated/config/software/test-kitchen.rb +39 -0
  206. data/spec/data/complicated/config/software/unicorn.rb +27 -0
  207. data/spec/data/complicated/config/software/util-macros.rb +46 -0
  208. data/spec/data/complicated/config/software/version-manifest.rb +32 -0
  209. data/spec/data/complicated/config/software/xproto.rb +46 -0
  210. data/spec/data/complicated/config/software/yajl.rb +30 -0
  211. data/spec/data/complicated/config/software/zlib.rb +67 -0
  212. data/spec/data/projects/chefdk.rb +4 -4
  213. data/spec/data/projects/sample.rb +3 -0
  214. data/spec/data/software/erchef.rb +1 -1
  215. data/spec/fixtures/sample/files/windows_msi/Resources/assets/LICENSE.rtf +8 -0
  216. data/spec/fixtures/sample/files/windows_msi/Resources/assets/banner_background.bmp +0 -0
  217. data/spec/fixtures/sample/files/windows_msi/Resources/assets/dialog_background.bmp +0 -0
  218. data/spec/fixtures/sample/files/windows_msi/Resources/assets/project.ico +0 -0
  219. data/spec/fixtures/sample/files/windows_msi/Resources/assets/project_16x16.ico +0 -0
  220. data/spec/fixtures/sample/files/windows_msi/Resources/assets/project_32x32.ico +0 -0
  221. data/spec/fixtures/sample/files/windows_msi/Resources/localization-en-us.wxl +20 -0
  222. data/spec/fixtures/sample/files/windows_msi/Resources/parameters.wxi.erb +9 -0
  223. data/spec/fixtures/sample/files/windows_msi/Resources/source.wxs +74 -0
  224. data/spec/functional/packagers/mac_spec.rb +3 -20
  225. data/spec/functional/packagers/windows_spec.rb +69 -0
  226. data/spec/spec_helper.rb +79 -1
  227. data/spec/unit/artifact_spec.rb +0 -18
  228. data/spec/unit/build_version_dsl_spec.rb +136 -0
  229. data/spec/unit/build_version_spec.rb +185 -198
  230. data/spec/unit/config_spec.rb +18 -1
  231. data/spec/unit/fetchers/git_fetcher_spec.rb +55 -80
  232. data/spec/unit/fetchers/net_fetcher_spec.rb +11 -21
  233. data/spec/unit/install_path_cache_spec.rb +164 -136
  234. data/spec/unit/library_spec.rb +125 -5
  235. data/spec/unit/omnibus_spec.rb +25 -9
  236. data/spec/unit/overrides_spec.rb +2 -14
  237. data/spec/unit/package_release_spec.rb +0 -18
  238. data/spec/unit/packagers/base_spec.rb +84 -21
  239. data/spec/unit/packagers/mac_pkg_spec.rb +34 -24
  240. data/spec/unit/project_spec.rb +100 -102
  241. data/spec/unit/s3_cacher_spec.rb +0 -18
  242. data/spec/unit/software_spec.rb +152 -6
  243. data/spec/{sugar_spec.rb → unit/sugar_spec.rb} +0 -3
  244. metadata +365 -38
  245. data/lib/omnibus/cli/application.rb +0 -147
  246. data/lib/omnibus/cli/build.rb +0 -64
@@ -0,0 +1,35 @@
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 "autoconf"
19
+ default_version "2.68"
20
+
21
+ source :url => "http://ftp.gnu.org/gnu/autoconf/autoconf-2.68.tar.gz",
22
+ :md5 => "c3b5247592ce694f7097873aa07d66fe"
23
+
24
+ relative_path "autoconf-2.68"
25
+
26
+ env = {
27
+ "LDFLAGS" => "-R#{install_dir}/embedded/lib -L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
28
+ "CFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include"
29
+ }
30
+
31
+ build do
32
+ command "./configure --prefix=#{install_dir}/embedded", :env => env
33
+ command "make -j #{max_build_jobs}"
34
+ command "make install"
35
+ end
@@ -0,0 +1,39 @@
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 "automake"
19
+ default_version "1.11.2"
20
+
21
+ dependency "autoconf"
22
+
23
+ source :url => "http://ftp.gnu.org/gnu/automake/automake-1.11.2.tar.gz",
24
+ :md5 => "79ad64a9f6e83ea98d6964cef8d8a0bc"
25
+
26
+ relative_path "automake-1.11.2"
27
+
28
+ configure_env = {
29
+ "LDFLAGS" => "-R#{install_dir}/embedded/lib -L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
30
+ "CFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include",
31
+ "PATH" => "#{install_dir}/embedded/bin:#{ENV['PATH']}"
32
+ }
33
+
34
+ build do
35
+ command "./bootstrap", :env => {"PATH" => "#{install_dir}/embedded/bin:#{ENV['PATH']}"}
36
+ command "./configure --prefix=#{install_dir}/embedded", :env => configure_env
37
+ command "make -j #{max_build_jobs}"
38
+ command "make install"
39
+ end
@@ -0,0 +1,44 @@
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 "berkshelf"
19
+ default_version "master"
20
+ always_build true
21
+
22
+ source :git => "git://github.com/berkshelf/berkshelf"
23
+
24
+ relative_path "berkshelf"
25
+
26
+ if platform == 'windows'
27
+ dependency "ruby-windows"
28
+ dependency "ruby-windows-devkit"
29
+ else
30
+ dependency "libffi"
31
+ dependency "ruby"
32
+ dependency "rubygems"
33
+ dependency "libarchive"
34
+ end
35
+ dependency "nokogiri"
36
+
37
+ dependency "bundler"
38
+
39
+ build do
40
+ bundle "install --without guard", :env => {"PATH" => "#{install_dir}/embedded/bin:#{ENV['PATH']}"}
41
+ bundle "exec thor gem:build", :env => {"PATH" => "#{install_dir}/embedded/bin:#{ENV['PATH']}"}
42
+ gem ["install pkg/berkshelf-*.gem",
43
+ "--no-rdoc --no-ri"].join(" "), :env => {"PATH" => "#{install_dir}/embedded/bin:#{ENV['PATH']}"}
44
+ end
@@ -15,8 +15,11 @@
15
15
  # limitations under the License.
16
16
  #
17
17
 
18
- require 'omnibus/fetcher'
19
- require 'omnibus/fetchers/net_fetcher'
20
- require 'omnibus/fetchers/git_fetcher'
21
- require 'omnibus/fetchers/path_fetcher'
22
- require 'omnibus/fetchers/s3_cache_fetcher'
18
+ name "bundler"
19
+ default_version "1.5.3"
20
+
21
+ dependency "rubygems" unless platform == 'windows'
22
+
23
+ build do
24
+ gem "install bundler --no-rdoc --no-ri -v '#{version}'"
25
+ end
@@ -0,0 +1,46 @@
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
+ # Install bzip2 and its shared library, libbz2.so
18
+ # This library object is required for building Python with the bz2 module,
19
+ # and should be picked up automatically when building Python.
20
+
21
+ name "bzip2"
22
+ default_version "1.0.6"
23
+
24
+ dependency "zlib"
25
+ dependency "openssl"
26
+
27
+ source :url => "http://www.bzip.org/#{version}/#{name}-#{version}.tar.gz",
28
+ :md5 => "00b516f4704d4a7cb50a1d97e6e8e15b"
29
+
30
+ relative_path "#{name}-#{version}"
31
+
32
+ prefix="#{install_dir}/embedded"
33
+ libdir="#{prefix}/lib"
34
+
35
+ env = {
36
+ "LDFLAGS" => "-L#{libdir} -I#{prefix}/include",
37
+ "CFLAGS" => "-L#{libdir} -I#{prefix}/include -fPIC",
38
+ "LD_RUN_PATH" => libdir
39
+ }
40
+
41
+ build do
42
+ patch :source => 'makefile_take_env_vars.patch'
43
+ command "make PREFIX=#{prefix} VERSION=#{version}", :env => env
44
+ command "make PREFIX=#{prefix} VERSION=#{version} -f Makefile-libbz2_so", :env => env
45
+ command "make install VERSION=#{version} PREFIX=#{prefix}", :env => env
46
+ end
@@ -0,0 +1,44 @@
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 "cacerts"
19
+ default_version "2014.04.22" # date of the file is in a comment at the start, or in the changelog
20
+
21
+ source :url => "http://curl.haxx.se/ca/cacert.pem",
22
+ :md5 => "9f92a0d9f605e227ae068e605f4c86fa"
23
+
24
+ relative_path "cacerts-#{version}"
25
+
26
+ build do
27
+ block do
28
+ FileUtils.mkdir_p(File.expand_path("embedded/ssl/certs", install_dir))
29
+
30
+ # There is a bug in omnibus-ruby that may or may not have been fixed. Since the source url
31
+ # does not point to an archive, omnibus-ruby tries to copy cacert.pem into the project working
32
+ # directory. However, it fails and copies to '/var/cache/omnibus/src/cacerts-2012.12.19\' instead
33
+ # There is supposed to be a fix in omnibus-ruby, but under further testing, it was unsure if the
34
+ # fix worked. Rather than trying to fix this now, we're filing a bug and copying the cacert.pem
35
+ # directly from the cache instead.
36
+
37
+ FileUtils.cp(File.expand_path("cacert.pem", Omnibus.config.cache_dir),
38
+ File.expand_path("embedded/ssl/certs/cacert.pem", install_dir))
39
+ end
40
+
41
+ unless platform == 'windows'
42
+ command "ln -sf #{install_dir}/embedded/ssl/certs/cacert.pem #{install_dir}/embedded/ssl/cert.pem"
43
+ end
44
+ end
@@ -0,0 +1,88 @@
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 "chef-client-msi"
19
+
20
+ source :path => File.expand_path("files/msi", Omnibus.project_root)
21
+
22
+ build do
23
+ # harvest with heat.exe
24
+ # recursively generate fragment for chef-client directory
25
+ block do
26
+ src_dir = self.project_dir
27
+
28
+ shell = Mixlib::ShellOut.new("heat.exe dir \"#{install_dir}\" -nologo -srd -gg -cg ChefClientDir -dr CHEFLOCATION -var var.ChefClientSourceDir -out chef-client-Files.wxs", :cwd => src_dir)
29
+ shell.run_command
30
+ shell.error!
31
+ end
32
+
33
+ # Prepare the include file which contains the version numbers
34
+ block do
35
+ require 'erb'
36
+
37
+ File.open("#{project_dir}\\templates\\chef-client-Config.wxi.erb") { |file|
38
+ # build_version looks something like this:
39
+ # dev builds => 0.10.8-299-g360818f
40
+ # rel builds => 0.10.8-299
41
+ versions = build_version.split("-").first.split(".")
42
+ @major_version = versions[0]
43
+ @minor_version = versions[1]
44
+ @micro_version = versions[2]
45
+ @build_version = build_version.split("-")[1] || self.project.build_iteration
46
+
47
+ # Find path in which chef gem is installed to.
48
+ # Note that install_dir is something like: c:\\opscode\\chef
49
+ chef_path_regex = "#{install_dir.gsub(File::ALT_SEPARATOR, File::SEPARATOR)}/**/gems/chef-[0-9]*"
50
+ chef_gem_paths = Dir[chef_path_regex].select{ |path| File.directory?(path) }
51
+ raise "Expected one but found #{chef_gem_paths.length} installation directories for chef gem using: #{chef_path_regex}. Found paths: #{chef_gem_paths.inspect}." unless chef_gem_paths.length == 1
52
+ @chef_gem_path = chef_gem_paths.first
53
+
54
+ # Convert the chef gem path to a relative path based on install_dir
55
+ # We are going to use this path in the startup command of chef
56
+ # service. So we need to change file seperators to make windows
57
+ # happy.
58
+ @chef_gem_path.gsub!(File::SEPARATOR, File::ALT_SEPARATOR)
59
+ @chef_gem_path.slice!(install_dir.gsub(File::SEPARATOR, File::ALT_SEPARATOR) + File::ALT_SEPARATOR)
60
+
61
+ @guid = "D607A85C-BDFA-4F08-83ED-2ECB4DCD6BC5"
62
+
63
+ erb = ERB.new(file.read)
64
+ File.open("#{project_dir}\\ChefClient-Config.wxi", "w") { |out|
65
+ out.write(erb.result(binding))
66
+ }
67
+ }
68
+ end
69
+
70
+ # Create temporary directory to store the files required for msi
71
+ # packaging.
72
+ command "IF exist #{install_dir}\\msi-tmp (echo msi-tmp is found on the system) ELSE (mkdir #{install_dir}\\msi-tmp && echo msi-tmp directory is created.) "
73
+
74
+ # Copy the localization file into the temporary file directory for packaging
75
+ command "xcopy chef-client-en-us.wxl #{install_dir}\\msi-tmp /Y", :cwd => source[:path]
76
+
77
+ # Copy the asset files into the temporary file directory for packaging
78
+ command "xcopy assets #{install_dir}\\msi-tmp\\assets /I /Y", :cwd => source[:path]
79
+
80
+ # compile with candle.exe
81
+ block do
82
+ src_dir = self.project_dir
83
+
84
+ shell = Mixlib::ShellOut.new("candle.exe -nologo -out #{install_dir}\\msi-tmp\\ -dChefClientSourceDir=\"#{install_dir}\" chef-client-Files.wxs chef-client.wxs", :cwd => src_dir)
85
+ shell.run_command
86
+ shell.error!
87
+ end
88
+ end
@@ -0,0 +1,26 @@
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-gem"
19
+ default_version "11.12.2"
20
+
21
+ dependency "ruby"
22
+ dependency "rubygems"
23
+
24
+ build do
25
+ gem "install chef -n #{install_dir}/embedded/bin --no-rdoc --no-ri -v #{version}"
26
+ end
@@ -0,0 +1,43 @@
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-vault'
19
+ default_version 'v2.2.1'
20
+
21
+ source :git => 'git://github.com/Nordstrom/chef-vault.git'
22
+
23
+ relative_path 'chef-vault'
24
+
25
+ if platform == 'windows'
26
+ dependency 'ruby-windows'
27
+ dependency 'ruby-windows-devkit'
28
+ dependency 'chef-windows'
29
+ else
30
+ dependency 'ruby'
31
+ dependency 'rubygems'
32
+ dependency 'chef'
33
+ end
34
+
35
+
36
+ build_env = {'PATH' => "#{install_dir}/embedded/bin:#{ENV['PATH']}"}
37
+
38
+ build do
39
+ bundle 'install --no-cache', :env => build_env
40
+ gem 'build chef-vault.gemspec', :env => build_env
41
+ gem ['install chef-vault-*.gem',
42
+ '--no-rdoc --no-ri'].join(' '), :env => build_env
43
+ end
@@ -0,0 +1,158 @@
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 "chef-windows"
19
+
20
+ dependency "ruby-windows" #includes rubygems
21
+ dependency "libyaml-windows"
22
+ dependency "ruby-windows-devkit"
23
+ dependency "bundler"
24
+ dependency "cacerts"
25
+
26
+ default_version "master"
27
+
28
+ source :git => "git://github.com/opscode/chef"
29
+
30
+ relative_path "chef"
31
+
32
+ build do
33
+ #####################################################################
34
+ #
35
+ # nasty nasty nasty hack for setting artifact version
36
+ #
37
+ #####################################################################
38
+ #
39
+ # since omnibus-ruby is not architected to intentionally let the
40
+ # software definitions define the #build_version and
41
+ # #build_iteration of the package artifact, we're going to implement
42
+ # a temporary hack here that lets us do so. this type of use case
43
+ # will become a feature of omnibus-ruby in the future, but in order
44
+ # to get things shipped, we'll hack it up here.
45
+ #
46
+ # <3 Stephen
47
+ #
48
+ #####################################################################
49
+ block do
50
+ project = self.project
51
+ if project.name == "chef-windows"
52
+ git_cmd = "git describe --tags"
53
+ src_dir = self.project_dir
54
+ shell = Mixlib::ShellOut.new(git_cmd,
55
+ :cwd => src_dir)
56
+ shell.run_command
57
+ shell.error!
58
+ build_version = shell.stdout.chomp
59
+
60
+ project.build_version build_version
61
+ project.build_iteration ENV["CHEF_PACKAGE_ITERATION"].to_i || 1
62
+ end
63
+ end
64
+
65
+ # COMPAT HACK :( - Chef 11 finally has the core Chef code in the root of the
66
+ # project repo. Since the Chef Client pipeline needs to build/test Chef 10.x
67
+ # and 11 releases our software definition need to handle both cases
68
+ # gracefully.
69
+ block do
70
+ build_commands = self.builder.build_commands
71
+ chef_root = File.join(self.project_dir, "chef")
72
+ if File.exists?(chef_root)
73
+ build_commands.each_index do |i|
74
+ cmd = build_commands[i].dup
75
+ if cmd.is_a? Array
76
+ if cmd.last.is_a? Hash
77
+ cmd_opts = cmd.pop.dup
78
+ cmd_opts[:cwd] = chef_root
79
+ cmd << cmd_opts
80
+ else
81
+ cmd << {:cwd => chef_root}
82
+ end
83
+ build_commands[i] = cmd
84
+ end
85
+ end
86
+ end
87
+ end
88
+
89
+ # Normally we would symlink the required unix tools.
90
+ # However with the introduction of git-cache to speed up omnibus builds,
91
+ # we can't do that anymore since git on windows doesn't support symlinks.
92
+ # https://groups.google.com/forum/#!topic/msysgit/arTTH5GmHRk
93
+ # Therefore we copy the tools to the necessary places.
94
+ # We need tar for 'knife cookbook site install' to function correctly
95
+ {"tar.exe" => "bsdtar.exe",
96
+ "libarchive-2.dll" => "libarchive-2.dll",
97
+ "libexpat-1.dll" => "libexpat-1.dll",
98
+ "liblzma-1.dll" => "liblzma-1.dll",
99
+ "libbz2-2.dll" => "libbz2-2.dll",
100
+ "libz-1.dll" => "libz-1.dll"
101
+ }.each do |target, to|
102
+ source = File.expand_path(File.join(install_dir, "embedded", "mingw", "bin", to)).gsub(/\//, "\\")
103
+ target = File.expand_path(File.join(install_dir, "bin", target)).gsub(/\//, "\\")
104
+ command "cp #{source} #{target}"
105
+ end
106
+
107
+ rake "gem"
108
+
109
+ gem ["install pkg/chef*mingw32.gem",
110
+ "-n #{install_dir}/bin",
111
+ "--no-rdoc --no-ri"].join(" ")
112
+
113
+ # XXX: doing a normal bundle_bust here results in gems installed into the outer bundle...
114
+ command "bundle install", :env => { "PATH" => "#{install_dir}/embedded/bin;#{install_dir}/embedded/mingw/bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem", "BUNDLE_BIN_PATH" => "#{install_dir}/embedded/bin/bundle" , "BUNDLE_GEMFILE" => nil, "GEM_HOME" => "#{install_dir}/embedded/lib/ruby/gems/1.9.1", "GEM_PATH" => "#{install_dir}/embedded/lib/ruby/gems/1.9.1", "RUBYOPT" => nil }
115
+
116
+ # render batch files
117
+ #
118
+ # TODO:
119
+ # I'd love to move this out to a top-level 'template' operation in omnibus, but it currently
120
+ # requires pretty deep inspection of the Rubygems structure of the installed chef and ohai
121
+ # gems
122
+ #
123
+ block do
124
+ require 'erb'
125
+ require 'rubygems/format'
126
+
127
+ batch_template = ERB.new <<EOBATCH
128
+ @ECHO OFF
129
+ IF NOT "%~f0" == "~f0" GOTO :WinNT
130
+ @"%~dp0\\..\\embedded\\bin\\ruby.exe" "%~dp0/<%= @bin %>" %1 %2 %3 %4 %5 %6 %7 %8 %9
131
+ GOTO :EOF
132
+ :WinNT
133
+ @"%~dp0\\..\\embedded\\bin\\ruby.exe" "%~dpn0" %*
134
+ EOBATCH
135
+
136
+ gem_executables = []
137
+ %w{chef}.each do |gem|
138
+ puts "#{install_dir.gsub(/\\/, '/')}/embedded/**/cache/#{gem}*mingw32.gem"
139
+ require 'pp'
140
+ pp Dir["#{install_dir.gsub(/\\/, '/')}/embedded/**/cache/#{gem}*mingw32.gem"]
141
+ gem_file = Dir["#{install_dir.gsub(/\\/, '/')}/embedded/**/cache/#{gem}*mingw32.gem"].first
142
+ gem_executables << Gem::Format.from_file_by_path(gem_file).spec.executables
143
+ end
144
+
145
+ # XXX: need to fix ohai to use own gemspec as well and eliminate copypasta
146
+ %w{ohai}.each do |gem|
147
+ gem_file = Dir["#{install_dir.gsub(/\\/, '/')}/embedded/**/cache/#{gem}*.gem"].first
148
+ gem_executables << Gem::Format.from_file_by_path(gem_file).spec.executables
149
+ end
150
+
151
+ gem_executables.flatten.each do |bin|
152
+ @bin = bin
153
+ File.open("#{install_dir}/bin/#{@bin}.bat", "w") do |f|
154
+ f.puts batch_template.result(binding)
155
+ end
156
+ end
157
+ end
158
+ end