Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Fri, 02 Jul 2021 15:35:41
Message-Id: 1625239952.40e43312a2c4ad1dc0692becfbeb7c165bb1ae14.floppym@gentoo
1 commit: 40e43312a2c4ad1dc0692becfbeb7c165bb1ae14
2 Author: David Michael <fedora.dm0 <AT> gmail <DOT> com>
3 AuthorDate: Fri Jun 25 16:22:35 2021 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 2 15:32:32 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40e43312
7
8 gnome.org.eclass: EAPI 8 support
9
10 Signed-off-by: David Michael <fedora.dm0 <AT> gmail.com>
11 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
12
13 eclass/gnome.org.eclass | 8 ++++----
14 1 file changed, 4 insertions(+), 4 deletions(-)
15
16 diff --git a/eclass/gnome.org.eclass b/eclass/gnome.org.eclass
17 index dba26155d74..7efd03bfa94 100644
18 --- a/eclass/gnome.org.eclass
19 +++ b/eclass/gnome.org.eclass
20 @@ -7,13 +7,13 @@
21 # @AUTHOR:
22 # Authors: Spidler <spidler@g.o> with help of carparski.
23 # eclass variable additions and documentation: Gilles Dartiguelongue <eva@g.o>
24 -# @SUPPORTED_EAPIS: 5 6 7
25 +# @SUPPORTED_EAPIS: 5 6 7 8
26 # @BLURB: Helper eclass for gnome.org hosted archives
27 # @DESCRIPTION:
28 # Provide a default SRC_URI for tarball hosted on gnome.org mirrors.
29
30 -case ${EAPI:-0} in
31 - [567]) ;;
32 +case ${EAPI} in
33 + 5|6|7|8) ;;
34 *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
35 esac
36
37 @@ -31,7 +31,7 @@ _GNOME_ORG_ECLASS=1
38 # moving to only have xz tarballs for new releases.
39 : ${GNOME_TARBALL_SUFFIX:="xz"}
40
41 -# Even though xz-utils are in @system, they must still be added to DEPEND; see
42 +# Even though xz-utils are in @system, they must still be added to BDEPEND; see
43 # https://archives.gentoo.org/gentoo-dev/msg_a0d4833eb314d1be5d5802a3b710e0a4.xml
44 if [[ ${GNOME_TARBALL_SUFFIX} == "xz" ]]; then
45 if [[ ${EAPI} != [56] ]]; then