summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2024-10-08 17:31:19 +0200
committerDavid Seifert <soap@gentoo.org>2024-10-08 17:31:19 +0200
commit58a0e5e192dcb4f4062a24e58aa2ebb0bb8bd989 (patch)
tree9f1e548c94835d0a4ebae49b9c7b5530c7ef8c41
parentmultilib.eclass: drop support for EAPI 6 (diff)
downloadgentoo-58a0e5e192dcb4f4062a24e58aa2ebb0bb8bd989.tar.gz
gentoo-58a0e5e192dcb4f4062a24e58aa2ebb0bb8bd989.tar.bz2
gentoo-58a0e5e192dcb4f4062a24e58aa2ebb0bb8bd989.zip
multiprocessing.eclass: drop support for EAPI 5 and 6
Signed-off-by: David Seifert <soap@gentoo.org>
-rw-r--r--eclass/multiprocessing.eclass6
1 files changed, 1 insertions, 5 deletions
diff --git a/eclass/multiprocessing.eclass b/eclass/multiprocessing.eclass
index f9627de26c3b..ba6e1b46aaec 100644
--- a/eclass/multiprocessing.eclass
+++ b/eclass/multiprocessing.eclass
@@ -7,7 +7,7 @@
# @AUTHOR:
# Brian Harring <ferringb@gentoo.org>
# Mike Frysinger <vapier@gentoo.org>
-# @SUPPORTED_EAPIS: 5 6 7 8
+# @SUPPORTED_EAPIS: 7 8
# @BLURB: multiprocessing helper functions
# @DESCRIPTION:
# The multiprocessing eclass contains a suite of utility functions
@@ -28,10 +28,6 @@ if [[ -z ${_MULTIPROCESSING_ECLASS} ]]; then
_MULTIPROCESSING_ECLASS=1
case ${EAPI} in
- 5|6)
- ewarn "${CATEGORY}/${PF}: ebuild uses ${ECLASS} with deprecated EAPI ${EAPI}!"
- ewarn "${CATEGORY}/${PF}: Support will be removed on 2024-10-08. Please port to newer EAPI."
- ;;
7|8) ;;
*) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
esac