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: Sat, 22 Jan 2022 12:34:31
Message-Id: 1642854799.67a2ed55b4cf453de271cf8beaf78f64c697b988.soap@gentoo
1 commit: 67a2ed55b4cf453de271cf8beaf78f64c697b988
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 22 12:33:19 2022 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 22 12:33:19 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67a2ed55
7
8 out-of-source.eclass: enable EAPI 8
9
10 Signed-off-by: David Seifert <soap <AT> gentoo.org>
11
12 eclass/out-of-source.eclass | 6 +++---
13 1 file changed, 3 insertions(+), 3 deletions(-)
14
15 diff --git a/eclass/out-of-source.eclass b/eclass/out-of-source.eclass
16 index bbac555a7f88..61b7c492c962 100644
17 --- a/eclass/out-of-source.eclass
18 +++ b/eclass/out-of-source.eclass
19 @@ -1,10 +1,10 @@
20 -# Copyright 1999-2018 Gentoo Foundation
21 +# Copyright 1999-2022 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 # @ECLASS: out-of-source.eclass
25 # @MAINTAINER:
26 # Michał Górny <mgorny@g.o>
27 -# @SUPPORTED_EAPIS: 6 7
28 +# @SUPPORTED_EAPIS: 6 7 8
29 # @BLURB: convenient wrapper to build autotools packages out-of-source
30 # @DESCRIPTION:
31 # This eclass provides a minimalistic wrapper interface to easily
32 @@ -33,7 +33,7 @@
33 # @CODE
34
35 case ${EAPI} in
36 - 6|7);;
37 + 6|7|8);;
38 *) die "EAPI ${EAPI:-0} unsupported (too old)";;
39 esac