Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Mon, 02 Jan 2023 22:02:23
Message-Id: 1672696897.fdc4dad8e53324570a0d9b60b2fcf3009d8bd287.soap@gentoo
1 commit: fdc4dad8e53324570a0d9b60b2fcf3009d8bd287
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 2 22:01:37 2023 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 2 22:01:37 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdc4dad8
7
8 s6.eclass: drop EAPI 5, 6 and 7 support
9
10 Signed-off-by: David Seifert <soap <AT> gentoo.org>
11
12 eclass/s6.eclass | 6 +++---
13 1 file changed, 3 insertions(+), 3 deletions(-)
14
15 diff --git a/eclass/s6.eclass b/eclass/s6.eclass
16 index 25960ba4a1db..f4d7ebf2c31d 100644
17 --- a/eclass/s6.eclass
18 +++ b/eclass/s6.eclass
19 @@ -1,10 +1,10 @@
20 -# Copyright 1999-2019 Gentoo Authors
21 +# Copyright 1999-2023 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 # @ECLASS: s6.eclass
25 # @MAINTAINER:
26 # William Hubbs <williamh@g.o>
27 -# @SUPPORTED_EAPIS: 5 6 7 8
28 +# @SUPPORTED_EAPIS: 8
29 # @BLURB: helper functions to install s6 services
30 # @DESCRIPTION:
31 # This eclass provides helpers to install s6 services.
32 @@ -26,7 +26,7 @@
33 # @CODE
34
35 case ${EAPI} in
36 - 5|6|7|8) ;;
37 + 8) ;;
38 *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
39 esac