commit: 81c58ea6b76e62aa94cf23603024a5c6f8e6a3a1 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org> AuthorDate: Sun Jul 21 06:23:31 2019 +0000 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org> CommitDate: Thu Jul 25 06:09:41 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81c58ea6
ruby-ng.eclass: add EAPI 7 support Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org> eclass/ruby-ng.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eclass/ruby-ng.eclass b/eclass/ruby-ng.eclass index 8dc3e166125..c2a09585d8e 100644 --- a/eclass/ruby-ng.eclass +++ b/eclass/ruby-ng.eclass @@ -8,7 +8,7 @@ # Author: Diego E. Pettenò <[email protected]> # Author: Alex Legler <[email protected]> # Author: Hans de Graaff <[email protected]> -# @SUPPORTED_EAPIS: 4 5 6 +# @SUPPORTED_EAPIS: 4 5 6 7 # @BLURB: An eclass for installing Ruby packages with proper support for multiple Ruby slots. # @DESCRIPTION: # The Ruby eclass is designed to allow an easier installation of Ruby packages @@ -83,7 +83,7 @@ EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_test src_i case ${EAPI} in 0|1|2|3) die "Unsupported EAPI=${EAPI} (too old) for ruby-ng.eclass" ;; - 4|5|6) + 4|5|6|7) # S is no longer automatically assigned when it doesn't exist. S="${WORKDIR}" ;; @@ -283,7 +283,7 @@ ruby_get_use_targets() { # confuse this function with ruby_implementation_depend(). # # @EXAMPLE: -# EAPI=6 +# EAPI=7 # RUBY_OPTIONAL=yes # # inherit ruby-ng
