commit:     f33ff4ba8a36a9a446d4c9e64c72c963a977ede9
Author:     Hans de Graaff <hans <AT> degraaff <DOT> org>
AuthorDate: Thu Mar 30 05:42:27 2017 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Thu Mar 30 05:42:27 2017 +0000
URL:        https://gitweb.gentoo.org/proj/ruby-scripts.git/commit/?id=f33ff4ba

add 2.3.4 patchset

 patchsets/patches-2.3.4/004_gfbsd7.patch           | 37 +++++++++
 patchsets/patches-2.3.4/005_no-undefined-ext.patch | 11 +++
 patchsets/patches-2.3.4/009_no-gems.patch          | 95 ++++++++++++++++++++++
 3 files changed, 143 insertions(+)

diff --git a/patchsets/patches-2.3.4/004_gfbsd7.patch 
b/patchsets/patches-2.3.4/004_gfbsd7.patch
new file mode 100644
index 0000000..fa561b6
--- /dev/null
+++ b/patchsets/patches-2.3.4/004_gfbsd7.patch
@@ -0,0 +1,37 @@
+--- configure.in.orig  2013-05-05 19:36:02.800254192 +0200
++++ configure.in       2013-05-05 19:37:56.573346196 +0200
+@@ -2156,7 +2156,7 @@
+ fi
+ 
+ AS_CASE(["$target_os"],
+-[linux* | gnu* | k*bsd*-gnu | bsdi* | kopensolaris*-gnu | nacl], [
++[linux* | gnu* | k*bsd*-gnu | bsdi* | kopensolaris*-gnu | nacl | freebsd* | 
dragonfly*], [
+     if test "$rb_cv_binary_elf" = no; then
+       with_dln_a_out=yes
+     else
+@@ -2249,7 +2249,7 @@
+       [bsdi3*], [     AS_CASE(["$CC"],
+                       [*shlicc*], [   : ${LDSHARED='$(CC) -r'}
+                                       rb_cv_dlopen=yes])],
+-      [linux* | gnu* | k*bsd*-gnu | netbsd* | bsdi* | kopensolaris*-gnu | 
haiku*], [
++      [linux* | gnu* | k*bsd*-gnu | netbsd* | bsdi* | kopensolaris*-gnu | 
haiku* | freebsd7*], [
+                       : ${LDSHARED='$(CC) -shared'}
+                       if test "$rb_cv_binary_elf" = yes; then
+                           LDFLAGS="$LDFLAGS -Wl,-export-dynamic"
+@@ -2262,7 +2262,6 @@
+       [freebsd*|dragonfly*], [
+                       : ${LDSHARED='$(CC) -shared'}
+                       if test "$rb_cv_binary_elf" = yes; then
+-                          LDFLAGS="$LDFLAGS -rdynamic"
+                           DLDFLAGS="$DLDFLAGS "'-Wl,-soname,$@'
+                       else
+                         test "$GCC" = yes && test "$rb_cv_prog_gnu_ld" = yes 
|| LDSHARED='$(LD) -Bshareable'
+@@ -2638,7 +2637,7 @@
+     [sunos4*], [
+       LIBRUBY_ALIASES='lib$(RUBY_SO_NAME).so.$(MAJOR).$(MINOR) 
lib$(RUBY_SO_NAME).so'
+       ],
+-    [linux* | gnu* | k*bsd*-gnu | atheos* | kopensolaris*-gnu | haiku*], [
++    [linux* | gnu* | k*bsd*-gnu | atheos* | kopensolaris*-gnu | haiku* | 
freebsd7*], [
+       LIBRUBY_DLDFLAGS='-Wl,-soname,lib$(RUBY_SO_NAME).so.$(MAJOR).$(MINOR)'" 
$LDFLAGS_OPTDIR"
+       LIBRUBY_ALIASES='lib$(RUBY_SO_NAME).so.$(MAJOR).$(MINOR) 
lib$(RUBY_SO_NAME).so'
+       if test "$load_relative" = yes; then

diff --git a/patchsets/patches-2.3.4/005_no-undefined-ext.patch 
b/patchsets/patches-2.3.4/005_no-undefined-ext.patch
new file mode 100644
index 0000000..f279932
--- /dev/null
+++ b/patchsets/patches-2.3.4/005_no-undefined-ext.patch
@@ -0,0 +1,11 @@
+--- ruby-1.9.3-preview1.orig/configure.in
++++ ruby-1.9.3-preview1/configure.in
+@@ -2038,7 +2038,7 @@ if test "$with_dln_a_out" != yes; then
+       [linux* | gnu* | k*bsd*-gnu | netbsd* | bsdi* | kopensolaris*-gnu], [
+                       : ${LDSHARED='$(CC) -shared'}
+                       if test "$rb_cv_binary_elf" = yes; then
+-                          LDFLAGS="$LDFLAGS -Wl,-export-dynamic"
++                          LDFLAGS="$LDFLAGS -Wl,-export-dynamic 
-Wl,--no-undefined"
+                       fi
+                       rb_cv_dlopen=yes],
+       [interix*], [   : ${LDSHARED='$(CC) -shared'}

diff --git a/patchsets/patches-2.3.4/009_no-gems.patch 
b/patchsets/patches-2.3.4/009_no-gems.patch
new file mode 100644
index 0000000..2da6b7d
--- /dev/null
+++ b/patchsets/patches-2.3.4/009_no-gems.patch
@@ -0,0 +1,95 @@
+--- tool/rbinstall.rb.~1~      2017-03-27 17:18:38.000000000 +0200
++++ tool/rbinstall.rb  2017-03-30 07:38:53.437332083 +0200
+@@ -696,90 +696,11 @@
+ # :startdoc:
+ 
+ install?(:ext, :comm, :gem) do
+-  gem_dir = Gem.default_dir
+-  directories = Gem.ensure_gem_subdirectories(gem_dir, :mode => $dir_mode)
+-  prepare "default gems", gem_dir, directories
+-
+-  spec_dir = File.join(gem_dir, directories.grep(/^spec/)[0])
+-  default_spec_dir = "#{spec_dir}/default"
+-  makedirs(default_spec_dir)
+-
+-  gems = {}
+-
+-  Dir.glob(srcdir+"/{lib,ext}/**/*.gemspec").each do |src|
+-    specgen   = RbInstall::Specs::Reader.new(src)
+-    gems[specgen.gemspec.name] ||= specgen
+-  end
+-
+-  gems.sort.each do |name, specgen|
+-    gemspec   = specgen.gemspec
+-    full_name = "#{gemspec.name}-#{gemspec.version}"
+-
+-    puts "#{" "*30}#{gemspec.name} #{gemspec.version}"
+-    gemspec_path = File.join(default_spec_dir, "#{full_name}.gemspec")
+-    open_for_install(gemspec_path, $data_mode) do
+-      specgen.spec_source
+-    end
+-
+-    unless gemspec.executables.empty? then
+-      bin_dir = File.join(gem_dir, 'gems', full_name, 'bin')
+-      makedirs(bin_dir)
+-
+-      execs = gemspec.executables.map {|exec| File.join(srcdir, 'bin', exec)}
+-      install(execs, bin_dir, :mode => $script_mode)
+-    end
+-  end
++  # gems are unbundled in Gentoo
+ end
+ 
+ install?(:ext, :comm, :gem) do
+-  gem_dir = Gem.default_dir
+-  directories = Gem.ensure_gem_subdirectories(gem_dir, :mode => $dir_mode)
+-  prepare "bundle gems", gem_dir, directories
+-  install_dir = with_destdir(gem_dir)
+-  installed_gems = {}
+-  options = {
+-    :install_dir => install_dir,
+-    :bin_dir => with_destdir(bindir),
+-    :domain => :local,
+-    :ignore_dependencies => true,
+-    :dir_mode => $dir_mode,
+-    :data_mode => $data_mode,
+-    :prog_mode => $prog_mode,
+-    :wrappers => true,
+-    :format_executable => true,
+-  }
+-  Gem::Specification.each_spec([srcdir+'/gems/*']) do |spec|
+-    ins = RbInstall::UnpackedInstaller.new(spec, options)
+-    puts "#{" "*30}#{spec.name} #{spec.version}"
+-    ins.install
+-    File.chmod($data_mode, File.join(install_dir, "specifications", 
"#{spec.full_name}.gemspec"))
+-    installed_gems[spec.full_name] = true
+-  end
+-  installed_gems, gems = Dir.glob(srcdir+'/gems/*.gem').partition {|gem| 
installed_gems.key?(File.basename(gem, '.gem'))}
+-  unless installed_gems.empty?
+-    install installed_gems, gem_dir+"/cache"
+-  end
+-  next if gems.empty?
+-  if defined?(Zlib)
+-    Gem.instance_variable_set(:@ruby, with_destdir(File.join(bindir, 
ruby_install_name)))
+-    gems.each do |gem|
+-      begin
+-        File.umask(022)
+-        Gem.install(gem, Gem::Requirement.default, options)
+-      ensure
+-        File.umask(0222)
+-      end
+-      gemname = File.basename(gem)
+-      puts "#{" "*30}#{gemname}"
+-    end
+-    # fix directory permissions
+-    # TODO: Gem.install should accept :dir_mode option or something
+-    File.chmod($dir_mode, *Dir.glob(install_dir+"/**/"))
+-    # fix .gemspec permissions
+-    File.chmod($data_mode, *Dir.glob(install_dir+"/specifications/*.gemspec"))
+-  else
+-    puts "skip installing bundle gems because of lacking zlib"
+-  end
++  # gems are unbundled in Gentoo
+ end
+ 
+ parse_args()

Reply via email to