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

Replies