commit:     5f85ec1c9f3b5a5eaa84068d010282f4677c9606
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 30 19:02:42 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jan  5 10:04:54 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f85ec1c

ruby-ng.eclass: Include (-) in RUBY_TARGETS USE-dependencies

Using 2-style USE dependencies on packages not having the flag
in question is forbidden by PMS.

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 eclass/ruby-ng.eclass | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/eclass/ruby-ng.eclass b/eclass/ruby-ng.eclass
index db701d81f4f..f92547b49a9 100644
--- a/eclass/ruby-ng.eclass
+++ b/eclass/ruby-ng.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # @ECLASS: ruby-ng.eclass
@@ -137,7 +137,7 @@ ruby_samelib() {
        local res=
        for _ruby_implementation in $(_ruby_get_all_impls); do
                has -${_ruby_implementation} $@ || \
-                       res="${res}ruby_targets_${_ruby_implementation}?,"
+                       res="${res}ruby_targets_${_ruby_implementation}(-)?,"
        done
 
        echo "[${res%,}]"
@@ -151,9 +151,9 @@ _ruby_atoms_samelib_generic() {
                        "||" | "(" | ")" | *"?")
                                echo "${token}" ;;
                        *])
-                               echo "${token%[*}[RUBYTARGET,${token/*[}" ;;
+                               echo "${token%[*}[RUBYTARGET(-),${token/*[}" ;;
                        *)
-                               echo "${token}[RUBYTARGET]" ;;
+                               echo "${token}[RUBYTARGET(-)]" ;;
                esac
        done
        echo ")"

Reply via email to