summaryrefslogtreecommitdiff
path: root/dev-php/symfony-process/symfony-process-3.4.29.ebuild
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2025-03-14 06:29:43 +0000
committerSam James <sam@gentoo.org>2025-03-14 06:33:38 +0000
commitaa59622a8f3e75bc6fd67bb4af659a397e06f78a (patch)
treef1b6f0cb93064d4711b4ca8dbbfe5439fdd349fa /dev-php/symfony-process/symfony-process-3.4.29.ebuild
parent1d85e12cbf351d39585a932901d369710eb1056f (diff)
downloadgentoo-aa59622a8f3e75bc6fd67bb4af659a397e06f78a.tar.gz
gentoo-aa59622a8f3e75bc6fd67bb4af659a397e06f78a.tar.bz2
gentoo-aa59622a8f3e75bc6fd67bb4af659a397e06f78a.zip
dev-php/symfony-process: drop 3.4.29
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-php/symfony-process/symfony-process-3.4.29.ebuild')
-rw-r--r--dev-php/symfony-process/symfony-process-3.4.29.ebuild43
1 files changed, 0 insertions, 43 deletions
diff --git a/dev-php/symfony-process/symfony-process-3.4.29.ebuild b/dev-php/symfony-process/symfony-process-3.4.29.ebuild
deleted file mode 100644
index 27f884f7d553..000000000000
--- a/dev-php/symfony-process/symfony-process-3.4.29.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-DESCRIPTION="Symfony Process Component"
-HOMEPAGE="https://github.com/symfony/process"
-SRC_URI="https://github.com/symfony/process/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="test"
-
-RDEPEND="
- dev-lang/php:*
- dev-php/fedora-autoloader"
-DEPEND="
- test? (
- ${RDEPEND}
- dev-php/phpunit )"
-
-S="${WORKDIR}/process-${PV}"
-
-src_prepare() {
- default
- if use test; then
- cp "${FILESDIR}"/autoload.php "${S}"/autoload-test.php || die
- fi
-}
-
-src_install() {
- insinto "/usr/share/php/Symfony/Component/Process"
- doins -r Exception/ Pipes/ ExecutableFinder.php InputStream.php \
- LICENSE PhpExecutableFinder.php PhpProcess.php ProcessBuilder.php \
- Process.php ProcessUtils.php "${FILESDIR}"/autoload.php
- dodoc README.md
-}
-
-src_test() {
- phpunit --bootstrap "${S}"/autoload-test.php || die "test suite failed"
-}