diff options
author | Oz Tiram <oz.tiram@gmail.com> | 2023-08-12 08:01:41 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-08-17 07:22:36 +0100 |
commit | 3998ffc8566711b727a119108f2245ab6def45b4 (patch) | |
tree | e442ea1b8ebc547f1f348e8ef6c32a62763ca657 | |
parent | x11-wm/qtile: remove pywlroots-0.15 constraint (diff) | |
download | gentoo-3998ffc8566711b727a119108f2245ab6def45b4.tar.gz gentoo-3998ffc8566711b727a119108f2245ab6def45b4.tar.bz2 gentoo-3998ffc8566711b727a119108f2245ab6def45b4.zip |
mate.eclass, mate-desktop.org.eclass: add EAPI 8
These eclasses are based on gnome2 eclass which supports
EAPI 8 for a while now.
Signed-off-by: Oz Tiram <oz.tiram@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | eclass/mate-desktop.org.eclass | 4 | ||||
-rw-r--r-- | eclass/mate.eclass | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/eclass/mate-desktop.org.eclass b/eclass/mate-desktop.org.eclass index 0dd77aa19a3e..28d704395b9a 100644 --- a/eclass/mate-desktop.org.eclass +++ b/eclass/mate-desktop.org.eclass @@ -6,14 +6,14 @@ # mate@gentoo.org # @AUTHOR: # Authors: NP-Hardass <NP-Hardass@gentoo.org> based upon the gnome.org eclass. -# @SUPPORTED_EAPIS: 7 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: Helper eclass for mate-desktop.org hosted archives # @DESCRIPTION: # Provide a default SRC_URI and EGIT_REPO_URI for MATE packages as well as # exporting some useful values like the MATE_BRANCH case ${EAPI} in - 7) ;; + 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac diff --git a/eclass/mate.eclass b/eclass/mate.eclass index e8290c69e25a..b6c3aa55fb19 100644 --- a/eclass/mate.eclass +++ b/eclass/mate.eclass @@ -7,7 +7,7 @@ # @AUTHOR: # Authors: NP-Hardass <NP-Hardass@gentoo.org> based upon the gnome2 # and autotools-utils eclasses -# @SUPPORTED_EAPIS: 7 +# @SUPPORTED_EAPIS: 7 8 # @PROVIDES: mate-desktop.org # @BLURB: Provides phases for MATE based packages. # @DESCRIPTION: @@ -16,7 +16,7 @@ # fact that MATE is a GNOME fork. For additional functions, see gnome2-utils.eclass. case ${EAPI} in - 7) ;; + 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |