diff options
author | Ulrich Müller <ulm@gentoo.org> | 2023-12-07 11:50:31 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2023-12-08 18:02:54 +0100 |
commit | ce17f4043d560ace370b224ab37741fd9b5b1b47 (patch) | |
tree | af94080738a9c3d7f4ea5cf6473faf737d4db0c3 /eclass | |
parent | flag-o-matic.eclass: Replace eutils inherit by eqawarn in EAPI 6 (diff) | |
download | gentoo-ce17f4043d560ace370b224ab37741fd9b5b1b47.tar.gz gentoo-ce17f4043d560ace370b224ab37741fd9b5b1b47.tar.bz2 gentoo-ce17f4043d560ace370b224ab37741fd9b5b1b47.zip |
rpm.eclass: Replace eutils inherit by eqawarn in EAPI 6
Reviewed-by: David Seifert <soap@gentoo.org>
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/rpm.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/rpm.eclass b/eclass/rpm.eclass index d8bb0ad2814d..b9187167eb8f 100644 --- a/eclass/rpm.eclass +++ b/eclass/rpm.eclass @@ -8,7 +8,7 @@ # @BLURB: convenience class for extracting RPMs case ${EAPI} in - 6) inherit epatch eutils ;; # eutils for eqawarn + 6) inherit epatch eqawarn ;; 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |