diff options
author | Ulrich Müller <ulm@gentoo.org> | 2024-01-08 15:13:01 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2024-04-10 19:55:37 +0200 |
commit | 6a802139d156f02b854429b242d4fc61961e3c05 (patch) | |
tree | a7ea046c04f7b2feafec3edd5f5e6bc9a31c58fe /eclass/gnustep-2.eclass | |
parent | app-shells/fzf: Version bump to 0.49.0 (diff) | |
download | gentoo-6a802139d156f02b854429b242d4fc61961e3c05.tar.gz gentoo-6a802139d156f02b854429b242d4fc61961e3c05.tar.bz2 gentoo-6a802139d156f02b854429b242d4fc61961e3c05.zip |
gnustep-*.eclass: Drop support for EAPI 6
In EAPI 6, gnustep-base inherits eutils which is going to be last-rited.
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass/gnustep-2.eclass')
-rw-r--r-- | eclass/gnustep-2.eclass | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/eclass/gnustep-2.eclass b/eclass/gnustep-2.eclass index 9750efa8d5c8..3797dd80151e 100644 --- a/eclass/gnustep-2.eclass +++ b/eclass/gnustep-2.eclass @@ -1,10 +1,10 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: gnustep-2.eclass # @MAINTAINER: # GNUstep Herd <gnustep@gentoo.org> -# @SUPPORTED_EAPIS: 6 7 8 +# @SUPPORTED_EAPIS: 7 8 # @PROVIDES: gnustep-base # @BLURB: eclass for GNUstep Apps, Frameworks, and Bundles build # @DESCRIPTION: @@ -12,7 +12,7 @@ # GNUstep packages case ${EAPI} in - 6|7|8) ;; + 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac @@ -21,17 +21,9 @@ _GNUSTEP_2_ECLASS=1 inherit gnustep-base -case ${EAPI} in - 6) - DEPEND=">=gnustep-base/gnustep-make-2.0" - ;; - *) - BDEPEND=">=gnustep-base/gnustep-make-2.0" - ;; -esac - -DEPEND+=" virtual/gnustep-back" -RDEPEND="${DEPEND}" +RDEPEND="virtual/gnustep-back" +DEPEND="${RDEPEND}" +BDEPEND=">=gnustep-base/gnustep-make-2.0" # The following gnustep-based exported functions are available: # * gnustep-base_pkg_setup |