summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorWilliam Hubbs <williamh@gentoo.org>2021-11-30 18:39:28 -0600
committerWilliam Hubbs <williamh@gentoo.org>2021-12-11 13:51:06 -0600
commit95e2454ae2f19d77258661f1ee6e44ebbe933fe0 (patch)
tree095ab122b02e9fcc066442519527b2f6a2beec14 /eclass
parentdev-perl/Syntax-Highlight-Engine-Simple: remove unused patch(es) (diff)
downloadgentoo-95e2454ae2f19d77258661f1ee6e44ebbe933fe0.tar.gz
gentoo-95e2454ae2f19d77258661f1ee6e44ebbe933fe0.tar.bz2
gentoo-95e2454ae2f19d77258661f1ee6e44ebbe933fe0.zip
tmpfiles.eclass: add eapi 8 support
Signed-off-by: William Hubbs <williamh@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r--eclass/tmpfiles.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/tmpfiles.eclass b/eclass/tmpfiles.eclass
index b9238a6434a0..7a0e2cb72657 100644
--- a/eclass/tmpfiles.eclass
+++ b/eclass/tmpfiles.eclass
@@ -8,7 +8,7 @@
# @AUTHOR:
# Mike Gilbert <floppym@gentoo.org>
# William Hubbs <williamh@gentoo.org>
-# @SUPPORTED_EAPIS: 5 6 7
+# @SUPPORTED_EAPIS: 5 6 7 8
# @BLURB: Functions related to tmpfiles.d files
# @DESCRIPTION:
# This eclass provides functionality related to installing and
@@ -56,7 +56,7 @@ if [[ -z ${TMPFILES_ECLASS} ]]; then
TMPFILES_ECLASS=1
case "${EAPI}" in
-5|6|7) ;;
+5|6|7|8) ;;
*) die "API is undefined for EAPI ${EAPI}" ;;
esac