diff options
author | 2023-09-23 08:28:27 +0200 | |
---|---|---|
committer | 2023-09-23 08:28:27 +0200 | |
commit | 330877b0d98143a64eb4fb7b9c33840741dade4a (patch) | |
tree | 9b723d75beabd9df8001d858d64eb1d9567cd562 /eclass | |
parent | dev-ruby/async-io: add 1.36.0 (diff) | |
download | gentoo-330877b0d98143a64eb4fb7b9c33840741dade4a.tar.gz gentoo-330877b0d98143a64eb4fb7b9c33840741dade4a.tar.bz2 gentoo-330877b0d98143a64eb4fb7b9c33840741dade4a.zip |
eclass/ruby-utils.eclass: drop ruby30 from preferences
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ruby-utils.eclass | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/eclass/ruby-utils.eclass b/eclass/ruby-utils.eclass index 8a2b7720c951..48d701a3ebc7 100644 --- a/eclass/ruby-utils.eclass +++ b/eclass/ruby-utils.eclass @@ -22,7 +22,6 @@ esac if [[ ! ${_RUBY_UTILS} ]]; then - # @ECLASS_VARIABLE: RUBY_TARGETS_PREFERENCE # @INTERNAL # @DESCRIPTION: @@ -33,12 +32,11 @@ if [[ ! ${_RUBY_UTILS} ]]; then # provide for a better first installation experience. # All stable RUBY_TARGETS -RUBY_TARGETS_PREFERENCE="ruby31 ruby30 " +RUBY_TARGETS_PREFERENCE="ruby31 " # All other active ruby targets RUBY_TARGETS_PREFERENCE+="ruby32" - _ruby_implementation_depend() { local rubypn= local rubyslot= @@ -66,7 +64,5 @@ _ruby_implementation_depend() { echo "$2${rubypn}$3${rubyslot}" } - - _RUBY_UTILS=1 fi |