Gentoo Archives: gentoo-dev

From: David Seifert <soap@g.o>
To: gentoo-dev@l.g.o
Cc: David Seifert <soap@g.o>
Subject: [gentoo-dev] [PATCH 1/2] s6.eclass: drop EAPI 5, 6 and 7 support
Date: Sun, 01 Jan 2023 19:44:14
Message-Id: 20230101194355.257890-1-soap@gentoo.org
1 Signed-off-by: David Seifert <soap@g.o>
2 ---
3 eclass/s6.eclass | 6 +++---
4 1 file changed, 3 insertions(+), 3 deletions(-)
5
6 diff --git a/eclass/s6.eclass b/eclass/s6.eclass
7 index 25960ba4a1d..f4d7ebf2c31 100644
8 --- a/eclass/s6.eclass
9 +++ b/eclass/s6.eclass
10 @@ -1,10 +1,10 @@
11 -# Copyright 1999-2019 Gentoo Authors
12 +# Copyright 1999-2023 Gentoo Authors
13 # Distributed under the terms of the GNU General Public License v2
14
15 # @ECLASS: s6.eclass
16 # @MAINTAINER:
17 # William Hubbs <williamh@g.o>
18 -# @SUPPORTED_EAPIS: 5 6 7 8
19 +# @SUPPORTED_EAPIS: 8
20 # @BLURB: helper functions to install s6 services
21 # @DESCRIPTION:
22 # This eclass provides helpers to install s6 services.
23 @@ -26,7 +26,7 @@
24 # @CODE
25
26 case ${EAPI} in
27 - 5|6|7|8) ;;
28 + 8) ;;
29 *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
30 esac
31
32 --
33 2.39.0

Replies

Subject Author
[gentoo-dev] [PATCH 2/2] s6.eclass: consistent style David Seifert <soap@g.o>