Gentoo Archives: gentoo-commits

From: Brian Evans <grknight@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Wed, 31 Oct 2018 13:15:53
Message-Id: 1540990882.5723b86ed7bcb464f2ae1e9ba1f1d180a96bdf68.grknight@gentoo
1 commit: 5723b86ed7bcb464f2ae1e9ba1f1d180a96bdf68
2 Author: Brian Evans <grknight <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 31 13:01:22 2018 +0000
4 Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 31 13:01:22 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5723b86e
7
8 eclass: php-pear-r2 - Enable EAPI=7 with no other changes
9
10 Signed-off-by: Brian Evans <grknight <AT> gentoo.org>
11
12 eclass/php-pear-r2.eclass | 6 +++---
13 1 file changed, 3 insertions(+), 3 deletions(-)
14
15 diff --git a/eclass/php-pear-r2.eclass b/eclass/php-pear-r2.eclass
16 index 2a4508d6e70..26006cbb5f2 100644
17 --- a/eclass/php-pear-r2.eclass
18 +++ b/eclass/php-pear-r2.eclass
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2017 Gentoo Foundation
21 +# Copyright 1999-2018 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 # @ECLASS: php-pear-r2.eclass
25 @@ -6,7 +6,7 @@
26 # Gentoo PHP Team <php-bugs@g.o>
27 # @AUTHOR:
28 # Author: Brian Evans <grknight@g.o>
29 -# @SUPPORTED_EAPIS: 6
30 +# @SUPPORTED_EAPIS: 6 7
31 # @BLURB: Provides means for an easy installation of PEAR packages.
32 # @DESCRIPTION:
33 # This eclass provides means for an easy installation of PEAR packages.
34 @@ -17,7 +17,7 @@
35 EXPORT_FUNCTIONS src_install pkg_postinst pkg_postrm
36
37 case "${EAPI:-0}" in
38 - 6)
39 + 6|7)
40 ;;
41 *)
42 die "Unsupported EAPI=${EAPI} for ${ECLASS}"