diff options
| author | Brian Evans <grknight@gentoo.org> | 2021-11-19 14:28:46 -0500 |
|---|---|---|
| committer | Brian Evans <grknight@gentoo.org> | 2021-11-24 15:45:22 -0500 |
| commit | d91dc8938b632770350eb32b253ad14ad6b498c1 (patch) | |
| tree | ce43a426a0fad838541ec31a160f3e1facbd5953 /eclass/php-ext-source-r3.eclass | |
| parent | b1e3436ee676da49d068da88d21e5cfc549f282e (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-ext-source-r3.eclass')
| -rw-r--r-- | eclass/php-ext-source-r3.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/php-ext-source-r3.eclass b/eclass/php-ext-source-r3.eclass index 556b51ecb0cf..4f580436d3e9 100644 --- a/eclass/php-ext-source-r3.eclass +++ b/eclass/php-ext-source-r3.eclass @@ -4,7 +4,7 @@ # @ECLASS: php-ext-source-r3.eclass # @MAINTAINER: # Gentoo PHP team <php-bugs@gentoo.org> -# @SUPPORTED_EAPIS: 6 7 +# @SUPPORTED_EAPIS: 6 7 8 # @BLURB: Compile and install standalone PHP extensions. # @DESCRIPTION: # A unified interface for compiling and installing standalone PHP @@ -14,7 +14,7 @@ inherit autotools case ${EAPI:-0} in 6) inherit eapi7-ver ;; - 7) ;; + 7|8) ;; *) die "${ECLASS} is not compatible with EAPI=${EAPI}" esac @@ -134,7 +134,7 @@ RDEPEND="${PHPDEPEND}" case ${EAPI:-0} in 6) DEPEND="${TOOLDEPS} ${PHPDEPEND}" ;; - 7) DEPEND="${PHPDEPEND}" ; BDEPEND="${TOOLDEPS} ${PHPDEPEND}" ;; + 7|8) DEPEND="${PHPDEPEND}" ; BDEPEND="${TOOLDEPS} ${PHPDEPEND}" ;; esac unset PHPDEPEND TOOLDEPS |
