omnibus 3.2.2 → 4.0.0.beta.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +140 -10
- data/CHANGELOG.md +181 -8
- data/README.md +63 -35
- data/Rakefile +1 -1
- data/docs/omnibus-build-cache.md b/data/docs/Build → Cache.md +0 -0
- data/docs/Building on Debian.md +59 -0
- data/docs/Building on OSX.md +61 -35
- data/docs/Building on RHEL.md +74 -0
- data/docs/Building on Windows.md +40 -81
- data/features/commands/build.feature +1 -2
- data/features/commands/clean.feature +1 -1
- data/lib/omnibus.rb +111 -204
- data/lib/omnibus/build_version.rb +3 -20
- data/lib/omnibus/build_version_dsl.rb +2 -3
- data/lib/omnibus/builder.rb +103 -211
- data/lib/omnibus/cleaner.rb +5 -7
- data/lib/omnibus/cli.rb +1 -4
- data/lib/omnibus/cli/base.rb +9 -16
- data/lib/omnibus/compressor.rb +60 -0
- data/{spec/data/complicated/config/software/version-manifest.rb → lib/omnibus/compressors/base.rb} +17 -12
- data/lib/omnibus/compressors/dmg.rb +312 -0
- data/lib/omnibus/{null_builder.rb → compressors/null.rb} +10 -4
- data/lib/omnibus/compressors/tgz.rb +141 -0
- data/lib/omnibus/config.rb +89 -83
- data/lib/omnibus/core_extensions.rb +1 -0
- data/lib/omnibus/core_extensions/open_uri.rb +58 -0
- data/lib/omnibus/digestable.rb +9 -3
- data/lib/omnibus/exceptions.rb +116 -175
- data/lib/omnibus/fetcher.rb +97 -138
- data/lib/omnibus/fetchers/git_fetcher.rb +130 -165
- data/lib/omnibus/fetchers/net_fetcher.rb +205 -164
- data/lib/omnibus/fetchers/{s3_cache_fetcher.rb → null_fetcher.rb} +27 -17
- data/lib/omnibus/fetchers/path_fetcher.rb +74 -32
- data/lib/omnibus/file_syncer.rb +149 -0
- data/lib/omnibus/generator.rb +103 -32
- data/lib/omnibus/generator_files/.kitchen.yml.erb +5 -1
- data/lib/omnibus/generator_files/Gemfile.erb +13 -7
- data/lib/omnibus/generator_files/config/projects/project.rb.erb +28 -0
- data/lib/omnibus/generator_files/config/software/zlib.rb.erb +55 -0
- data/lib/omnibus/generator_files/omnibus.rb.erb +5 -7
- data/lib/omnibus/git_cache.rb +11 -13
- data/lib/omnibus/logger.rb +76 -22
- data/lib/omnibus/logging.rb +1 -1
- data/lib/omnibus/metadata.rb +264 -0
- data/lib/omnibus/ohai.rb +0 -51
- data/lib/omnibus/package.rb +4 -228
- data/lib/omnibus/packager.rb +71 -0
- data/lib/omnibus/packagers/base.rb +118 -176
- data/lib/omnibus/packagers/bff.rb +136 -0
- data/lib/omnibus/packagers/deb.rb +389 -0
- data/lib/omnibus/packagers/makeself.rb +114 -0
- data/lib/omnibus/packagers/msi.rb +346 -0
- data/lib/omnibus/packagers/pkg.rb +278 -0
- data/lib/omnibus/packagers/rpm.rb +438 -0
- data/lib/omnibus/packagers/solaris.rb +110 -0
- data/lib/omnibus/project.rb +263 -666
- data/lib/omnibus/publisher.rb +3 -3
- data/lib/omnibus/s3_cache.rb +21 -30
- data/lib/omnibus/software.rb +132 -271
- data/lib/omnibus/templating.rb +66 -0
- data/lib/omnibus/thread_pool.rb +109 -0
- data/lib/omnibus/util.rb +137 -15
- data/lib/omnibus/version.rb +1 -1
- data/omnibus.gemspec +2 -2
- data/resources/bff/gen.template.erb +22 -0
- data/resources/bff/postinstall.sh +0 -0
- data/resources/bff/unpostinstall.sh +0 -0
- data/resources/deb/conffiles.erb +3 -0
- data/resources/deb/control.erb +25 -0
- data/resources/deb/md5sums.erb +3 -0
- data/{lib/omnibus/generator_files/mac_dmg → resources/dmg}/background.png +0 -0
- data/resources/dmg/create_dmg.osascript.erb +17 -0
- data/{lib/omnibus/generator_files/mac_dmg → resources/dmg}/icon.png +0 -0
- data/{bin → resources/makeself}/makeself-header.sh +0 -0
- data/{bin → resources/makeself}/makeself.sh +0 -0
- data/{lib/omnibus/generator_files/package_scripts/makeselfinst.erb → resources/makeself/post_extract.sh.erb} +4 -4
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/LICENSE.rtf +0 -0
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/banner_background.bmp +0 -0
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/dialog_background.bmp +0 -0
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/project.ico +0 -0
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/project_16x16.ico +0 -0
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/project_32x32.ico +0 -0
- data/{spec/fixtures/sample/files/windows_msi/Resources/localization-en-us.wxl → resources/msi/localization-en-us.wxl.erb} +3 -4
- data/resources/msi/parameters.wxi.erb +9 -0
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/source.wxs.erb +14 -15
- data/{lib/omnibus/generator_files/mac_pkg → resources/pkg}/background.png +0 -0
- data/resources/pkg/distribution.xml.erb +21 -0
- data/resources/pkg/license.html.erb +3 -0
- data/resources/pkg/welcome.html.erb +7 -0
- data/resources/rpm/rpmmacros.erb +3 -0
- data/resources/rpm/signing.erb +40 -0
- data/resources/rpm/spec.erb +70 -0
- data/spec/functional/builder_spec.rb +90 -111
- data/spec/functional/fetchers/git_fetcher_spec.rb +130 -0
- data/spec/functional/fetchers/net_fetcher_spec.rb +110 -0
- data/spec/functional/fetchers/path_fetcher_spec.rb +97 -0
- data/spec/functional/file_syncer_spec.rb +206 -0
- data/spec/functional/templating_spec.rb +73 -0
- data/spec/spec_helper.rb +31 -94
- data/spec/support/env_helpers.rb +20 -0
- data/spec/support/examples.rb +56 -0
- data/spec/support/file_helpers.rb +46 -0
- data/spec/support/git_helpers.rb +107 -0
- data/spec/support/logging_helpers.rb +33 -0
- data/spec/support/matchers.rb +36 -0
- data/spec/support/ohai_helpers.rb +22 -0
- data/spec/support/path_helpers.rb +19 -0
- data/spec/support/shell_helpers.rb +14 -0
- data/spec/unit/build_version_dsl_spec.rb +0 -17
- data/spec/unit/build_version_spec.rb +1 -19
- data/spec/unit/builder_spec.rb +158 -46
- data/spec/unit/compressor_spec.rb +45 -0
- data/spec/unit/compressors/base_spec.rb +26 -0
- data/spec/unit/compressors/dmg_spec.rb +291 -0
- data/spec/unit/compressors/null_spec.rb +23 -0
- data/spec/unit/compressors/tgz_spec.rb +67 -0
- data/spec/unit/config_spec.rb +27 -34
- data/spec/unit/digestable_spec.rb +4 -4
- data/spec/unit/fetchers/git_fetcher_spec.rb +110 -39
- data/spec/unit/fetchers/net_fetcher_spec.rb +182 -72
- data/spec/unit/fetchers/path_fetcher_spec.rb +111 -0
- data/spec/unit/generator_spec.rb +137 -0
- data/spec/unit/git_cache_spec.rb +24 -34
- data/spec/unit/library_spec.rb +21 -82
- data/spec/unit/metadata_spec.rb +207 -0
- data/spec/unit/ohai_spec.rb +0 -7
- data/spec/unit/omnibus_spec.rb +41 -36
- data/spec/unit/package_spec.rb +1 -216
- data/spec/unit/packagers/base_spec.rb +76 -190
- data/spec/unit/packagers/bff_spec.rb +160 -0
- data/spec/unit/packagers/deb_spec.rb +324 -0
- data/spec/unit/packagers/makeself_spec.rb +80 -0
- data/spec/unit/packagers/msi_spec.rb +267 -0
- data/spec/unit/packagers/pkg_spec.rb +219 -0
- data/spec/unit/packagers/rpm_spec.rb +328 -0
- data/spec/unit/project_spec.rb +217 -80
- data/spec/unit/publisher_spec.rb +6 -2
- data/spec/unit/publishers/artifactory_publisher_spec.rb +1 -1
- data/spec/unit/publishers/s3_publisher_spec.rb +1 -1
- data/spec/unit/s3_cacher_spec.rb +22 -5
- data/spec/unit/software_spec.rb +89 -232
- data/spec/unit/util_spec.rb +188 -0
- metadata +159 -402
- data/features/commands/_deprecated.feature +0 -84
- data/lib/omnibus/cleanroom.rb +0 -141
- data/lib/omnibus/cli/deprecated.rb +0 -132
- data/lib/omnibus/generator_files/mac_pkg/license.html.erb +0 -1
- data/lib/omnibus/generator_files/mac_pkg/welcome.html.erb +0 -9
- data/lib/omnibus/generator_files/project.rb.erb +0 -20
- data/lib/omnibus/generator_files/software/c-example.rb.erb +0 -42
- data/lib/omnibus/generator_files/software/erlang-example.rb.erb +0 -38
- data/lib/omnibus/generator_files/software/ruby-example.rb.erb +0 -24
- data/lib/omnibus/generator_files/windows_msi/localization-en-us.wxl.erb +0 -20
- data/lib/omnibus/generator_files/windows_msi/parameters.wxi.erb +0 -9
- data/lib/omnibus/packagers/mac_dmg.rb +0 -235
- data/lib/omnibus/packagers/mac_pkg.rb +0 -176
- data/lib/omnibus/packagers/windows_msi.rb +0 -109
- data/spec/data/complicated/config/patches/bzip2/makefile_take_env_vars.patch +0 -15
- data/spec/data/complicated/config/patches/couchdb/patch_for_couchjs_stack.patch +0 -19
- data/spec/data/complicated/config/patches/gd/gd-2.0.33-configure-libpng.patch +0 -100
- data/spec/data/complicated/config/patches/keepalived/keepalived-1.2.9_opscode_centos_5.patch +0 -15
- data/spec/data/complicated/config/patches/libedit/freebsd-vi-fix.patch +0 -24
- data/spec/data/complicated/config/patches/libiconv/libiconv-1.14_srclib_stdio.in.h-remove-gets-declarations.patch +0 -29
- data/spec/data/complicated/config/patches/libwrap/tcp_wrappers-7.6-makefile-dest-fix.patch +0 -35
- data/spec/data/complicated/config/patches/libwrap/tcp_wrappers-7.6-malloc-fix.patch +0 -13
- data/spec/data/complicated/config/patches/libwrap/tcp_wrappers-7.6-shared_lib_plus_plus-1.patch +0 -1035
- data/spec/data/complicated/config/patches/logrotate/logrotate_basedir_override.patch +0 -12
- data/spec/data/complicated/config/patches/ncurses/ncurses-5.9-solaris-xopen_source_extended-detection.patch +0 -11
- data/spec/data/complicated/config/patches/ncurses/ncurses-clang.patch +0 -42
- data/spec/data/complicated/config/patches/ncurses/patch-aa +0 -23
- data/spec/data/complicated/config/patches/ncurses/patch-ab +0 -44
- data/spec/data/complicated/config/patches/ncurses/patch-ac +0 -40
- data/spec/data/complicated/config/patches/ncurses/patch-ad +0 -12
- data/spec/data/complicated/config/patches/ncurses/patch-aix-configure +0 -23
- data/spec/data/complicated/config/patches/ncurses/patch-cxx_cursesf.h +0 -22
- data/spec/data/complicated/config/patches/ncurses/patch-cxx_cursesm.h +0 -22
- data/spec/data/complicated/config/patches/nrpe/fix_for_runit.patch +0 -64
- data/spec/data/complicated/config/patches/openssl/openssl-1.0.1f-do-not-build-docs.patch +0 -101
- data/spec/data/complicated/config/patches/postgresql/postgresql-9.1.2-configure-ncurses-fix.patch +0 -12
- data/spec/data/complicated/config/patches/ruby/patch-configure +0 -103
- data/spec/data/complicated/config/patches/ruby/ruby-aix-configure.patch +0 -10
- data/spec/data/complicated/config/patches/ruby/ruby-openssl-1.0.1c.patch +0 -42
- data/spec/data/complicated/config/patches/ruby/ruby_aix_1_9_3_448_ssl_EAGAIN.patch +0 -57
- data/spec/data/complicated/config/patches/ruby/rvm-cflags.patch +0 -27
- data/spec/data/complicated/config/projects/angrychef.rb +0 -32
- data/spec/data/complicated/config/projects/chef-windows.rb +0 -32
- data/spec/data/complicated/config/projects/chef.rb +0 -32
- data/spec/data/complicated/config/projects/chefdk-windows.rb +0 -41
- data/spec/data/complicated/config/projects/chefdk.rb +0 -44
- data/spec/data/complicated/config/software/appbundler.rb +0 -25
- data/spec/data/complicated/config/software/autoconf.rb +0 -35
- data/spec/data/complicated/config/software/automake.rb +0 -39
- data/spec/data/complicated/config/software/berkshelf.rb +0 -44
- data/spec/data/complicated/config/software/bundler.rb +0 -25
- data/spec/data/complicated/config/software/bzip2.rb +0 -46
- data/spec/data/complicated/config/software/cacerts.rb +0 -44
- data/spec/data/complicated/config/software/chef-client-msi.rb +0 -87
- data/spec/data/complicated/config/software/chef-gem.rb +0 -26
- data/spec/data/complicated/config/software/chef-vault.rb +0 -43
- data/spec/data/complicated/config/software/chef-windows.rb +0 -158
- data/spec/data/complicated/config/software/chef.rb +0 -170
- data/spec/data/complicated/config/software/chefdk.rb +0 -103
- data/spec/data/complicated/config/software/couchdb.rb +0 -53
- data/spec/data/complicated/config/software/curl.rb +0 -48
- data/spec/data/complicated/config/software/erlang.rb +0 -65
- data/spec/data/complicated/config/software/expat.rb +0 -21
- data/spec/data/complicated/config/software/fcgi.rb +0 -56
- data/spec/data/complicated/config/software/fcgiwrap.rb +0 -41
- data/spec/data/complicated/config/software/gd.rb +0 -56
- data/spec/data/complicated/config/software/gdbm.rb +0 -40
- data/spec/data/complicated/config/software/gecode.rb +0 -48
- data/spec/data/complicated/config/software/git.rb +0 -40
- data/spec/data/complicated/config/software/help2man.rb +0 -30
- data/spec/data/complicated/config/software/icu.rb +0 -40
- data/spec/data/complicated/config/software/jre.rb +0 -48
- data/spec/data/complicated/config/software/keepalived.rb +0 -43
- data/spec/data/complicated/config/software/libarchive.rb +0 -50
- data/spec/data/complicated/config/software/libedit.rb +0 -69
- data/spec/data/complicated/config/software/libffi.rb +0 -71
- data/spec/data/complicated/config/software/libgcc.rb +0 -39
- data/spec/data/complicated/config/software/libiconv.rb +0 -55
- data/spec/data/complicated/config/software/libjpeg.rb +0 -39
- data/spec/data/complicated/config/software/libpng.rb +0 -38
- data/spec/data/complicated/config/software/libtool.rb +0 -52
- data/spec/data/complicated/config/software/libwrap.rb +0 -50
- data/spec/data/complicated/config/software/libxml2.rb +0 -51
- data/spec/data/complicated/config/software/libxslt.rb +0 -52
- data/spec/data/complicated/config/software/libyaml-windows.rb +0 -43
- data/spec/data/complicated/config/software/libyaml.rb +0 -62
- data/spec/data/complicated/config/software/logrotate.rb +0 -41
- data/spec/data/complicated/config/software/makedepend.rb +0 -73
- data/spec/data/complicated/config/software/mysql2.rb +0 -42
- data/spec/data/complicated/config/software/nagios-plugins.rb +0 -53
- data/spec/data/complicated/config/software/nagios.rb +0 -66
- data/spec/data/complicated/config/software/ncurses.rb +0 -149
- data/spec/data/complicated/config/software/nginx.rb +0 -40
- data/spec/data/complicated/config/software/nodejs.rb +0 -44
- data/spec/data/complicated/config/software/nokogiri.rb +0 -55
- data/spec/data/complicated/config/software/nrpe.rb +0 -61
- data/spec/data/complicated/config/software/ohai.rb +0 -64
- data/spec/data/complicated/config/software/omnibus-ctl.rb +0 -34
- data/spec/data/complicated/config/software/openresty.rb +0 -67
- data/spec/data/complicated/config/software/openssl.rb +0 -158
- data/spec/data/complicated/config/software/pcre.rb +0 -42
- data/spec/data/complicated/config/software/perl-extutils-embed.rb +0 -15
- data/spec/data/complicated/config/software/perl-extutils-makemaker.rb +0 -15
- data/spec/data/complicated/config/software/perl.rb +0 -48
- data/spec/data/complicated/config/software/perl_pg_driver.rb +0 -12
- data/spec/data/complicated/config/software/php.rb +0 -41
- data/spec/data/complicated/config/software/pip.rb +0 -30
- data/spec/data/complicated/config/software/pkg-config.rb +0 -66
- data/spec/data/complicated/config/software/popt.rb +0 -47
- data/spec/data/complicated/config/software/postgresql.rb +0 -51
- data/spec/data/complicated/config/software/preparation.rb +0 -30
- data/spec/data/complicated/config/software/pygments.rb +0 -25
- data/spec/data/complicated/config/software/python.rb +0 -49
- data/spec/data/complicated/config/software/rabbitmq.rb +0 -36
- data/spec/data/complicated/config/software/rebar.rb +0 -36
- data/spec/data/complicated/config/software/redis.rb +0 -33
- data/spec/data/complicated/config/software/rsync.rb +0 -48
- data/spec/data/complicated/config/software/ruby-windows-devkit.rb +0 -30
- data/spec/data/complicated/config/software/ruby-windows.rb +0 -30
- data/spec/data/complicated/config/software/ruby.rb +0 -162
- data/spec/data/complicated/config/software/rubygems-customization.rb +0 -57
- data/spec/data/complicated/config/software/rubygems.rb +0 -37
- data/spec/data/complicated/config/software/runit.rb +0 -118
- data/spec/data/complicated/config/software/server-jre.rb +0 -46
- data/spec/data/complicated/config/software/setuptools.rb +0 -30
- data/spec/data/complicated/config/software/spawn-fcgi.rb +0 -40
- data/spec/data/complicated/config/software/sphinx.rb +0 -26
- data/spec/data/complicated/config/software/spidermonkey.rb +0 -60
- data/spec/data/complicated/config/software/sqitch.rb +0 -24
- data/spec/data/complicated/config/software/test-kitchen.rb +0 -39
- data/spec/data/complicated/config/software/unicorn.rb +0 -27
- data/spec/data/complicated/config/software/util-macros.rb +0 -46
- data/spec/data/complicated/config/software/xproto.rb +0 -46
- data/spec/data/complicated/config/software/yajl.rb +0 -30
- data/spec/data/complicated/config/software/zlib.rb +0 -67
- data/spec/data/overrides/bad_line.overrides +0 -3
- data/spec/data/overrides/good.overrides +0 -5
- data/spec/data/overrides/with_dupes.overrides +0 -4
- data/spec/data/projects/chefdk.rb +0 -41
- data/spec/data/projects/sample.rb +0 -13
- data/spec/data/software/erchef.rb +0 -42
- data/spec/data/software/zlib.rb +0 -67
- data/spec/fixtures/sample/files/mac_dmg/Resources/background.png +0 -0
- data/spec/fixtures/sample/files/mac_dmg/Resources/icon.png +0 -0
- data/spec/fixtures/sample/files/mac_pkg/Resources/background.png +0 -0
- data/spec/fixtures/sample/files/mac_pkg/Resources/license.html +0 -1
- data/spec/fixtures/sample/files/mac_pkg/Resources/welcome.html +0 -9
- data/spec/fixtures/sample/files/windows_msi/Resources/assets/LICENSE.rtf +0 -8
- data/spec/fixtures/sample/files/windows_msi/Resources/assets/banner_background.bmp +0 -0
- data/spec/fixtures/sample/files/windows_msi/Resources/assets/dialog_background.bmp +0 -0
- data/spec/fixtures/sample/files/windows_msi/Resources/assets/project.ico +0 -0
- data/spec/fixtures/sample/files/windows_msi/Resources/assets/project_16x16.ico +0 -0
- data/spec/fixtures/sample/files/windows_msi/Resources/assets/project_32x32.ico +0 -0
- data/spec/fixtures/sample/files/windows_msi/Resources/parameters.wxi.erb +0 -9
- data/spec/fixtures/sample/files/windows_msi/Resources/source.wxs +0 -74
- data/spec/integration/packagers/mac_spec.rb +0 -58
- data/spec/integration/packagers/windows_spec.rb +0 -70
- data/spec/unit/packagers/mac_pkg_spec.rb +0 -151
@@ -1,103 +0,0 @@
|
|
1
|
-
$NetBSD: patch-configure,v 1.4 2012/10/12 14:51:31 taca Exp $
|
2
|
-
|
3
|
-
* Adding Interix and MirBSD support.
|
4
|
-
* Ignore doxygen.
|
5
|
-
|
6
|
-
--- configure.orig 2012-10-12 09:23:46.000000000 +0000
|
7
|
-
+++ configure
|
8
|
-
@@ -10654,6 +10654,9 @@ esac
|
9
|
-
superux*) :
|
10
|
-
ac_cv_func_setitimer=no
|
11
|
-
;; #(
|
12
|
-
+ interix*) LIBS="-lm $LIBS"
|
13
|
-
+ ac_cv_func_getpgrp_void=yes
|
14
|
-
+ ;; #(
|
15
|
-
*) :
|
16
|
-
LIBS="-lm $LIBS" ;;
|
17
|
-
esac
|
18
|
-
@@ -11980,6 +11983,9 @@ fi
|
19
|
-
ac_fn_c_check_type "$LINENO" "struct timespec" "ac_cv_type_struct_timespec" "#ifdef HAVE_TIME_H
|
20
|
-
#include <time.h>
|
21
|
-
#endif
|
22
|
-
+#ifdef HAVE_SYS_TIME_H
|
23
|
-
+# include <sys/time.h>
|
24
|
-
+#endif
|
25
|
-
"
|
26
|
-
if test "x$ac_cv_type_struct_timespec" = xyes; then :
|
27
|
-
|
28
|
-
@@ -15790,7 +15796,7 @@ done
|
29
|
-
MAINLIBS="-pthread $MAINLIBS" ;; #(
|
30
|
-
*) :
|
31
|
-
case "$target_os" in #(
|
32
|
-
- openbsd*) :
|
33
|
-
+ openbsd*|mirbsd*) :
|
34
|
-
LIBS="-pthread $LIBS" ;; #(
|
35
|
-
*) :
|
36
|
-
LIBS="-l$pthread_lib $LIBS" ;;
|
37
|
-
@@ -16239,8 +16245,12 @@ esac ;; #(
|
38
|
-
rb_cv_dlopen=yes ;; #(
|
39
|
-
interix*) :
|
40
|
-
: ${LDSHARED='$(CC) -shared'}
|
41
|
-
+ LDFLAGS="$LDFLAGS -Wl,-E"
|
42
|
-
XLDFLAGS="$XLDFLAGS -Wl,-E"
|
43
|
-
+ # use special random-slot linkage in 0x[56]XXXXXXX
|
44
|
-
LIBPATHFLAG=" -L%1\$-s"
|
45
|
-
+ DLDFLAGS="$DLDFLAGS "'-Wl,-h,$(.TARGET) -Wl,--image-base,$$(($$RANDOM %4096/2*262144+1342177280))'
|
46
|
-
+ RPATHFLAG=' -Wl,-R%1$-s'
|
47
|
-
rb_cv_dlopen=yes ;; #(
|
48
|
-
freebsd*|dragonfly*) :
|
49
|
-
|
50
|
-
@@ -16252,7 +16262,7 @@ esac ;; #(
|
51
|
-
test "$GCC" = yes && test "$rb_cv_prog_gnu_ld" = yes || LDSHARED="ld -Bshareable"
|
52
|
-
fi
|
53
|
-
rb_cv_dlopen=yes ;; #(
|
54
|
-
- openbsd*) :
|
55
|
-
+ openbsd*|mirbsd*) :
|
56
|
-
: ${LDSHARED='$(CC) -shared ${CCDLFLAGS}'}
|
57
|
-
if test "$rb_cv_binary_elf" = yes; then
|
58
|
-
LDFLAGS="$LDFLAGS -Wl,-E"
|
59
|
-
@@ -16781,7 +16791,7 @@ _ACEOF
|
60
|
-
freebsd*|dragonfly*) :
|
61
|
-
|
62
|
-
SOLIBS='$(LIBS)'
|
63
|
-
- LIBRUBY_SO='lib$(RUBY_SO_NAME).so.$(MAJOR)$(MINOR)'
|
64
|
-
+ LIBRUBY_SO='lib$(RUBY_SO_NAME).so.$(MAJOR)$(MINOR)$(TEENY)'
|
65
|
-
if test "$rb_cv_binary_elf" != "yes" ; then
|
66
|
-
LIBRUBY_SO="$LIBRUBY_SO.\$(TEENY)"
|
67
|
-
LIBRUBY_ALIASES=''
|
68
|
-
@@ -16798,7 +16808,7 @@ _ACEOF
|
69
|
-
LIBRUBY_ALIASES=""
|
70
|
-
fi
|
71
|
-
;; #(
|
72
|
-
- openbsd*) :
|
73
|
-
+ openbsd*|mirbsd*) :
|
74
|
-
|
75
|
-
SOLIBS='$(LIBS)'
|
76
|
-
LIBRUBY_SO='lib$(RUBY_SO_NAME).so.$(MAJOR).'`expr ${MINOR} \* 10 + ${TEENY}`
|
77
|
-
@@ -16859,7 +16869,12 @@ esac
|
78
|
-
;; #(
|
79
|
-
interix*) :
|
80
|
-
|
81
|
-
- LIBRUBYARG_SHARED='-L. -L${libdir} -l$(RUBY_SO_NAME)'
|
82
|
-
+ SOLIBS='$(LIBS)'
|
83
|
-
+ LIBRUBY_SO='lib$(RUBY_SO_NAME).so.$(MAJOR)$(MINOR).$(TEENY)'
|
84
|
-
+ # link explicitly to 0x48000000
|
85
|
-
+ LIBRUBY_DLDFLAGS='-Wl,-h,lib$(RUBY_SO_NAME).so.$(MAJOR)$(MINOR) -Wl,--image-base,1207959552'
|
86
|
-
+ LIBRUBYARG_SHARED='-Wl,-R -Wl,${libdir} -L${libdir} -L. -l$(RUBY_SO_NAME)'
|
87
|
-
+ LIBRUBY_ALIASES='lib$(RUBY_SO_NAME).so.$(MAJOR)$(MINOR) lib$(RUBY_SO_NAME).so'
|
88
|
-
;; #(
|
89
|
-
*) :
|
90
|
-
;;
|
91
|
-
@@ -16922,11 +16937,7 @@ if test "$install_doc" != no; then
|
92
|
-
else
|
93
|
-
RDOCTARGET="nodoc"
|
94
|
-
fi
|
95
|
-
- if test "$install_capi" != no -a -n "$DOXYGEN"; then
|
96
|
-
- CAPITARGET="capi"
|
97
|
-
- else
|
98
|
-
- CAPITARGET="nodoc"
|
99
|
-
- fi
|
100
|
-
+ CAPITARGET="nodoc"
|
101
|
-
else
|
102
|
-
RDOCTARGET="nodoc"
|
103
|
-
CAPITARGET="nodoc"
|
@@ -1,10 +0,0 @@
|
|
1
|
-
--- a/configure 2013-05-14 11:42:05 -0500
|
2
|
-
+++ b/configure 2013-05-22 14:49:01 -0500
|
3
|
-
@@ -16314,6 +16314,7 @@
|
4
|
-
aix*) :
|
5
|
-
: ${LDSHARED='$(CC)'}
|
6
|
-
LDSHARED="$LDSHARED ${linker_flag}-G"
|
7
|
-
+ DLDFLAGS='-eInit_$(TARGET)'
|
8
|
-
EXTDLDFLAGS='-e$(TARGET_ENTRY)'
|
9
|
-
XLDFLAGS="${linker_flag}"'-bE:$(ARCHFILE)'" ${linker_flag}-brtl"
|
10
|
-
XLDFLAGS="$XLDFLAGS ${linker_flag}-blibpath:${prefix}/lib:${LIBPATH:-/usr/lib:/lib}"
|
@@ -1,42 +0,0 @@
|
|
1
|
-
diff -Naur ruby-1.9.3-p286.pristine/ext/openssl/openssl_missing.c ruby-1.9.3-p286/ext/openssl/openssl_missing.c
|
2
|
-
--- ruby-1.9.3-p286.pristine/ext/openssl/openssl_missing.c 2011-06-26 01:32:03.000000000 +0000
|
3
|
-
+++ ruby-1.9.3-p286/ext/openssl/openssl_missing.c 2013-01-28 05:08:38.192083253 +0000
|
4
|
-
@@ -22,7 +22,7 @@
|
5
|
-
#include "openssl_missing.h"
|
6
|
-
|
7
|
-
#if !defined(HAVE_HMAC_CTX_COPY)
|
8
|
-
-void
|
9
|
-
+int
|
10
|
-
HMAC_CTX_copy(HMAC_CTX *out, HMAC_CTX *in)
|
11
|
-
{
|
12
|
-
if (!out || !in) return;
|
13
|
-
@@ -118,7 +118,7 @@
|
14
|
-
* tested on 0.9.7d.
|
15
|
-
*/
|
16
|
-
int
|
17
|
-
-EVP_CIPHER_CTX_copy(EVP_CIPHER_CTX *out, EVP_CIPHER_CTX *in)
|
18
|
-
+EVP_CIPHER_CTX_copy(EVP_CIPHER_CTX *out, const EVP_CIPHER_CTX *in)
|
19
|
-
{
|
20
|
-
memcpy(out, in, sizeof(EVP_CIPHER_CTX));
|
21
|
-
|
22
|
-
diff -Naur ruby-1.9.3-p286.pristine/ext/openssl/openssl_missing.h ruby-1.9.3-p286/ext/openssl/openssl_missing.h
|
23
|
-
--- ruby-1.9.3-p286.pristine/ext/openssl/openssl_missing.h 2011-06-26 01:32:03.000000000 +0000
|
24
|
-
+++ ruby-1.9.3-p286/ext/openssl/openssl_missing.h 2013-01-28 05:08:38.192500215 +0000
|
25
|
-
@@ -68,7 +68,7 @@
|
26
|
-
#endif
|
27
|
-
|
28
|
-
#if !defined(HAVE_HMAC_CTX_COPY)
|
29
|
-
-void HMAC_CTX_copy(HMAC_CTX *out, HMAC_CTX *in);
|
30
|
-
+int HMAC_CTX_copy(HMAC_CTX *out, HMAC_CTX *in);
|
31
|
-
#endif
|
32
|
-
|
33
|
-
#if !defined(HAVE_HMAC_CTX_CLEANUP)
|
34
|
-
@@ -92,7 +92,7 @@
|
35
|
-
#endif
|
36
|
-
|
37
|
-
#if !defined(HAVE_EVP_CIPHER_CTX_COPY)
|
38
|
-
-int EVP_CIPHER_CTX_copy(EVP_CIPHER_CTX *out, EVP_CIPHER_CTX *in);
|
39
|
-
+int EVP_CIPHER_CTX_copy(EVP_CIPHER_CTX *out, const EVP_CIPHER_CTX *in);
|
40
|
-
#endif
|
41
|
-
|
42
|
-
#if !defined(HAVE_EVP_DIGESTINIT_EX)
|
@@ -1,57 +0,0 @@
|
|
1
|
-
diff --git a/ext/openssl/lib/openssl/ssl-internal.rb b/ext/openssl/lib/openssl/ssl-internal.rb
|
2
|
-
index 356d4e8..89a7a42 100644
|
3
|
-
--- a/ext/openssl/lib/openssl/ssl-internal.rb
|
4
|
-
+++ b/ext/openssl/lib/openssl/ssl-internal.rb
|
5
|
-
@@ -169,7 +169,15 @@ module OpenSSL
|
6
|
-
begin
|
7
|
-
ssl = OpenSSL::SSL::SSLSocket.new(sock, @ctx)
|
8
|
-
ssl.sync_close = true
|
9
|
-
- ssl.accept if @start_immediately
|
10
|
-
+ if @start_immediately
|
11
|
-
+ # Retry on EAGAIN (may be due to underlying inprogress for TLS handshake or renegotiation requested.)
|
12
|
-
+ # Any other error is rescued further.
|
13
|
-
+ begin
|
14
|
-
+ ssl.accept
|
15
|
-
+ rescue Errno::EAGAIN
|
16
|
-
+ retry
|
17
|
-
+ end
|
18
|
-
+ end
|
19
|
-
ssl
|
20
|
-
rescue SSLError => ex
|
21
|
-
sock.close
|
22
|
-
diff --git a/lib/net/http.rb b/lib/net/http.rb
|
23
|
-
index 9e4fe6a..41a9c75 100644
|
24
|
-
--- a/lib/net/http.rb
|
25
|
-
+++ b/lib/net/http.rb
|
26
|
-
@@ -797,7 +797,14 @@ module Net #:nodoc:
|
27
|
-
end
|
28
|
-
# Server Name Indication (SNI) RFC 3546
|
29
|
-
s.hostname = @address if s.respond_to? :hostname=
|
30
|
-
- timeout(@open_timeout) { s.connect }
|
31
|
-
+ timeout(@open_timeout) {
|
32
|
-
+ # Retry on EAGAIN (may be due to underlying inprogress for TLS handshake or renegotiation requested.)
|
33
|
-
+ begin
|
34
|
-
+ s.connect
|
35
|
-
+ rescue Errno::EAGAIN
|
36
|
-
+ retry
|
37
|
-
+ end
|
38
|
-
+ }
|
39
|
-
if @ssl_context.verify_mode != OpenSSL::SSL::VERIFY_NONE
|
40
|
-
s.post_connection_check(@address)
|
41
|
-
end
|
42
|
-
diff --git a/lib/net/protocol.rb b/lib/net/protocol.rb
|
43
|
-
index f374466..b6f9f17 100644
|
44
|
-
--- a/lib/net/protocol.rb
|
45
|
-
+++ b/lib/net/protocol.rb
|
46
|
-
@@ -153,6 +153,12 @@ module Net # :nodoc:
|
47
|
-
else
|
48
|
-
raise Timeout::Error
|
49
|
-
end
|
50
|
-
+ rescue Errno::EAGAIN
|
51
|
-
+ # read_nonblock calls underlying SSL_read. openssl doc states that data can be processed only when SSL/TLS
|
52
|
-
+ # record has been received completely. Also data that was not retrieved at the last call of SSL_read()
|
53
|
-
+ # can still be buffered inside the SSL layer and will be retrieved on the next call to SSL_read.
|
54
|
-
+ # http://www.openssl.org/docs/ssl/SSL_read.html
|
55
|
-
+ retry
|
56
|
-
end
|
57
|
-
end
|
@@ -1,27 +0,0 @@
|
|
1
|
-
--- a/configure.in
|
2
|
-
+++ b/configure.in
|
3
|
-
@@ -267,11 +267,9 @@
|
4
|
-
cflagspat="$cflagspat;s|"`eval echo '"'"${debugflags}"'"' | sed 's/[[][|.*]]/\\&/g;s/^ */ /;s/ *$/ /'`'| |g'
|
5
|
-
test -z "warnflags" ||
|
6
|
-
cflagspat="$cflagspat;s|"`eval echo '"'"${warnflags}"'"' | sed 's/[[][|.*]]/\\&/g;s/^ */ /;s/ *$/ /'`'| |g'
|
7
|
-
-if test -z "${CFLAGS+set}"; then
|
8
|
-
- cflags=`echo " $cflags " | sed "$cflagspat;s/^ *//;s/ *$//"`
|
9
|
-
- orig_cflags="$cflags"
|
10
|
-
- cflags="$cflags "'${optflags} ${debugflags} ${warnflags}'
|
11
|
-
-fi
|
12
|
-
+cflags=`echo " $cflags " | sed "$cflagspat;s/^ *//;s/ *$//"`
|
13
|
-
+orig_cflags="$cflags"
|
14
|
-
+cflags="$cflags "'${optflags} ${debugflags} ${warnflags}'
|
15
|
-
if test -z "${CXXFLAGS+set}"; then
|
16
|
-
cxxflags=`echo " $cxxflags " | sed "$cflagspat;s/^ *//;s/ *$//"`
|
17
|
-
orig_cxxflags="$cxxflags"
|
18
|
-
@@ -511,7 +509,8 @@
|
19
|
-
])
|
20
|
-
fi
|
21
|
-
|
22
|
-
-test -z "${ac_env_CFLAGS_set}" -a -n "${cflags+set}" && eval CFLAGS="\"$cflags $ARCH_FLAG\""
|
23
|
-
+test -z "${ac_env_CFLAGS_set}" && CFLAGS="$ARCH_FLAG"
|
24
|
-
+test -n "${cflags:+set}" && eval CFLAGS="\"$cflags\${CFLAGS:+ $CFLAGS}\""
|
25
|
-
test -z "${ac_env_CXXFLAGS_set}" -a -n "${cxxflags+set}" && eval CXXFLAGS="\"$cxxflags $ARCH_FLAG\""
|
26
|
-
|
27
|
-
dnl check for large file stuff
|
@@ -1,32 +0,0 @@
|
|
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
|
-
# This is a clone of chef that we can install on build and test machines
|
19
|
-
# without interfering with the regular build/test.
|
20
|
-
|
21
|
-
name "angrychef"
|
22
|
-
maintainer "Opscode, Inc."
|
23
|
-
homepage "http://www.opscode.com"
|
24
|
-
|
25
|
-
replaces "angrychef"
|
26
|
-
install_dir "/opt/angrychef"
|
27
|
-
build_version '1.0.0'
|
28
|
-
build_iteration 4
|
29
|
-
|
30
|
-
dependency "preparation"
|
31
|
-
dependency "chef"
|
32
|
-
dependency "version-manifest"
|
@@ -1,32 +0,0 @@
|
|
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
|
-
maintainer "Opscode, Inc."
|
20
|
-
homepage "http://www.opscode.com"
|
21
|
-
|
22
|
-
# NOTE: Ruby DevKit fundamentally CANNOT be installed into "Program Files"
|
23
|
-
# Native gems will use gcc which will barf on files with spaces,
|
24
|
-
# which is only fixable if everyone in the world fixes their Makefiles
|
25
|
-
install_dir "C:/opscode/chef"
|
26
|
-
build_version '1.0.0'
|
27
|
-
build_iteration 4
|
28
|
-
package_name "chef-client"
|
29
|
-
|
30
|
-
dependency "preparation"
|
31
|
-
dependency "chef-windows"
|
32
|
-
dependency "chef-client-msi"
|
@@ -1,32 +0,0 @@
|
|
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"
|
19
|
-
friendly_name "Chef Client"
|
20
|
-
maintainer "Opscode, Inc."
|
21
|
-
homepage "http://www.opscode.com"
|
22
|
-
|
23
|
-
replaces "chef-full"
|
24
|
-
install_dir "/opt/chef"
|
25
|
-
build_version '1.0.0'
|
26
|
-
build_iteration 4
|
27
|
-
mac_pkg_identifier "com.getchef.pkg.chef"
|
28
|
-
resources_path File.join(files_path, name)
|
29
|
-
|
30
|
-
dependency "preparation"
|
31
|
-
dependency "chef"
|
32
|
-
dependency "version-manifest"
|
@@ -1,41 +0,0 @@
|
|
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 "chefdk-windows"
|
19
|
-
maintainer "Opscode, Inc."
|
20
|
-
homepage "http://www.opscode.com"
|
21
|
-
|
22
|
-
# NOTE: Ruby DevKit fundamentally CANNOT be installed into "Program Files"
|
23
|
-
# Native gems will use gcc which will barf on files with spaces,
|
24
|
-
# which is only fixable if everyone in the world fixes their Makefiles
|
25
|
-
install_dir "C:/opscode/chefdk"
|
26
|
-
build_version '1.0.0'
|
27
|
-
build_iteration 1
|
28
|
-
|
29
|
-
package_name "chef-dk"
|
30
|
-
|
31
|
-
override :berkshelf, version: "3.0.0.beta6"
|
32
|
-
override :bundler, version: "1.5.2"
|
33
|
-
override :nokogiri, version: "1.6.1"
|
34
|
-
|
35
|
-
dependency "preparation"
|
36
|
-
dependency "ruby-windows"
|
37
|
-
dependency "libyaml-windows"
|
38
|
-
dependency "ruby-windows-devkit"
|
39
|
-
dependency "chef-windows"
|
40
|
-
dependency "chefdk"
|
41
|
-
dependency "chef-client-msi"
|
@@ -1,44 +0,0 @@
|
|
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 "chefdk"
|
19
|
-
friendly_name "Chef DK"
|
20
|
-
maintainer "Opscode, Inc."
|
21
|
-
homepage "http://www.opscode.com"
|
22
|
-
|
23
|
-
install_dir "/opt/chefdk"
|
24
|
-
build_version '1.0.0'
|
25
|
-
build_iteration 1
|
26
|
-
mac_pkg_identifier "com.getchef.pkg.chefdk"
|
27
|
-
resources_path File.join(files_path, name)
|
28
|
-
|
29
|
-
override :berkshelf, version: "master"
|
30
|
-
override :bundler, version: "1.5.2"
|
31
|
-
override :libedit, version: "20130712-3.1"
|
32
|
-
override :libtool, version: "2.4.2"
|
33
|
-
override :libxml2, version: "2.9.1"
|
34
|
-
override :libxslt, version: "1.1.28"
|
35
|
-
override :nokogiri, version: "1.6.1"
|
36
|
-
override :ruby, version: "2.1.1"
|
37
|
-
override :rubygems, version: "2.2.1"
|
38
|
-
override :yajl, version: "1.2.0"
|
39
|
-
override :zlib, version: "1.2.8"
|
40
|
-
|
41
|
-
dependency "preparation"
|
42
|
-
dependency "chefdk"
|
43
|
-
dependency "rubygems-customization"
|
44
|
-
dependency "version-manifest"
|
@@ -1,25 +0,0 @@
|
|
1
|
-
#
|
2
|
-
# Copyright:: Copyright (c) 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 "appbundler"
|
19
|
-
default_version "0.1.0.beta.0"
|
20
|
-
|
21
|
-
dependency "bundler"
|
22
|
-
|
23
|
-
build do
|
24
|
-
gem "install appbundler --no-rdoc --no-ri -v '#{version}'"
|
25
|
-
end
|