commit:     bf9bf12ab88caeee56e22fc96d80c60f57c31513
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 16 09:27:10 2023 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Tue Jun 20 18:39:04 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf9bf12a

gnustep-base.eclass: Don't inherit eutils in EAPI 7

None of the ebuilds inheriting gnustep-base or gnustep-2 in EAPI 7 needs
any of the remaining eutils features.

Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 eclass/gnustep-base.eclass | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/eclass/gnustep-base.eclass b/eclass/gnustep-base.eclass
index 49bcc09caa93..b5b350106471 100644
--- a/eclass/gnustep-base.eclass
+++ b/eclass/gnustep-base.eclass
@@ -11,8 +11,8 @@
 # packages
 
 case ${EAPI} in
-       6|7) inherit eutils ;;
-       8) ;;
+       6) inherit eutils ;;
+       7|8) ;;
        *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
 esac
 
@@ -128,7 +128,6 @@ egnustep_env() {
                                -i "${WORKDIR}"/GNUstep.conf || die 
"GNUstep.conf sed failed"
                fi
 
-
                if [[ ! -d ${EPREFIX}/usr/share/GNUstep/Makefiles ]]; then
                        # Set rpath in ldflags when available
                        case ${CHOST} in

Reply via email to