eclass/ruby-utils: Sync with Gentoo

It's from Gentoo commit 1040ec9c3f79e00f688490cfaf91ee6926002ab2.
This commit is contained in:
Flatcar Buildbot 2024-10-21 07:07:15 +00:00
parent 2823650ddb
commit 59c37162f8

View File

@ -6,7 +6,7 @@
# Ruby team <ruby@gentoo.org> # Ruby team <ruby@gentoo.org>
# @AUTHOR: # @AUTHOR:
# Author: Hans de Graaff <graaff@gentoo.org> # Author: Hans de Graaff <graaff@gentoo.org>
# @SUPPORTED_EAPIS: 5 6 7 8 # @SUPPORTED_EAPIS: 7 8
# @BLURB: An eclass for supporting ruby scripts and bindings in non-ruby packages # @BLURB: An eclass for supporting ruby scripts and bindings in non-ruby packages
# @DESCRIPTION: # @DESCRIPTION:
# The ruby-utils eclass is designed to allow an easier installation of # The ruby-utils eclass is designed to allow an easier installation of
@ -15,13 +15,10 @@
# This eclass does not set any metadata variables nor export any phase # This eclass does not set any metadata variables nor export any phase
# functions. It can be inherited safely. # functions. It can be inherited safely.
if [[ ! ${_RUBY_UTILS} ]]; then if [[ -z ${_RUBY_UTILS_ECLASS} ]] ; then
_RUBY_UTILS_ECLASS=1
case ${EAPI} in case ${EAPI} in
5|6)
ewarn "${CATEGORY}/${PF}: ebuild uses ${ECLASS} with deprecated EAPI ${EAPI}!"
ewarn "${CATEGORY}/${PF}: Support will be removed on 2024-10-08. Please port to newer EAPI."
;;
7|8) ;; 7|8) ;;
*) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
esac esac
@ -68,5 +65,4 @@ _ruby_implementation_depend() {
echo "$2${rubypn}$3${rubyslot}" echo "$2${rubypn}$3${rubyslot}"
} }
_RUBY_UTILS=1
fi fi