summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2023-09-15 09:52:02 +0200
committerDavid Seifert <soap@gentoo.org>2023-09-15 09:52:02 +0200
commit4463a8bd59a49bdba73880461f3cedccf6b8cdb6 (patch)
tree97bd51622a3c5fe9b251c20aa9a8e9de992d04cf /dev-php/pecl-apcu_bc
parentdev-php/pecl-eio: drop 2.0.4-r1 (diff)
downloadgentoo-4463a8bd59a49bdba73880461f3cedccf6b8cdb6.tar.gz
gentoo-4463a8bd59a49bdba73880461f3cedccf6b8cdb6.tar.bz2
gentoo-4463a8bd59a49bdba73880461f3cedccf6b8cdb6.zip
dev-php/pecl-apcu_bc: treeclean
Closes: https://bugs.gentoo.org/906687 Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-php/pecl-apcu_bc')
-rw-r--r--dev-php/pecl-apcu_bc/Manifest1
-rw-r--r--dev-php/pecl-apcu_bc/metadata.xml8
-rw-r--r--dev-php/pecl-apcu_bc/pecl-apcu_bc-1.0.5.ebuild44
3 files changed, 0 insertions, 53 deletions
diff --git a/dev-php/pecl-apcu_bc/Manifest b/dev-php/pecl-apcu_bc/Manifest
deleted file mode 100644
index c73d9fc2e92e..000000000000
--- a/dev-php/pecl-apcu_bc/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST apcu_bc-1.0.5.tgz 7415 BLAKE2B d86c5a4949239d9196b4bfc22c19f97ff66b47ec87962540295a0d9f08c72c0f1213439dd6c4006355a73c7fa3dbdcc51e9f897b289f134116d33d9eb2c67cb7 SHA512 60ee1540c31873d7963fd8efa6293006eae19cb6c7815cea1f3b50b197a982840472a1e632cc7af5666f6af5522008bec30e48cd764920240a6c5a0d0eb0e6e0
diff --git a/dev-php/pecl-apcu_bc/metadata.xml b/dev-php/pecl-apcu_bc/metadata.xml
deleted file mode 100644
index 222c77f3742a..000000000000
--- a/dev-php/pecl-apcu_bc/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>php-bugs@gentoo.org</email>
- <name>PHP</name>
- </maintainer>
-</pkgmetadata>
diff --git a/dev-php/pecl-apcu_bc/pecl-apcu_bc-1.0.5.ebuild b/dev-php/pecl-apcu_bc/pecl-apcu_bc-1.0.5.ebuild
deleted file mode 100644
index c79e47fa1cda..000000000000
--- a/dev-php/pecl-apcu_bc/pecl-apcu_bc-1.0.5.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PHP_INI_NAME="bc_apc"
-PHP_EXT_NAME="apc"
-PHP_EXT_INI="yes"
-PHP_EXT_ZENDEXT="no"
-PHP_EXT_EXTRA_ECONF=""
-DOCS=( README.md )
-
-USE_PHP="php7-4"
-
-inherit php-ext-pecl-r3 multilib
-
-KEYWORDS="amd64 x86"
-
-DESCRIPTION="Provides APC backwards compatibility functions via APCu"
-LICENSE="PHP-3.01"
-SLOT="0"
-IUSE=""
-
-DEPEND=">=dev-php/pecl-apcu-5.1.18:7[php_targets_php7-2(-)?,php_targets_php7-3(-)?,php_targets_php7-4(-)?]"
-RDEPEND="${DEPEND}"
-
-src_test() {
- # This fixed version is necessary to have apcu load
- # from the install before the tested apc.
- # It is intentional to specify phpoptions twice.
- # This mimics the Makefile.
- local slot phpoptions
- for slot in $(php_get_slots); do
- php_init_slot_env "${slot}"
- ln -s "${EXT_DIR}/apcu$(get_libname)" \
- "modules/" || die
- phpoptions=( -n -d extension_dir="${PHP_EXT_S}/modules"
- -d extension=apcu$(get_libname)
- -d extension=apc$(get_libname) )
- NO_INTERACTION="yes" TEST_PHP_EXECUTABLE="${PHPCLI}" \
- "${PHPCLI}" "${phpoptions[@]}" \
- run-tests.php "${phpoptions[@]}" || die
- done
-}