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: Sun, 03 Apr 2022 18:50:38
Message-Id: 1649011813.add940b433e6edb9bea99e217b704c4b4655163e.mattst88@gentoo
1 commit: add940b433e6edb9bea99e217b704c4b4655163e
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 3 18:48:34 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 3 18:50:13 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=add940b4
7
8 font.eclass: Support EAPI 8
9
10 Closes: https://bugs.gentoo.org/806496
11 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
12
13 eclass/font.eclass | 6 +++---
14 1 file changed, 3 insertions(+), 3 deletions(-)
15
16 diff --git a/eclass/font.eclass b/eclass/font.eclass
17 index 13d2b5064c1d..83636ac3fed5 100644
18 --- a/eclass/font.eclass
19 +++ b/eclass/font.eclass
20 @@ -1,14 +1,14 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 +# Copyright 1999-2022 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 # @ECLASS: font.eclass
26 # @MAINTAINER:
27 # fonts@g.o
28 -# @SUPPORTED_EAPIS: 7
29 +# @SUPPORTED_EAPIS: 7 8
30 # @BLURB: Eclass to make font installation uniform
31
32 case ${EAPI:-0} in
33 - 7) ;;
34 + [7-8]) ;;
35 *) die "EAPI ${EAPI} is not supported by font.eclass." ;;
36 esac