summaryrefslogtreecommitdiff
path: root/dev-php/symfony-process/symfony-process-3.4.38.ebuild
diff options
context:
space:
mode:
authorThomas Deutschmann <whissi@gentoo.org>2020-03-19 22:52:22 +0100
committerThomas Deutschmann <whissi@gentoo.org>2020-03-19 22:54:54 +0100
commitc0641426a50870a630f16cc2e329fb43c130dea2 (patch)
tree3d248ab9c5d9056960acaa8defc6bf4a5acf216b /dev-php/symfony-process/symfony-process-3.4.38.ebuild
parentbb57567892fe845f6a49b4af743c7322458a9176 (diff)
downloadgentoo-c0641426a50870a630f16cc2e329fb43c130dea2.tar.gz
gentoo-c0641426a50870a630f16cc2e329fb43c130dea2.tar.bz2
gentoo-c0641426a50870a630f16cc2e329fb43c130dea2.zip
dev-php/symfony-process: bump to v3.4.38
Package-Manager: Portage-2.3.94, Repoman-2.3.21 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'dev-php/symfony-process/symfony-process-3.4.38.ebuild')
-rw-r--r--dev-php/symfony-process/symfony-process-3.4.38.ebuild43
1 files changed, 43 insertions, 0 deletions
diff --git a/dev-php/symfony-process/symfony-process-3.4.38.ebuild b/dev-php/symfony-process/symfony-process-3.4.38.ebuild
new file mode 100644
index 000000000000..569fa48b0205
--- /dev/null
+++ b/dev-php/symfony-process/symfony-process-3.4.38.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2020 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"
+}