Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sat, 02 Apr 2022 19:52:08
Message-Id: 1648929081.f355aa6676830d7b6ca10cf011630301977870b2.mattst88@gentoo
1 commit: f355aa6676830d7b6ca10cf011630301977870b2
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 2 19:30:44 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 2 19:51:21 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f355aa66
7
8 xorg-3.eclass: Support EAPI 8
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 eclass/xorg-3.eclass | 6 +++---
13 1 file changed, 3 insertions(+), 3 deletions(-)
14
15 diff --git a/eclass/xorg-3.eclass b/eclass/xorg-3.eclass
16 index e908d51c669f..17382938c047 100644
17 --- a/eclass/xorg-3.eclass
18 +++ b/eclass/xorg-3.eclass
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2021 Gentoo Authors
21 +# Copyright 1999-2022 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 # @ECLASS: xorg-3.eclass
25 @@ -8,7 +8,7 @@
26 # Author: Tomáš Chvátal <scarabeus@g.o>
27 # Author: Donnie Berkholz <dberkholz@g.o>
28 # Author: Matt Turner <mattst88@g.o>
29 -# @SUPPORTED_EAPIS: 7
30 +# @SUPPORTED_EAPIS: 7 8
31 # @PROVIDES: multilib-minimal
32 # @BLURB: Reduces code duplication in the modularized X11 ebuilds.
33 # @DESCRIPTION:
34 @@ -59,7 +59,7 @@ fi
35
36 EXPORTED_FUNCTIONS="src_prepare src_configure src_unpack src_compile src_install pkg_postinst pkg_postrm"
37 case "${EAPI:-0}" in
38 - 7) ;;
39 + [7-8]) ;;
40 *) die "EAPI=${EAPI} is not supported" ;;
41 esac