diff options
author | David Seifert <soap@gentoo.org> | 2022-12-27 17:30:00 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-12-27 17:30:00 +0100 |
commit | 63d5d87061bd74d008b1a0f04db1fcd65898ee18 (patch) | |
tree | 0d54f03efba8075e4f8a0e8d75e8c21db539e933 /eclass/php-ext-pecl-r3.eclass | |
parent | ninja-utils.eclass: drop EAPI 5, 6 support (diff) | |
download | gentoo-63d5d87061bd74d008b1a0f04db1fcd65898ee18.tar.gz gentoo-63d5d87061bd74d008b1a0f04db1fcd65898ee18.tar.bz2 gentoo-63d5d87061bd74d008b1a0f04db1fcd65898ee18.zip |
php-ext-pecl-r3.eclass: drop EAPI 6 support
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'eclass/php-ext-pecl-r3.eclass')
-rw-r--r-- | eclass/php-ext-pecl-r3.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/php-ext-pecl-r3.eclass b/eclass/php-ext-pecl-r3.eclass index b1b9429e8a26..11ae34429fbb 100644 --- a/eclass/php-ext-pecl-r3.eclass +++ b/eclass/php-ext-pecl-r3.eclass @@ -1,10 +1,10 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: php-ext-pecl-r3.eclass # @MAINTAINER: # Gentoo PHP team <php-bugs@gentoo.org> -# @SUPPORTED_EAPIS: 6 7 8 +# @SUPPORTED_EAPIS: 7 8 # @PROVIDES: php-ext-source-r3 # @BLURB: A uniform way to install PECL extensions # @DESCRIPTION: @@ -13,7 +13,7 @@ # see https://pecl.php.net/ case ${EAPI:-0} in - 6|7|8) ;; + 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |