mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
204 lines
5.9 KiB
Diff
204 lines
5.9 KiB
Diff
|
diff --git a/lib/rubygems.rb b/lib/rubygems.rb
|
||
|
index e42aca8..84128e1 100644
|
||
|
--- a/lib/rubygems.rb
|
||
|
+++ b/lib/rubygems.rb
|
||
|
@@ -297,10 +297,12 @@ def self.binary_mode
|
||
|
##
|
||
|
# The path where gem executables are to be installed.
|
||
|
|
||
|
- def self.bindir(install_dir=Gem.dir)
|
||
|
- return File.join install_dir, "bin" unless
|
||
|
- install_dir.to_s == Gem.default_dir.to_s
|
||
|
- Gem.default_bindir
|
||
|
+ def self.bindir(install_dir=nil)
|
||
|
+ if install_dir
|
||
|
+ File.join install_dir, "bin"
|
||
|
+ else
|
||
|
+ Gem.default_bindir
|
||
|
+ end
|
||
|
end
|
||
|
|
||
|
##
|
||
|
diff --git a/lib/rubygems/config_file.rb b/lib/rubygems/config_file.rb
|
||
|
index 4aa8b4d..8354c08 100644
|
||
|
--- a/lib/rubygems/config_file.rb
|
||
|
+++ b/lib/rubygems/config_file.rb
|
||
|
@@ -62,12 +62,7 @@ class Gem::ConfigFile
|
||
|
# :stopdoc:
|
||
|
|
||
|
SYSTEM_CONFIG_PATH =
|
||
|
- begin
|
||
|
- require "etc"
|
||
|
- Etc.sysconfdir
|
||
|
- rescue LoadError, NoMethodError
|
||
|
- RbConfig::CONFIG["sysconfdir"] || "/etc"
|
||
|
- end
|
||
|
+ RbConfig::CONFIG["sysconfdir"] || "/etc"
|
||
|
|
||
|
# :startdoc:
|
||
|
|
||
|
diff --git a/lib/rubygems/defaults.rb b/lib/rubygems/defaults.rb
|
||
|
index 8daff0b..1fab83c 100644
|
||
|
--- a/lib/rubygems/defaults.rb
|
||
|
+++ b/lib/rubygems/defaults.rb
|
||
|
@@ -20,13 +20,7 @@ def self.default_sources
|
||
|
# specified in the environment
|
||
|
|
||
|
def self.default_spec_cache_dir
|
||
|
- default_spec_cache_dir = File.join Gem.user_home, ".gem", "specs"
|
||
|
-
|
||
|
- unless File.exist?(default_spec_cache_dir)
|
||
|
- default_spec_cache_dir = File.join Gem.data_home, "gem", "specs"
|
||
|
- end
|
||
|
-
|
||
|
- default_spec_cache_dir
|
||
|
+ File.join Gem.data_home, "specs"
|
||
|
end
|
||
|
|
||
|
##
|
||
|
@@ -34,7 +28,7 @@ def self.default_spec_cache_dir
|
||
|
# specified in the environment
|
||
|
|
||
|
def self.default_dir
|
||
|
- @default_dir ||= File.join(RbConfig::CONFIG["rubylibprefix"], "gems", RbConfig::CONFIG["ruby_version"])
|
||
|
+ @default_dir ||= File.expand_path(File.join(__FILE__, "../../../../../ruby-lang.org/gems", RbConfig::CONFIG["ruby_version"]))
|
||
|
end
|
||
|
|
||
|
##
|
||
|
@@ -100,8 +94,7 @@ def self.user_home
|
||
|
# Path for gems in the user's home directory
|
||
|
|
||
|
def self.user_dir
|
||
|
- gem_dir = File.join(Gem.user_home, ".gem")
|
||
|
- gem_dir = File.join(Gem.data_home, "gem") unless File.exist?(gem_dir)
|
||
|
+ gem_dir = Gem.data_home
|
||
|
parts = [gem_dir, ruby_engine]
|
||
|
parts << RbConfig::CONFIG["ruby_version"] unless RbConfig::CONFIG["ruby_version"].empty?
|
||
|
File.join parts
|
||
|
@@ -111,18 +104,17 @@ def self.user_dir
|
||
|
# The path to standard location of the user's configuration directory.
|
||
|
|
||
|
def self.config_home
|
||
|
- @config_home ||= (ENV["XDG_CONFIG_HOME"] || File.join(Gem.user_home, ".config"))
|
||
|
+ @config_home ||= (ENV["XDG_CONFIG_HOME"] || File.join(Gem.user_home, ".gem"))
|
||
|
end
|
||
|
|
||
|
##
|
||
|
# Finds the user's config file
|
||
|
|
||
|
def self.find_config_file
|
||
|
- gemrc = File.join Gem.user_home, ".gemrc"
|
||
|
- if File.exist? gemrc
|
||
|
- gemrc
|
||
|
+ @gemrc = if ENV["XDG_CONFIG_HOME"]
|
||
|
+ File.join ENV["XDG_CONFIG_HOME"], "gemrc"
|
||
|
else
|
||
|
- File.join Gem.config_home, "gem", "gemrc"
|
||
|
+ File.join Gem.user_home, ".gemrc"
|
||
|
end
|
||
|
end
|
||
|
|
||
|
@@ -137,7 +129,7 @@ def self.config_file
|
||
|
# The path to standard location of the user's state file.
|
||
|
|
||
|
def self.state_file
|
||
|
- @state_file ||= File.join(Gem.state_home, "gem", "last_update_check").tap(&Gem::UNTAINT)
|
||
|
+ @state_file ||= File.join(Gem.state_home, "last_update_check").tap(&Gem::UNTAINT)
|
||
|
end
|
||
|
|
||
|
##
|
||
|
@@ -151,14 +143,18 @@ def self.cache_home
|
||
|
# The path to standard location of the user's data directory.
|
||
|
|
||
|
def self.data_home
|
||
|
- @data_home ||= (ENV["XDG_DATA_HOME"] || File.join(Gem.user_home, ".local", "share"))
|
||
|
+ @data_home ||= if ENV["XDG_DATA_HOME"]
|
||
|
+ File.join(ENV["XDG_DATA_HOME"], "gem")
|
||
|
+ else
|
||
|
+ File.join(Gem.user_home, ".gem")
|
||
|
+ end
|
||
|
end
|
||
|
|
||
|
##
|
||
|
# The path to standard location of the user's state directory.
|
||
|
|
||
|
def self.state_home
|
||
|
- @data_home ||= (ENV["XDG_STATE_HOME"] || File.join(Gem.user_home, ".local", "state"))
|
||
|
+ File.join(Gem.data_home, "state")
|
||
|
end
|
||
|
|
||
|
##
|
||
|
@@ -197,7 +193,7 @@ def self.default_exec_format
|
||
|
# The default directory for binaries
|
||
|
|
||
|
def self.default_bindir
|
||
|
- RbConfig::CONFIG["bindir"]
|
||
|
+ "/usr/local/bin"
|
||
|
end
|
||
|
|
||
|
def self.ruby_engine
|
||
|
@@ -208,26 +204,14 @@ def self.ruby_engine
|
||
|
# The default signing key path
|
||
|
|
||
|
def self.default_key_path
|
||
|
- default_key_path = File.join Gem.user_home, ".gem", "gem-private_key.pem"
|
||
|
-
|
||
|
- unless File.exist?(default_key_path)
|
||
|
- default_key_path = File.join Gem.data_home, "gem", "gem-private_key.pem"
|
||
|
- end
|
||
|
-
|
||
|
- default_key_path
|
||
|
+ File.join Gem.data_home, "private-key.pem"
|
||
|
end
|
||
|
|
||
|
##
|
||
|
# The default signing certificate chain path
|
||
|
|
||
|
def self.default_cert_path
|
||
|
- default_cert_path = File.join Gem.user_home, ".gem", "gem-public_cert.pem"
|
||
|
-
|
||
|
- unless File.exist?(default_cert_path)
|
||
|
- default_cert_path = File.join Gem.data_home, "gem", "gem-public_cert.pem"
|
||
|
- end
|
||
|
-
|
||
|
- default_cert_path
|
||
|
+ File.join Gem.data_home, "public-cert.pem"
|
||
|
end
|
||
|
|
||
|
##
|
||
|
@@ -267,7 +251,10 @@ def self.vendor_dir # :nodoc:
|
||
|
# end
|
||
|
|
||
|
def self.operating_system_defaults
|
||
|
- {}
|
||
|
+ {
|
||
|
+ 'install' => '--no-rdoc --no-ri --env-shebang --user-install',
|
||
|
+ 'update' => '--no-rdoc --no-ri --env-shebang --user-install'
|
||
|
+ }
|
||
|
end
|
||
|
|
||
|
##
|
||
|
|
||
|
diff --git a/lib/rubygems/installer.rb b/lib/rubygems/installer.rb
|
||
|
index 9fbb282..8fa8bd9 100644
|
||
|
--- a/lib/rubygems/installer.rb
|
||
|
+++ b/lib/rubygems/installer.rb
|
||
|
@@ -190,7 +190,7 @@ def initialize(package, options={})
|
||
|
|
||
|
if options[:user_install]
|
||
|
@gem_home = Gem.user_dir
|
||
|
- @bin_dir = Gem.bindir gem_home unless options[:bin_dir]
|
||
|
+ @bin_dir = File.join(Gem.user_home, ".local/bin") unless options[:bin_dir]
|
||
|
@plugins_dir = Gem.plugindir(gem_home)
|
||
|
check_that_user_bin_dir_is_in_path
|
||
|
end
|
||
|
@@ -953,7 +953,7 @@ def write_cache_file
|
||
|
|
||
|
def ensure_writable_dir(dir) # :nodoc:
|
||
|
begin
|
||
|
- Dir.mkdir dir, *[options[:dir_mode] && 0755].compact
|
||
|
+ FileUtils.mkdir_p dir, *[options[:dir_mode] && 0755].compact
|
||
|
rescue SystemCallError
|
||
|
raise unless File.directory? dir
|
||
|
end
|