e811eb0
From ec90622235ae19b28a327cb50a10e0311e8f3d71 Mon Sep 17 00:00:00 2001
117278a
From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <vondruch@redhat.com>
117278a
Date: Thu, 3 Nov 2011 16:43:05 +0100
e1890f9
Subject: [PATCH 1/8] Add dedicate extensions folder into $LOAD_PATH.
117278a
117278a
---
3fa8028
 lib/rubygems/specification.rb | 32 ++++++++++++++++++++++++++++++--
3fa8028
 1 file changed, 30 insertions(+), 2 deletions(-)
117278a
117278a
diff --git a/lib/rubygems/specification.rb b/lib/rubygems/specification.rb
e811eb0
index cabdf8d..87b14d2 100644
117278a
--- a/lib/rubygems/specification.rb
117278a
+++ b/lib/rubygems/specification.rb
f593432
@@ -1256,6 +1256,12 @@ class Gem::Specification
117278a
       File.join full_gem_path, path
117278a
     end
117278a
 
117278a
+    unless extensions.empty?
117278a
+      paths += require_paths.map do |path|
117278a
+        File.join ext_dir, path
117278a
+      end
117278a
+    end
117278a
+
117278a
     # gem directories must come after -I and ENV['RUBYLIB']
117278a
     insert_index = Gem.load_path_insert_index
117278a
 
f593432
@@ -1374,11 +1380,16 @@ class Gem::Specification
117278a
 
117278a
   def contains_requirable_file? file
3fa8028
     root     = full_gem_path
3fa8028
+    ext      = ext_dir
3fa8028
     suffixes = Gem.suffixes
117278a
 
3fa8028
     require_paths.any? do |lib|
117278a
-      base = "#{root}/#{lib}/#{file}"
3fa8028
-      suffixes.any? { |suf| File.file? "#{base}#{suf}" }
3fa8028
+      base = ["#{root}/#{lib}/#{file}"]
3fa8028
+      base << "#{ext}/#{lib}/#{file}" unless extensions.empty?
3fa8028
+
117278a
+      base.any? do |path|
3fa8028
+        suffixes.any? { |suf| File.file? "#{path}#{suf}" }
3fa8028
+      end
117278a
     end
117278a
   end
117278a
 
f593432
@@ -1674,6 +1685,23 @@ class Gem::Specification
117278a
   end
117278a
 
117278a
   ##
117278a
+  # Returns the full path to this spec's ext directory.
117278a
+  # eg: /usr/local/lib/ruby/1.8/exts/mygem-1.0
117278a
+
117278a
+  def ext_dir
117278a
+    @gem_dir ||= File.expand_path File.join(exts_dir, full_name)
117278a
+  end
117278a
+
117278a
+  ##
117278a
+  # Returns the full path to the exts directory containing this spec's
117278a
+  # gem directory. eg: /usr/local/lib/ruby/1.8/exts
117278a
+
117278a
+  def exts_dir
117278a
+    # TODO: this logic seems terribly broken, but tests fail if just base_dir
117278a
+    @exts_dir ||= File.join(loaded_from && base_dir || Gem.dir, "exts")
117278a
+  end
117278a
+
117278a
+  ##
117278a
   # Deprecated and ignored, defaults to true.
117278a
   #
117278a
   # Formerly used to indicate this gem was RDoc-capable.
117278a
-- 
929678a
1.8.1.2
117278a
117278a
e811eb0
From e42819f32fc5d935f7e7189ec4be8bdab0a2cf3f Mon Sep 17 00:00:00 2001
117278a
From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <vondruch@redhat.com>
117278a
Date: Wed, 16 Nov 2011 13:26:48 +0100
e1890f9
Subject: [PATCH 2/8] Use spec's ext dir for extension installation.
117278a
117278a
---
3fa8028
 lib/rubygems/installer.rb     | 2 +-
3fa8028
 lib/rubygems/specification.rb | 7 +++----
117278a
 2 files changed, 4 insertions(+), 5 deletions(-)
117278a
117278a
diff --git a/lib/rubygems/installer.rb b/lib/rubygems/installer.rb
e811eb0
index 780a88b..854c177 100644
117278a
--- a/lib/rubygems/installer.rb
117278a
+++ b/lib/rubygems/installer.rb
e1890f9
@@ -646,7 +646,7 @@ TEXT
3fa8028
       say "This could take a while..."
3fa8028
     end
3fa8028
 
117278a
-    dest_path = File.join gem_dir, spec.require_paths.first
117278a
+    dest_path = spec.ext_dir
117278a
     ran_rake = false # only run rake once
117278a
 
117278a
     spec.extensions.each do |extension|
117278a
diff --git a/lib/rubygems/specification.rb b/lib/rubygems/specification.rb
e811eb0
index 87b14d2..492ddbe 100644
117278a
--- a/lib/rubygems/specification.rb
117278a
+++ b/lib/rubygems/specification.rb
f593432
@@ -1689,16 +1689,15 @@ class Gem::Specification
117278a
   # eg: /usr/local/lib/ruby/1.8/exts/mygem-1.0
117278a
 
117278a
   def ext_dir
117278a
-    @gem_dir ||= File.expand_path File.join(exts_dir, full_name)
117278a
+    @ext_dir ||= File.join exts_dir, full_name, require_paths.first
117278a
   end
117278a
 
117278a
   ##
117278a
   # Returns the full path to the exts directory containing this spec's
117278a
-  # gem directory. eg: /usr/local/lib/ruby/1.8/exts
117278a
+  # gem directory. eg: /usr/local/lib/ruby/1.8/gems
117278a
 
117278a
   def exts_dir
117278a
-    # TODO: this logic seems terribly broken, but tests fail if just base_dir
117278a
-    @exts_dir ||= File.join(loaded_from && base_dir || Gem.dir, "exts")
117278a
+    @exts_dir ||= gems_dir
117278a
   end
117278a
 
117278a
   ##
117278a
-- 
929678a
1.8.1.2
117278a
117278a
e811eb0
From 0e9dd0655111f7dda805233c79a3771459d9a66a Mon Sep 17 00:00:00 2001
117278a
From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <vondruch@redhat.com>
117278a
Date: Wed, 16 Nov 2011 14:52:16 +0100
929678a
Subject: [PATCH 3/9] Simplify the extending of $LOAD_PATH for binary gems.
117278a
117278a
---
3fa8028
 lib/rubygems/specification.rb | 11 +++++------
3fa8028
 1 file changed, 5 insertions(+), 6 deletions(-)
117278a
117278a
diff --git a/lib/rubygems/specification.rb b/lib/rubygems/specification.rb
e811eb0
index 492ddbe..c703827 100644
117278a
--- a/lib/rubygems/specification.rb
117278a
+++ b/lib/rubygems/specification.rb
f593432
@@ -1256,11 +1256,7 @@ class Gem::Specification
117278a
       File.join full_gem_path, path
117278a
     end
117278a
 
117278a
-    unless extensions.empty?
117278a
-      paths += require_paths.map do |path|
117278a
-        File.join ext_dir, path
117278a
-      end
117278a
-    end
117278a
+    paths << ext_dir unless extensions.empty? || paths.include?(ext_dir)
117278a
 
117278a
     # gem directories must come after -I and ENV['RUBYLIB']
117278a
     insert_index = Gem.load_path_insert_index
f593432
@@ -1697,7 +1693,10 @@ class Gem::Specification
117278a
   # gem directory. eg: /usr/local/lib/ruby/1.8/gems
117278a
 
117278a
   def exts_dir
117278a
-    @exts_dir ||= gems_dir
117278a
+    @exts_dir ||= begin
117278a
+      dirs = Gem.default_dirs.detect {|location, paths| paths[:gem_dir] == base_dir}
117278a
+      dirs ? File.join(dirs.last[:ext_dir], 'exts') : gems_dir
117278a
+    end
117278a
   end
117278a
 
117278a
   ##
117278a
-- 
929678a
1.8.1.2
117278a
117278a
e811eb0
From 9a8556c609e800d0dbd24af416d613f2e82f323c Mon Sep 17 00:00:00 2001
117278a
From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <vondruch@redhat.com>
117278a
Date: Fri, 9 Dec 2011 16:31:04 +0100
e1890f9
Subject: [PATCH 4/8] Fix the binary extension search path construction.
117278a
117278a
---
3fa8028
 lib/rubygems/installer.rb     | 2 +-
3fa8028
 lib/rubygems/specification.rb | 4 ++--
117278a
 2 files changed, 3 insertions(+), 3 deletions(-)
117278a
117278a
diff --git a/lib/rubygems/installer.rb b/lib/rubygems/installer.rb
e811eb0
index 854c177..f1f2ad7 100644
117278a
--- a/lib/rubygems/installer.rb
117278a
+++ b/lib/rubygems/installer.rb
e1890f9
@@ -646,7 +646,7 @@ TEXT
3fa8028
       say "This could take a while..."
3fa8028
     end
3fa8028
 
117278a
-    dest_path = spec.ext_dir
117278a
+    dest_path = File.join spec.ext_dir, spec.require_paths.first
117278a
     ran_rake = false # only run rake once
117278a
 
117278a
     spec.extensions.each do |extension|
117278a
diff --git a/lib/rubygems/specification.rb b/lib/rubygems/specification.rb
e811eb0
index c703827..fa9ea6e 100644
117278a
--- a/lib/rubygems/specification.rb
117278a
+++ b/lib/rubygems/specification.rb
f593432
@@ -1256,7 +1256,7 @@ class Gem::Specification
117278a
       File.join full_gem_path, path
117278a
     end
117278a
 
117278a
-    paths << ext_dir unless extensions.empty? || paths.include?(ext_dir)
117278a
+    paths << File.join(ext_dir, require_paths.first) unless extensions.empty? || (ext_dir == full_gem_path)
117278a
 
117278a
     # gem directories must come after -I and ENV['RUBYLIB']
117278a
     insert_index = Gem.load_path_insert_index
f593432
@@ -1685,7 +1685,7 @@ class Gem::Specification
117278a
   # eg: /usr/local/lib/ruby/1.8/exts/mygem-1.0
117278a
 
117278a
   def ext_dir
117278a
-    @ext_dir ||= File.join exts_dir, full_name, require_paths.first
117278a
+    @ext_dir ||= File.join exts_dir, full_name
117278a
   end
117278a
 
117278a
   ##
117278a
-- 
929678a
1.8.1.2
117278a
117278a
e811eb0
From 476c2f90cc6f5f490858f253a9b23eb19d53d2fc Mon Sep 17 00:00:00 2001
117278a
From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <vondruch@redhat.com>
117278a
Date: Tue, 13 Dec 2011 12:14:54 +0100
e1890f9
Subject: [PATCH 5/8] Remove binary extensions during uninstall.
117278a
117278a
---
3fa8028
 lib/rubygems/uninstaller.rb | 1 +
3fa8028
 1 file changed, 1 insertion(+)
117278a
117278a
diff --git a/lib/rubygems/uninstaller.rb b/lib/rubygems/uninstaller.rb
e811eb0
index d672b9d..5c31a0c 100644
117278a
--- a/lib/rubygems/uninstaller.rb
117278a
+++ b/lib/rubygems/uninstaller.rb
a91606d
@@ -246,6 +246,7 @@ class Gem::Uninstaller
117278a
       File.writable?(spec.base_dir)
117278a
 
117278a
     FileUtils.rm_rf spec.full_gem_path
117278a
+    FileUtils.rm_rf spec.ext_dir
117278a
 
117278a
     # TODO: should this be moved to spec?... I vote eww (also exists in docmgr)
117278a
     old_platform_name = [spec.name,
117278a
-- 
929678a
1.8.1.2
117278a
117278a
e811eb0
From 35dc17e86f701fe1be80d98ace79735c535fd570 Mon Sep 17 00:00:00 2001
117278a
From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <vondruch@redhat.com>
117278a
Date: Tue, 13 Dec 2011 14:27:14 +0100
e1890f9
Subject: [PATCH 6/8] Avoid dependency on customized operating_system.rb.
117278a
117278a
---
3fa8028
 lib/rubygems/defaults.rb      | 11 +++++++++++
3fa8028
 lib/rubygems/specification.rb |  5 +----
117278a
 2 files changed, 12 insertions(+), 4 deletions(-)
117278a
117278a
diff --git a/lib/rubygems/defaults.rb b/lib/rubygems/defaults.rb
e811eb0
index ea84e5c..b221954 100644
117278a
--- a/lib/rubygems/defaults.rb
117278a
+++ b/lib/rubygems/defaults.rb
66b9825
@@ -101,6 +101,17 @@ module Gem
117278a
   end
117278a
 
117278a
   ##
117278a
+  # Returns binary extensions dir for specified RubyGems base dir or nil
117278a
+  # if such directory cannot be determined.
117278a
+  #
117278a
+  # By default, the binary extensions are located side by side with their
117278a
+  # Ruby counterparts, therefore nil is returned
117278a
+
117278a
+  def self.default_ext_dir_for base_dir
117278a
+    nil
117278a
+  end
117278a
+
117278a
+  ##
3fa8028
   # A wrapper around RUBY_ENGINE const that may not be defined
117278a
 
3fa8028
   def self.ruby_engine
117278a
diff --git a/lib/rubygems/specification.rb b/lib/rubygems/specification.rb
e811eb0
index fa9ea6e..2b10499 100644
117278a
--- a/lib/rubygems/specification.rb
117278a
+++ b/lib/rubygems/specification.rb
f593432
@@ -1693,10 +1693,7 @@ class Gem::Specification
117278a
   # gem directory. eg: /usr/local/lib/ruby/1.8/gems
117278a
 
117278a
   def exts_dir
117278a
-    @exts_dir ||= begin
117278a
-      dirs = Gem.default_dirs.detect {|location, paths| paths[:gem_dir] == base_dir}
117278a
-      dirs ? File.join(dirs.last[:ext_dir], 'exts') : gems_dir
117278a
-    end
117278a
+    @exts_dir ||= Gem.default_ext_dir_for(base_dir) || gems_dir
117278a
   end
117278a
 
117278a
   ##
117278a
-- 
929678a
1.8.1.2
e811eb0
e811eb0
e811eb0
From 0937c0b0a3c2ed08ab5b0875f7f95e24157525c2 Mon Sep 17 00:00:00 2001
e811eb0
From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <vondruch@redhat.com>
e811eb0
Date: Thu, 7 Feb 2013 13:07:34 +0100
e1890f9
Subject: [PATCH 7/8] Fix binary extensions installation when --install-dir is
e811eb0
 specified.
e811eb0
e811eb0
---
e811eb0
 lib/rubygems/installer.rb | 2 +-
e811eb0
 1 file changed, 1 insertion(+), 1 deletion(-)
e811eb0
e811eb0
diff --git a/lib/rubygems/installer.rb b/lib/rubygems/installer.rb
e811eb0
index f1f2ad7..e1577fc 100644
e811eb0
--- a/lib/rubygems/installer.rb
e811eb0
+++ b/lib/rubygems/installer.rb
e1890f9
@@ -646,7 +646,7 @@ TEXT
e811eb0
       say "This could take a while..."
e811eb0
     end
e811eb0
 
e811eb0
-    dest_path = File.join spec.ext_dir, spec.require_paths.first
e811eb0
+    dest_path = File.join(options[:install_dir] ? gem_dir : spec.ext_dir, spec.require_paths.first)
e811eb0
     ran_rake = false # only run rake once
e811eb0
 
e811eb0
     spec.extensions.each do |extension|
e811eb0
-- 
929678a
1.8.1.2
929678a
929678a
929678a
From 062a11c59731f5875d5a8821a212c8a41cb84577 Mon Sep 17 00:00:00 2001
929678a
From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <vondruch@redhat.com>
929678a
Date: Fri, 15 Feb 2013 17:07:07 +0100
e1890f9
Subject: [PATCH 8/8] Use correct option.
929678a
929678a
---
929678a
 lib/rubygems/installer.rb | 2 +-
929678a
 1 file changed, 1 insertion(+), 1 deletion(-)
929678a
929678a
diff --git a/lib/rubygems/installer.rb b/lib/rubygems/installer.rb
929678a
index e1577fc..1492c68 100644
929678a
--- a/lib/rubygems/installer.rb
929678a
+++ b/lib/rubygems/installer.rb
e1890f9
@@ -646,7 +646,7 @@ TEXT
929678a
       say "This could take a while..."
929678a
     end
929678a
 
929678a
-    dest_path = File.join(options[:install_dir] ? gem_dir : spec.ext_dir, spec.require_paths.first)
929678a
+    dest_path = File.join(@install_dir ? gem_dir : spec.ext_dir, spec.require_paths.first)
929678a
     ran_rake = false # only run rake once
929678a
 
929678a
     spec.extensions.each do |extension|
929678a
-- 
929678a
1.8.1.2
117278a