Gentoo Archives: gentoo-dev

From: William Hubbs <williamh@g.o>
To: gentoo-dev@l.g.o
Cc: floppym@g.o, William Hubbs <williamh@g.o>
Subject: [gentoo-dev] [PATCH] tmpfiles.eclass: add eapi 8 support
Date: Wed, 01 Dec 2021 00:43:37
Message-Id: 20211201004130.17470-1-williamh@gentoo.org
1 Signed-off-by: William Hubbs <williamh@g.o>
2 ---
3 eclass/tmpfiles.eclass | 4 ++--
4 1 file changed, 2 insertions(+), 2 deletions(-)
5
6 diff --git a/eclass/tmpfiles.eclass b/eclass/tmpfiles.eclass
7 index b9238a6434a..7a0e2cb7265 100644
8 --- a/eclass/tmpfiles.eclass
9 +++ b/eclass/tmpfiles.eclass
10 @@ -8,7 +8,7 @@
11 # @AUTHOR:
12 # Mike Gilbert <floppym@g.o>
13 # William Hubbs <williamh@g.o>
14 -# @SUPPORTED_EAPIS: 5 6 7
15 +# @SUPPORTED_EAPIS: 5 6 7 8
16 # @BLURB: Functions related to tmpfiles.d files
17 # @DESCRIPTION:
18 # This eclass provides functionality related to installing and
19 @@ -56,7 +56,7 @@ if [[ -z ${TMPFILES_ECLASS} ]]; then
20 TMPFILES_ECLASS=1
21
22 case "${EAPI}" in
23 -5|6|7) ;;
24 +5|6|7|8) ;;
25 *) die "API is undefined for EAPI ${EAPI}" ;;
26 esac
27
28 --
29 2.32.0

Replies

Subject Author
Re: [gentoo-dev] [PATCH] tmpfiles.eclass: add eapi 8 support William Hubbs <williamh@g.o>