diff options
author | Brian Evans <grknight@gentoo.org> | 2018-10-31 09:01:22 -0400 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2018-10-31 09:01:22 -0400 |
commit | 5723b86ed7bcb464f2ae1e9ba1f1d180a96bdf68 (patch) | |
tree | 7a9087987637e90a8a0f7baa02dd196cde4423be /eclass/php-pear-r2.eclass | |
parent | app-emulation/img: Version bump to 0.5.2 (diff) | |
download | gentoo-5723b86ed7bcb464f2ae1e9ba1f1d180a96bdf68.tar.gz gentoo-5723b86ed7bcb464f2ae1e9ba1f1d180a96bdf68.tar.bz2 gentoo-5723b86ed7bcb464f2ae1e9ba1f1d180a96bdf68.zip |
eclass: php-pear-r2 - Enable EAPI=7 with no other changes
Signed-off-by: Brian Evans <grknight@gentoo.org>
Diffstat (limited to 'eclass/php-pear-r2.eclass')
-rw-r--r-- | eclass/php-pear-r2.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/php-pear-r2.eclass b/eclass/php-pear-r2.eclass index 2a4508d6e709..26006cbb5f2f 100644 --- a/eclass/php-pear-r2.eclass +++ b/eclass/php-pear-r2.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: php-pear-r2.eclass @@ -6,7 +6,7 @@ # Gentoo PHP Team <php-bugs@gentoo.org> # @AUTHOR: # Author: Brian Evans <grknight@gentoo.org> -# @SUPPORTED_EAPIS: 6 +# @SUPPORTED_EAPIS: 6 7 # @BLURB: Provides means for an easy installation of PEAR packages. # @DESCRIPTION: # This eclass provides means for an easy installation of PEAR packages. @@ -17,7 +17,7 @@ EXPORT_FUNCTIONS src_install pkg_postinst pkg_postrm case "${EAPI:-0}" in - 6) + 6|7) ;; *) die "Unsupported EAPI=${EAPI} for ${ECLASS}" |