diff options
author | David Seifert <soap@gentoo.org> | 2023-09-15 09:52:08 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2023-09-15 09:52:08 +0200 |
commit | 1707f1518802042d2cdafc554dec45b7858ce6dd (patch) | |
tree | 6265b170efde728cda1bfffdf7d7ca10c19d7169 /dev-php | |
parent | dev-php/pecl-memcache: drop 4.0.5.2-r1 (diff) | |
download | gentoo-1707f1518802042d2cdafc554dec45b7858ce6dd.tar.gz gentoo-1707f1518802042d2cdafc554dec45b7858ce6dd.tar.bz2 gentoo-1707f1518802042d2cdafc554dec45b7858ce6dd.zip |
dev-php/swoole-async: treeclean
Closes: https://bugs.gentoo.org/882195
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/swoole-async/Manifest | 1 | ||||
-rw-r--r-- | dev-php/swoole-async/metadata.xml | 8 | ||||
-rw-r--r-- | dev-php/swoole-async/swoole-async-4.4.16-r1.ebuild | 52 |
3 files changed, 0 insertions, 61 deletions
diff --git a/dev-php/swoole-async/Manifest b/dev-php/swoole-async/Manifest deleted file mode 100644 index 1603139bd25c..000000000000 --- a/dev-php/swoole-async/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST swoole-async-4.4.16.tar.gz 419094 BLAKE2B 7b93a0d2eb8a9597a68871783c60746c832b2eb1dce89a0f82ca6df2ee20151f910ad4f8ebb6a453bea3b7c2cc274266614f147b34c21a089ff9cc4ca0f73d1c SHA512 cf4bfc3c86740e343774b2cddc0ef2386f522e7929c160bc10d47ebe0b8f8d63dbcc82e70b7f3f30e7f7c102ebd42b02cddf4c3e1a0289f0e45147ddbd9aa546 diff --git a/dev-php/swoole-async/metadata.xml b/dev-php/swoole-async/metadata.xml deleted file mode 100644 index fc23648923fd..000000000000 --- a/dev-php/swoole-async/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 Project</name> - </maintainer> -</pkgmetadata> diff --git a/dev-php/swoole-async/swoole-async-4.4.16-r1.ebuild b/dev-php/swoole-async/swoole-async-4.4.16-r1.ebuild deleted file mode 100644 index 7e3dc9689a29..000000000000 --- a/dev-php/swoole-async/swoole-async-4.4.16-r1.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -PHP_EXT_NAME="swoole_async" -PHP_EXT_INI="yes" -PHP_EXT_ZENDEXT="no" -PHP_EXT_SAPIS="cli" -DOCS=( README.md ) - -USE_PHP="php7-4" - -inherit php-ext-pecl-r3 - -SRC_URI="https://github.com/swoole/ext-async/archive/v${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/ext-async-${PV}" -PHP_EXT_S="${S}" - -HOMEPAGE="https://www.swoole.co.uk" -KEYWORDS="~amd64 ~x86" - -DESCRIPTION="An extension of Swoole, including the async callback style API" -LICENSE="Apache-2.0" -SLOT="0" -# Tests will require pre-configured endpoint -RESTRICT="test" - -# This will only compile with the same version of dev-php/swoole -DEPEND="~dev-php/swoole-${PV}[php_targets_php7-4(-)?]" - -RDEPEND="${DEPEND}" - -IUSE="debug" - -src_configure() { - local PHP_EXT_ECONF_ARGS=( - --enable-swoole_async - $(use_enable debug) - ) - - php-ext-source-r3_src_configure -} - -src_test() { - local slot - for slot in $(php_get_slots); do - php_init_slot_env "${slot}" - [[ -f tests/template.phpt ]] && rm tests/template.phpt - SKIP_ONLINE_TESTS="yes" NO_INTERACTION="yes" emake test - done -} |