Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Fri, 09 Jul 2021 06:55:24
Message-Id: 1625813711.b72d96fb25f2d5122b430f07c41df5cbc9df46dd.graaff@gentoo
1 commit: b72d96fb25f2d5122b430f07c41df5cbc9df46dd
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 9 06:40:23 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 9 06:55:11 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b72d96fb
7
8 eclass/ruby-utils.eclass: support EAPI 8
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11
12 eclass/ruby-utils.eclass | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/eclass/ruby-utils.eclass b/eclass/ruby-utils.eclass
16 index 4db362e2cd5..d4b1534caef 100644
17 --- a/eclass/ruby-utils.eclass
18 +++ b/eclass/ruby-utils.eclass
19 @@ -6,7 +6,7 @@
20 # Ruby team <ruby@g.o>
21 # @AUTHOR:
22 # Author: Hans de Graaff <graaff@g.o>
23 -# @SUPPORTED_EAPIS: 5 6 7
24 +# @SUPPORTED_EAPIS: 5 6 7 8
25 # @BLURB: An eclass for supporting ruby scripts and bindings in non-ruby packages
26 # @DESCRIPTION:
27 # The ruby-utils eclass is designed to allow an easier installation of
28 @@ -16,7 +16,7 @@
29 # functions. It can be inherited safely.
30
31 case ${EAPI:-0} in
32 - [567]) ;;
33 + [5678]) ;;
34 *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
35 esac