diff options
author | 2021-11-19 14:28:46 -0500 | |
---|---|---|
committer | 2021-11-24 15:45:22 -0500 | |
commit | d91dc8938b632770350eb32b253ad14ad6b498c1 (patch) | |
tree | ce43a426a0fad838541ec31a160f3e1facbd5953 /eclass/php-pear-r2.eclass | |
parent | dev-tex/html2latex: use src_configure, use RDEPEND (diff) | |
download | gentoo-d91dc8938b632770350eb32b253ad14ad6b498c1.tar.gz gentoo-d91dc8938b632770350eb32b253ad14ad6b498c1.tar.bz2 gentoo-d91dc8938b632770350eb32b253ad14ad6b498c1.zip |
eclass: Enable EAPI 8 on PHP eclasses
Signed-off-by: Brian Evans <grknight@gentoo.org>
Diffstat (limited to 'eclass/php-pear-r2.eclass')
-rw-r--r-- | eclass/php-pear-r2.eclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/eclass/php-pear-r2.eclass b/eclass/php-pear-r2.eclass index f0fe4b96f8ef..45ff81b92ebe 100644 --- a/eclass/php-pear-r2.eclass +++ b/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 7 +# @SUPPORTED_EAPIS: 6 7 8 # @BLURB: Provides means for an easy installation of PEAR packages. # @DESCRIPTION: # This eclass provides means for an easy installation of PEAR packages. @@ -19,6 +19,9 @@ EXPORT_FUNCTIONS src_install pkg_postinst pkg_postrm case "${EAPI:-0}" in 6|7) ;; + 8) + IDEPEND=">=dev-php/pear-1.8.1" + ;; *) die "Unsupported EAPI=${EAPI} for ${ECLASS}" ;; |