diff options
author | Marek Szuba <marecki@gentoo.org> | 2021-12-09 12:43:07 +0000 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2021-12-13 10:05:53 +0000 |
commit | 76708ba6ba0bf7f9d813ea2b4721c4d25b3dcc98 (patch) | |
tree | 04e516a601f8d5e6ad9a1751607a1e88988f92e4 /eclass | |
parent | gnome2-utils.eclass: phase out emktemp (diff) | |
download | gentoo-76708ba6ba0bf7f9d813ea2b4721c4d25b3dcc98.tar.gz gentoo-76708ba6ba0bf7f9d813ea2b4721c4d25b3dcc98.tar.bz2 gentoo-76708ba6ba0bf7f9d813ea2b4721c4d25b3dcc98.zip |
gnome2-utils.eclass: support EAPI 8
Trivial now that emktemp is gone.
While at it, include eclass name in the "EAPI x not supported" error
message.
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/gnome2-utils.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/gnome2-utils.eclass b/eclass/gnome2-utils.eclass index 39c4797eedf3..97b845c7b88b 100644 --- a/eclass/gnome2-utils.eclass +++ b/eclass/gnome2-utils.eclass @@ -4,7 +4,7 @@ # @ECLASS: gnome2-utils.eclass # @MAINTAINER: # gnome@gentoo.org -# @SUPPORTED_EAPIS: 5 6 7 +# @SUPPORTED_EAPIS: 5 6 7 8 # @PROVIDES: xdg-utils # @BLURB: Auxiliary functions commonly used by Gnome packages. # @DESCRIPTION: @@ -21,8 +21,8 @@ inherit toolchain-funcs xdg-utils case ${EAPI} in - 5|6|7) ;; - *) die "EAPI=${EAPI} is not supported" ;; + 5|6|7|8) ;; + *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac # @ECLASS-VARIABLE: GCONFTOOL_BIN |