From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 58301158020 for ; Wed, 26 Oct 2022 19:56:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E6985E09CE; Wed, 26 Oct 2022 19:56:53 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CBBA4E09CE for ; Wed, 26 Oct 2022 19:56:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C22EE340BE8 for ; Wed, 26 Oct 2022 19:56:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 29D8662F for ; Wed, 26 Oct 2022 19:56:51 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1666813661.178685843a0d5dd4c64dc262833ba5b8e04010a7.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-parallel/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/pecl-parallel/pecl-parallel-9999.ebuild X-VCS-Directories: dev-php/pecl-parallel/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 178685843a0d5dd4c64dc262833ba5b8e04010a7 X-VCS-Branch: master Date: Wed, 26 Oct 2022 19:56:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8842c78a-40d9-4add-b2aa-715b8f3597f8 X-Archives-Hash: 80be96a8cec6ae77cb4abfb936b4b087 commit: 178685843a0d5dd4c64dc262833ba5b8e04010a7 Author: Jaco Kroon uls co za> AuthorDate: Mon Oct 24 07:37:08 2022 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Wed Oct 26 19:47:41 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17868584 dev-php/pecl-parallel: drop 9999 Signed-off-by: Jaco Kroon uls.co.za> Closes: https://github.com/gentoo/gentoo/pull/27925 Signed-off-by: Conrad Kostecki gentoo.org> dev-php/pecl-parallel/pecl-parallel-9999.ebuild | 28 ------------------------- 1 file changed, 28 deletions(-) diff --git a/dev-php/pecl-parallel/pecl-parallel-9999.ebuild b/dev-php/pecl-parallel/pecl-parallel-9999.ebuild deleted file mode 100644 index f89155872481..000000000000 --- a/dev-php/pecl-parallel/pecl-parallel-9999.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="8" - -PHP_EXT_NAME="parallel" -USE_PHP="php8-0 php8-1" -PHP_EXT_NEEDED_USE="threads" -PHP_EXT_ECONF_ARGS=() - -inherit php-ext-source-r3 git-r3 - -DESCRIPTION="A succint parallel concurrency API for PHP" -HOMEPAGE="https://pecl.php.net/package/parallel" -EGIT_REPO_URI="https://github.com/krakjoe/parallel.git" - -LICENSE="PHP-3.01" -SLOT="0" -KEYWORDS="" -IUSE="doc" - -src_unpack() { - git-r3_src_unpack - - # create the default modules directory to be able - # to use the php-ext-source-r3 eclass to configure/build - ln -s src "${S}/modules" || die -}