summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2023-06-20 12:44:23 +0200
committerConrad Kostecki <conikost@gentoo.org>2023-06-23 23:28:25 +0200
commit451ddf734cfe9a2395c36d93ebcb2565b41701fa (patch)
tree0ff489eaeca307dce579305d4bfaf48f7eda0c42
parentapp-forensics/yara: remove unused patch(es) (diff)
downloadgentoo-451ddf734cfe9a2395c36d93ebcb2565b41701fa.tar.gz
gentoo-451ddf734cfe9a2395c36d93ebcb2565b41701fa.tar.bz2
gentoo-451ddf734cfe9a2395c36d93ebcb2565b41701fa.zip
dev-ruby/rubygems: remove unused file
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/31553 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
-rw-r--r--dev-ruby/rubygems/files/gentoo-defaults-4.rb63
1 files changed, 0 insertions, 63 deletions
diff --git a/dev-ruby/rubygems/files/gentoo-defaults-4.rb b/dev-ruby/rubygems/files/gentoo-defaults-4.rb
deleted file mode 100644
index 1da07f64ddef..000000000000
--- a/dev-ruby/rubygems/files/gentoo-defaults-4.rb
+++ /dev/null
@@ -1,63 +0,0 @@
-# frozen_string_literal: true
-
-# Gentoo defaults for rubygems 3.x
-#
-# Gentoo policy is to install all manually installed code into
-# /usr/local and to keep /usr managed by Gentoo. This policy file
-# ensures that all manually installed gems using "gem install" are
-# installed in /usr/local. Gentoo gems are installed in /usr.
-
-# TODO: We used to manipulate the default_dir, but this no longer
-# works since this is now the base for the new "default" gems that
-# ruby 2.6 uses with irb. So default_dir should refer to the system
-# default now. rubygems also provides various hooks so we may be able
-# to use those to install gems in /usr/local by default in a less
-# intrusive way.
-module Gem
-
- class << self
- def portage_gems_dir
- RbConfig::CONFIG['sitelibdir'].gsub('site_ruby', 'gems')
- end
-
- def local_dir
- portage_gems_dir.gsub('@GENTOO_PORTAGE_EPREFIX@/usr',
- '@GENTOO_PORTAGE_EPREFIX@/usr/local')
- end
-
- def install_dir
- Process.euid.zero? ? local_dir : user_dir
- end
-
- undef :default_path
- def default_path
- path = []
- path << user_dir if user_home && File.exist?(user_home)
- path << default_dir
- path << vendor_dir if vendor_dir && File.directory?(vendor_dir)
- path << local_dir
- path << portage_gems_dir
- end
-
- def system_config_path
- '@GENTOO_PORTAGE_EPREFIX@/etc'
- end
-
- # Set Gentoo defaults for gem commands
- begin
- undef :operating_system_defaults
- rescue NameError
- # Avoid either runtime errors or redefinition warnings since
- # this method is not present in all rubygem versions distributed
- # with dev-lang/ruby.
- end
- def operating_system_defaults
- {
- 'install' => "--install-dir #{install_dir}",
- 'uninstall' => "--install-dir #{install_dir}",
- 'update' => "--install-dir #{install_dir}"
- }
- end
-
- end
-end