diff options
author | David Michael <fedora.dm0@gmail.com> | 2021-06-25 12:22:35 -0400 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2021-07-02 11:32:32 -0400 |
commit | 40e43312a2c4ad1dc0692becfbeb7c165bb1ae14 (patch) | |
tree | a3c52e9702b6084275def0ed6aa361777e3dd63e | |
parent | xdg-utils.eclass: EAPI 8 support (diff) | |
download | gentoo-40e43312a2c4ad1dc0692becfbeb7c165bb1ae14.tar.gz gentoo-40e43312a2c4ad1dc0692becfbeb7c165bb1ae14.tar.bz2 gentoo-40e43312a2c4ad1dc0692becfbeb7c165bb1ae14.zip |
gnome.org.eclass: EAPI 8 support
Signed-off-by: David Michael <fedora.dm0@gmail.com>
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
-rw-r--r-- | eclass/gnome.org.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/gnome.org.eclass b/eclass/gnome.org.eclass index dba26155d740..7efd03bfa946 100644 --- a/eclass/gnome.org.eclass +++ b/eclass/gnome.org.eclass @@ -7,13 +7,13 @@ # @AUTHOR: # Authors: Spidler <spidler@gentoo.org> with help of carparski. # eclass variable additions and documentation: Gilles Dartiguelongue <eva@gentoo.org> -# @SUPPORTED_EAPIS: 5 6 7 +# @SUPPORTED_EAPIS: 5 6 7 8 # @BLURB: Helper eclass for gnome.org hosted archives # @DESCRIPTION: # Provide a default SRC_URI for tarball hosted on gnome.org mirrors. -case ${EAPI:-0} in - [567]) ;; +case ${EAPI} in + 5|6|7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac @@ -31,7 +31,7 @@ _GNOME_ORG_ECLASS=1 # moving to only have xz tarballs for new releases. : ${GNOME_TARBALL_SUFFIX:="xz"} -# Even though xz-utils are in @system, they must still be added to DEPEND; see +# Even though xz-utils are in @system, they must still be added to BDEPEND; see # https://archives.gentoo.org/gentoo-dev/msg_a0d4833eb314d1be5d5802a3b710e0a4.xml if [[ ${GNOME_TARBALL_SUFFIX} == "xz" ]]; then if [[ ${EAPI} != [56] ]]; then |