diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-05-13 12:19:53 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-05-15 15:28:01 +0200 |
commit | bfdd4d89c101c2a889f478a571fb927416a49c2e (patch) | |
tree | adc0a1242e350487cbd61161bdda9415afcc7d37 /eclass/ruby-ng.eclass | |
parent | ruby-ng.eclass: Indirect USE_RUBY into a function (diff) | |
download | gentoo-bfdd4d89c101c2a889f478a571fb927416a49c2e.tar.gz gentoo-bfdd4d89c101c2a889f478a571fb927416a49c2e.tar.bz2 gentoo-bfdd4d89c101c2a889f478a571fb927416a49c2e.zip |
ruby-ng.eclass: Kill ruby19
Diffstat (limited to 'eclass/ruby-ng.eclass')
-rw-r--r-- | eclass/ruby-ng.eclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/ruby-ng.eclass b/eclass/ruby-ng.eclass index 64f1b4f402f5..2a8d1a29b255 100644 --- a/eclass/ruby-ng.eclass +++ b/eclass/ruby-ng.eclass @@ -14,7 +14,6 @@ # and their incorporation into the Gentoo Linux system. # # Currently available targets are: -# * ruby19 - Ruby (MRI) 1.9.x # * ruby20 - Ruby (MRI) 2.0.x # * ruby21 - Ruby (MRI) 2.1.x # * ruby22 - Ruby (MRI) 2.2.x @@ -118,6 +117,9 @@ _ruby_get_all_impls() { local i for i in ${USE_RUBY}; do case ${i} in + # removed implementations + ruby19) + ;; *) echo ${i};; esac |