dev-php/pecl-memcached: drop 3.1.5-r1, 3.2.0

Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
This commit is contained in:
Conrad Kostecki
2022-10-23 23:06:48 +02:00
parent 60d524f0dc
commit befa20c5fd
3 changed files with 0 additions and 116 deletions

View File

@@ -1,2 +1 @@
DIST memcached-3.1.5.tgz 83015 BLAKE2B 80f5cbed8e34f867962792d95d242015690f64ab3b462e09813a11b8b86234b0b05b0f6a78f7c6184482b66ba8015064b37f77bbb816a3aee2edd0ce97ab0cbc SHA512 87d5fd079fcaad81139785d6766da71b23a1a0fe907d4b22f3a787af148a20412c11df11c4d98c165241658baf0d87c8a6b29de15db07a0f9d1fabc8aec8f0e9
DIST memcached-3.2.0.tgz 90722 BLAKE2B 5bc3ce40803004f45ad397684277862dbaffce467b3026e33d9737d4d93a82f2c89e32a256ebf6db3117a462ff8f81a517ed9950773cb4a0e927aa8af4e834be SHA512 ece5759a9d6d52afd46beb0821811e5d4830e75ad8564af395e2107fd349e271c6e6cf20eeacd9ad15ee2e99ccf0118ccc83c5810e2f3fa7c61f1984b0b26514

View File

@@ -1,59 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PHP_EXT_NAME="memcached"
DOCS=( ChangeLog README.markdown )
USE_PHP="php7-2 php7-3 php7-4"
inherit php-ext-pecl-r3
DESCRIPTION="Interface PHP with memcached via libmemcached library"
LICENSE="PHP-3.01"
SLOT="7"
KEYWORDS="amd64 arm arm64 x86"
IUSE="igbinary json sasl +session test"
RESTRICT="!test? ( test )"
COMMON_DEPEND=">=dev-libs/libmemcached-1.0.14[sasl(-)?]
sys-libs/zlib
"
RDEPEND="
php_targets_php7-2? (
${COMMON_DEPEND} dev-lang/php:7.2[session(-)?,json(-)?]
igbinary? ( dev-php/igbinary[php_targets_php7-2(-)] )
)
php_targets_php7-3? (
${COMMON_DEPEND} dev-lang/php:7.3[session(-)?,json(-)?]
igbinary? ( dev-php/igbinary[php_targets_php7-3(-)] )
)
php_targets_php7-4? (
${COMMON_DEPEND} dev-lang/php:7.4[session(-)?,json(-)?]
igbinary? ( dev-php/igbinary[php_targets_php7-4(-)] )
)"
DEPEND="${RDEPEND} test? ( net-misc/memcached )"
src_configure() {
local PHP_EXT_ECONF_ARGS="--enable-memcached
$(use_enable session memcached-session)
$(use_enable sasl memcached-sasl)
$(use_enable json memcached-json)
$(use_enable igbinary memcached-igbinary)"
php-ext-source-r3_src_configure
}
src_test() {
local memcached_opts=( -d -P "${T}/memcached.pid" -p 11211 -l 127.0.0.1 )
[[ ${EUID} == 0 ]] && memcached_opts+=( -u portage )
memcached "${memcached_opts[@]}" || die "Can't start memcached test server"
local exit_status
php-ext-source-r3_src_test
exit_status=$?
kill "$(<"${T}/memcached.pid")"
return ${exit_status}
}

View File

@@ -1,56 +0,0 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PHP_EXT_NAME="memcached"
DOCS=( ChangeLog README.markdown )
USE_PHP="php7-4 php8-0 php8-1"
PHP_EXT_NEEDED_USE="json(+)?,session(-)?"
MY_P="${PN/pecl-/}-${PV/_rc/RC}"
PHP_EXT_PECL_FILENAME="${MY_P}.tgz"
PHP_EXT_S="${WORKDIR}/${MY_P}"
inherit php-ext-pecl-r3
DESCRIPTION="Interface PHP with memcached via libmemcached library"
LICENSE="PHP-3.01"
SLOT="7"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE="igbinary json sasl +session test"
RESTRICT="!test? ( test )"
COMMON_DEPEND=">=dev-libs/libmemcached-1.0.14[sasl(-)?]
sys-libs/zlib
igbinary? ( dev-php/igbinary[php_targets_php7-4(-)?,php_targets_php8-0(-)?,php_targets_php8-1(-)?] )
"
DEPEND="${COMMON_DEPEND}"
RDEPEND="${COMMON_DEPEND}"
BDEPEND="${COMMON_DEPEND} test? ( net-misc/memcached )"
S="${WORKDIR}/${MY_P}"
src_configure() {
local PHP_EXT_ECONF_ARGS="--enable-memcached
$(use_enable session memcached-session)
$(use_enable sasl memcached-sasl)
$(use_enable json memcached-json)
$(use_enable igbinary memcached-igbinary)"
php-ext-source-r3_src_configure
}
src_test() {
touch "${T}/memcached.pid" || die
local memcached_opts=( -d -P "${T}/memcached.pid" -p 11211 -l 127.0.0.1 -U 11211 )
[[ ${EUID} == 0 ]] && memcached_opts+=( -u portage )
memcached "${memcached_opts[@]}" || die "Can't start memcached test server"
local exit_status
php-ext-source-r3_src_test
exit_status=$?
kill "$(<"${T}/memcached.pid")"
return ${exit_status}
}