diff options
author | David Seifert <soap@gentoo.org> | 2023-09-15 09:52:07 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2023-09-15 09:52:07 +0200 |
commit | 18a9daa1f50c3cf175a2f3db3cccc54d1a0b6292 (patch) | |
tree | 3baead3edd143d4375bf43823462042a8614a814 /dev-php | |
parent | dev-php/pecl-taint: treeclean (diff) | |
download | gentoo-18a9daa1f50c3cf175a2f3db3cccc54d1a0b6292.tar.gz gentoo-18a9daa1f50c3cf175a2f3db3cccc54d1a0b6292.tar.bz2 gentoo-18a9daa1f50c3cf175a2f3db3cccc54d1a0b6292.zip |
dev-php/pecl-memcache: drop 4.0.5.2-r1
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/pecl-memcache/Manifest | 1 | ||||
-rw-r--r-- | dev-php/pecl-memcache/pecl-memcache-4.0.5.2-r1.ebuild | 63 |
2 files changed, 0 insertions, 64 deletions
diff --git a/dev-php/pecl-memcache/Manifest b/dev-php/pecl-memcache/Manifest index 37614f466156..5e622e7de7d9 100644 --- a/dev-php/pecl-memcache/Manifest +++ b/dev-php/pecl-memcache/Manifest @@ -1,2 +1 @@ -DIST memcache-4.0.5.2.tgz 75061 BLAKE2B fbf96fd182ff4b8764c4492edcdac53263176ebe6d63a27e9f3fb32110a016b221722c246e7c1ae49ee973a6e4cdff045876d1c6119f410f2fa3e796c0580e02 SHA512 93e163acf3a6c28f16b5f0982105f6f558cceeb314b3f09ad71655d8a5adf64d23959f1a2f3589eb7e7a7e18c88ba8132014e13f697a737cd570cf9405137384 DIST memcache-8.0.tgz 78448 BLAKE2B fb2d68d5ff4c6343dd2e66ae5c3f84fed22455b8614dce04dde2e10c164bf1f8d276776b74beaa387dd794cf82f6b897a88c8bed058376b9032e0452c2e94b06 SHA512 d5eea13b85d8d35ef6aab8c5699bdcc4707cf8debf4052cbbeac26e7e2360a4d3d4e55e8bd0b40cf19fe014ba1fc42d5417deabbe22a199f0c6aa98b67d132d4 diff --git a/dev-php/pecl-memcache/pecl-memcache-4.0.5.2-r1.ebuild b/dev-php/pecl-memcache/pecl-memcache-4.0.5.2-r1.ebuild deleted file mode 100644 index da8213cc9cdc..000000000000 --- a/dev-php/pecl-memcache/pecl-memcache-4.0.5.2-r1.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" -PHP_EXT_NAME="memcache" -PHP_EXT_INI="yes" -PHP_EXT_ZENDEXT="no" -PHP_EXT_NEEDED_USE="session(-)?" -DOCS=( README example.php ) -HTML_DOCS=( memcache.php ) - -USE_PHP="php7-4 php8-0 php8-1" - -inherit php-ext-pecl-r3 - -USE_PHP="php7-4" - -KEYWORDS="~amd64 ~hppa ~ppc64 ~x86" - -DESCRIPTION="PHP extension for using memcached" -LICENSE="PHP-3" -SLOT="7" -IUSE="+session" - -DEPEND="php_targets_php7-4? ( sys-libs/zlib )" -RDEPEND="${DEPEND} - php_targets_php8-0? ( dev-php/pecl-memcache:8[php_targets_php8-0(-)?] ) - php_targets_php8-1? ( dev-php/pecl-memcache:8[php_targets_php8-1(-)?] ) -" - -# The test suite requires memcached to be running. -RESTRICT='test' - -src_prepare() { - if use php_targets_php7-4 ; then - php-ext-source-r3_src_prepare - else - default - fi -} - -src_configure() { - if use php_targets_php7-4 ; then - local PHP_EXT_ECONF_ARGS=( --enable-memcache --with-zlib-dir="${EPREFIX}/usr" $(use_enable session memcache-session) ) - php-ext-source-r3_src_configure - fi -} - -src_install() { - if use php_targets_php7-4 ; then - php-ext-pecl-r3_src_install - - php-ext-source-r3_addtoinifiles "memcache.allow_failover" "true" - php-ext-source-r3_addtoinifiles "memcache.max_failover_attempts" "20" - php-ext-source-r3_addtoinifiles "memcache.chunk_size" "32768" - php-ext-source-r3_addtoinifiles "memcache.default_port" "11211" - php-ext-source-r3_addtoinifiles "memcache.hash_strategy" "consistent" - php-ext-source-r3_addtoinifiles "memcache.hash_function" "crc32" - php-ext-source-r3_addtoinifiles "memcache.redundancy" "1" - php-ext-source-r3_addtoinifiles "memcache.session_redundancy" "2" - php-ext-source-r3_addtoinifiles "memcache.protocol" "ascii" - fi -} |