commit: f4a37e43b243cd8d7b57d61deb3490605e541640 Author: Marek Szuba <marecki <AT> gentoo <DOT> org> AuthorDate: Thu Dec 9 13:14:08 2021 +0000 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org> CommitDate: Mon Dec 13 10:05:57 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4a37e43
gnome2.eclass: support EAPI 8 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org> eclass/gnome2.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/gnome2.eclass b/eclass/gnome2.eclass index c6d93a46bfe4..0414d5cd5f3a 100644 --- a/eclass/gnome2.eclass +++ b/eclass/gnome2.eclass @@ -4,7 +4,7 @@ # @ECLASS: gnome2.eclass # @MAINTAINER: # [email protected] -# @SUPPORTED_EAPIS: 5 6 7 +# @SUPPORTED_EAPIS: 5 6 7 8 # @PROVIDES: gnome2-utils # @BLURB: Provides phases for Gnome/Gtk+ based packages. # @DESCRIPTION: @@ -25,7 +25,7 @@ case ${EAPI} in 5) EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_install pkg_preinst pkg_postinst pkg_postrm ;; - 6|7) + 6|7|8) EXPORT_FUNCTIONS src_prepare src_configure src_compile src_install pkg_preinst pkg_postinst pkg_postrm ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
