Mailing List Archive

[PATCH] tmpfiles.eclass: add eapi 8 support
Signed-off-by: William Hubbs <williamh@gentoo.org>
---
eclass/tmpfiles.eclass | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/eclass/tmpfiles.eclass b/eclass/tmpfiles.eclass
index b9238a6434a..7a0e2cb7265 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

--
2.32.0
Re: [PATCH] tmpfiles.eclass: add eapi 8 support [ In reply to ]
This is in the tree.

Thanks,

William