public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-php/symfony-process/
@ 2020-03-19 21:55 Thomas Deutschmann
  0 siblings, 0 replies; 11+ messages in thread
From: Thomas Deutschmann @ 2020-03-19 21:55 UTC (permalink / raw
  To: gentoo-commits

commit:     c0641426a50870a630f16cc2e329fb43c130dea2
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 19 21:52:22 2020 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu Mar 19 21:54:54 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0641426

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 <AT> gentoo.org>

 dev-php/symfony-process/Manifest                   |  1 +
 .../symfony-process/symfony-process-3.4.38.ebuild  | 43 ++++++++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git a/dev-php/symfony-process/Manifest b/dev-php/symfony-process/Manifest
index 51a7e028749..21376989361 100644
--- a/dev-php/symfony-process/Manifest
+++ b/dev-php/symfony-process/Manifest
@@ -1 +1,2 @@
 DIST symfony-process-3.4.29.tar.gz 34684 BLAKE2B 87f79a17ac321b395a634f0b83a0d218c39a06f0b5b553904c1c00431ffaf94f7bd26aa015cd426f5ba7726f09328b4b1d4475f4f8c229eedc1d52fc3f0142c1 SHA512 9e19406cad79f51d4ec811460a762c3a5004679e53777ca37049f5d8eb73bc3b569e266bd11ecddfc42481d7f05a4850bd6901c3ec2dd1d398d5077cdbe2e0bd
+DIST symfony-process-3.4.38.tar.gz 34424 BLAKE2B d990ba77e1d1e9b00e1b22381c9b3c454d94a8705ff7bd9830b59a32108f590efbb7e434e0f11421ccb143aa72d659d7211062c07c0cb36d18aae1f01e073b3a SHA512 14ff5f874904166978cb4021c87fde42611f05505498a8257089f97ae6f65051427c0f8e720a28b57e64de436818967676e35ddfc273e86b809ea0bf590662af

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 00000000000..569fa48b020
--- /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"
+}


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-php/symfony-process/
@ 2024-01-09 17:42 Mart Raudsepp
  0 siblings, 0 replies; 11+ messages in thread
From: Mart Raudsepp @ 2024-01-09 17:42 UTC (permalink / raw
  To: gentoo-commits

commit:     a2277940280f95b66af87e87787150c4cc3df899
Author:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Tue Jan  9 15:40:57 2024 +0000
Commit:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Tue Jan  9 17:38:25 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2277940

dev-php/symfony-process: keyword 3.4.38 for ~arm64

Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>

 dev-php/symfony-process/symfony-process-3.4.38.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 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
index 11d8a4f73eca..2d25bb7245fa 100644
--- a/dev-php/symfony-process/symfony-process-3.4.38.ebuild
+++ b/dev-php/symfony-process/symfony-process-3.4.38.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/symfony/process/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="test"
 RESTRICT="test"
 


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-php/symfony-process/
@ 2021-05-10  6:58 Agostino Sarubbo
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo @ 2021-05-10  6:58 UTC (permalink / raw
  To: gentoo-commits

commit:     5b5287f855bb1deda201f4b59b10571741eb969a
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon May 10 06:57:44 2021 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon May 10 06:57:44 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b5287f8

dev-php/symfony-process: x86 stable wrt bug #754018

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-php/symfony-process/symfony-process-3.4.38.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/symfony-process/symfony-process-3.4.38.ebuild b/dev-php/symfony-process/symfony-process-3.4.38.ebuild
index 11d16fd2c3b..11d8a4f73ec 100644
--- a/dev-php/symfony-process/symfony-process-3.4.38.ebuild
+++ b/dev-php/symfony-process/symfony-process-3.4.38.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/symfony/process/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 RESTRICT="test"
 


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-php/symfony-process/
@ 2021-05-06  6:55 Agostino Sarubbo
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo @ 2021-05-06  6:55 UTC (permalink / raw
  To: gentoo-commits

commit:     47211155f9d76a07fd7d3ec025356d2823cf3e79
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu May  6 06:53:36 2021 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu May  6 06:54:55 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47211155

dev-php/symfony-process: amd64 stable wrt bug #754018

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-php/symfony-process/symfony-process-3.4.38.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 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
index 569fa48b020..11d16fd2c3b 100644
--- a/dev-php/symfony-process/symfony-process-3.4.38.ebuild
+++ b/dev-php/symfony-process/symfony-process-3.4.38.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/symfony/process/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="test"
 RESTRICT="test"
 


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-php/symfony-process/
@ 2019-08-16 14:17 Brian Evans
  0 siblings, 0 replies; 11+ messages in thread
From: Brian Evans @ 2019-08-16 14:17 UTC (permalink / raw
  To: gentoo-commits

commit:     cb590c2b04ff9f0fccdfc2ec492fe48407024931
Author:     Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 16 14:08:18 2019 +0000
Commit:     Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Fri Aug 16 14:17:29 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb590c2b

dev-php/symfony-process: Drop old

Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Brian Evans <grknight <AT> gentoo.org>

 dev-php/symfony-process/Manifest                   |  1 -
 .../symfony-process/symfony-process-3.2.6.ebuild   | 43 ----------------------
 2 files changed, 44 deletions(-)

diff --git a/dev-php/symfony-process/Manifest b/dev-php/symfony-process/Manifest
index 9dbaf61740d..51a7e028749 100644
--- a/dev-php/symfony-process/Manifest
+++ b/dev-php/symfony-process/Manifest
@@ -1,2 +1 @@
-DIST symfony-process-3.2.6.tar.gz 31684 BLAKE2B 5129b6a7a01c137b9468950b8da58674343131863283cd96f8afac6d0d86969a61a1effc7d59c3735e6370059fb4f53e084011c07b629bddbd153fb6394d3d15 SHA512 8fd7712b2f63a46b6dea0b6cb76825c1e4c7b6a33123fe0949fedec820e599ffe5175bac567e8b453be7964f8b070bc2a2b9554b102a33834dfdbe959a23a3d4
 DIST symfony-process-3.4.29.tar.gz 34684 BLAKE2B 87f79a17ac321b395a634f0b83a0d218c39a06f0b5b553904c1c00431ffaf94f7bd26aa015cd426f5ba7726f09328b4b1d4475f4f8c229eedc1d52fc3f0142c1 SHA512 9e19406cad79f51d4ec811460a762c3a5004679e53777ca37049f5d8eb73bc3b569e266bd11ecddfc42481d7f05a4850bd6901c3ec2dd1d398d5077cdbe2e0bd

diff --git a/dev-php/symfony-process/symfony-process-3.2.6.ebuild b/dev-php/symfony-process/symfony-process-3.2.6.ebuild
deleted file mode 100644
index 03d09390cc5..00000000000
--- a/dev-php/symfony-process/symfony-process-3.2.6.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Symfony Process Component"
-HOMEPAGE="https://github.com/symfony/process"
-SRC_URI="${HOMEPAGE}/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"
-}


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-php/symfony-process/
@ 2019-08-16 14:17 Brian Evans
  0 siblings, 0 replies; 11+ messages in thread
From: Brian Evans @ 2019-08-16 14:17 UTC (permalink / raw
  To: gentoo-commits

commit:     0d0617ff7d73f4df3735461b7ddbe4f0c4b2dc9c
Author:     Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 16 14:13:07 2019 +0000
Commit:     Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Fri Aug 16 14:17:29 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d0617ff

dev-php/symfony-process: Remove HOMEPAGE from SRC_URI

Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Brian Evans <grknight <AT> gentoo.org>

 dev-php/symfony-process/symfony-process-3.4.29.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/symfony-process/symfony-process-3.4.29.ebuild b/dev-php/symfony-process/symfony-process-3.4.29.ebuild
index 75fe9dd83fc..27f884f7d55 100644
--- a/dev-php/symfony-process/symfony-process-3.4.29.ebuild
+++ b/dev-php/symfony-process/symfony-process-3.4.29.ebuild
@@ -5,7 +5,7 @@ EAPI="7"
 
 DESCRIPTION="Symfony Process Component"
 HOMEPAGE="https://github.com/symfony/process"
-SRC_URI="${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="https://github.com/symfony/process/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-php/symfony-process/
@ 2019-07-18 13:01 Thomas Deutschmann
  0 siblings, 0 replies; 11+ messages in thread
From: Thomas Deutschmann @ 2019-07-18 13:01 UTC (permalink / raw
  To: gentoo-commits

commit:     940a78ac6590901e84bcd6378456642cea262e84
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 18 12:23:02 2019 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu Jul 18 13:01:21 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=940a78ac

dev-php/symfony-process: bump to v3.4.29

Package-Manager: Portage-2.3.68, Repoman-2.3.16
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 dev-php/symfony-process/Manifest                   |  1 +
 .../symfony-process/symfony-process-3.4.29.ebuild  | 43 ++++++++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git a/dev-php/symfony-process/Manifest b/dev-php/symfony-process/Manifest
index 71dc6a21d79..9dbaf61740d 100644
--- a/dev-php/symfony-process/Manifest
+++ b/dev-php/symfony-process/Manifest
@@ -1 +1,2 @@
 DIST symfony-process-3.2.6.tar.gz 31684 BLAKE2B 5129b6a7a01c137b9468950b8da58674343131863283cd96f8afac6d0d86969a61a1effc7d59c3735e6370059fb4f53e084011c07b629bddbd153fb6394d3d15 SHA512 8fd7712b2f63a46b6dea0b6cb76825c1e4c7b6a33123fe0949fedec820e599ffe5175bac567e8b453be7964f8b070bc2a2b9554b102a33834dfdbe959a23a3d4
+DIST symfony-process-3.4.29.tar.gz 34684 BLAKE2B 87f79a17ac321b395a634f0b83a0d218c39a06f0b5b553904c1c00431ffaf94f7bd26aa015cd426f5ba7726f09328b4b1d4475f4f8c229eedc1d52fc3f0142c1 SHA512 9e19406cad79f51d4ec811460a762c3a5004679e53777ca37049f5d8eb73bc3b569e266bd11ecddfc42481d7f05a4850bd6901c3ec2dd1d398d5077cdbe2e0bd

diff --git a/dev-php/symfony-process/symfony-process-3.4.29.ebuild b/dev-php/symfony-process/symfony-process-3.4.29.ebuild
new file mode 100644
index 00000000000..75fe9dd83fc
--- /dev/null
+++ b/dev-php/symfony-process/symfony-process-3.4.29.ebuild
@@ -0,0 +1,43 @@
+# 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="${HOMEPAGE}/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"
+}


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-php/symfony-process/
@ 2017-11-14 14:47 Michael Orlitzky
  0 siblings, 0 replies; 11+ messages in thread
From: Michael Orlitzky @ 2017-11-14 14:47 UTC (permalink / raw
  To: gentoo-commits

commit:     23e9ce28b612ae6f6ae734c38d655d59111d6c10
Author:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 14 13:26:39 2017 +0000
Commit:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Tue Nov 14 14:42:02 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23e9ce28

dev-php/symfony-process: fix inconsistent use of whitespace in metadata.xml.

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-php/symfony-process/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/symfony-process/metadata.xml b/dev-php/symfony-process/metadata.xml
index 917b2b78329..e4ce1396c58 100644
--- a/dev-php/symfony-process/metadata.xml
+++ b/dev-php/symfony-process/metadata.xml
@@ -13,7 +13,7 @@
     <email>php-bugs@gentoo.org</email>
   </maintainer>
   <longdescription>
-  	The Process component executes commands in sub-processes.
+    The Process component executes commands in sub-processes.
   </longdescription>
   <upstream>
     <remote-id type="github">symfony/process</remote-id>


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-php/symfony-process/
@ 2017-04-25 22:03 Michael Orlitzky
  0 siblings, 0 replies; 11+ messages in thread
From: Michael Orlitzky @ 2017-04-25 22:03 UTC (permalink / raw
  To: gentoo-commits

commit:     95a1c5063cc9c45bc00079285ebdb563807aff4f
Author:     Guillaume Seren <guillaumeseren <AT> gmail <DOT> com>
AuthorDate: Sat Apr  1 12:15:12 2017 +0000
Commit:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Tue Apr 25 22:02:33 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95a1c506

dev-php/symfony-process: Add version 3.2.6

Add version bump 3.2.6

Gentoo-Bug: 613898

 dev-php/symfony-process/Manifest                   |  1 +
 .../symfony-process/symfony-process-3.2.6.ebuild   | 43 ++++++++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git a/dev-php/symfony-process/Manifest b/dev-php/symfony-process/Manifest
index e78c78e979f..fb3193f18e9 100644
--- a/dev-php/symfony-process/Manifest
+++ b/dev-php/symfony-process/Manifest
@@ -1 +1,2 @@
 DIST symfony-process-2.8.12.tar.gz 29787 SHA256 86cd9300ecb870a88d843363fa0a7415e0ee3b7815c94f76ccb21b901075337b SHA512 2956572f394aa58e784f7b2b3922f4c8f1d71d5eb9859b757ce5986776d3e960ffbfcee2fb55ff89c176362a5ee0276d3b71ef00ae7338be1761bd88b4116294 WHIRLPOOL 8ede35f972146645c4d75855cd9b8ea0c51a746698d952c3c6716ae0fbe138abe551f432a2bd9e2afe3945cff7ea9021bb102486fbc8c60c2528f78d083983ee
+DIST symfony-process-3.2.6.tar.gz 31684 SHA256 aaf955e88bc79f3304cebbb272c12b9faa9b07354ba3dce8793fa1a0766400b9 SHA512 8fd7712b2f63a46b6dea0b6cb76825c1e4c7b6a33123fe0949fedec820e599ffe5175bac567e8b453be7964f8b070bc2a2b9554b102a33834dfdbe959a23a3d4 WHIRLPOOL 9607ee99bd0314ad32d4ec5be42f4b2e4ceb3d7a953a5133dcb2a32e50ce7b1572dbd092ab92f4e01b441531b8a9751b0a7b971eb4df97d87acb44312182aa1f

diff --git a/dev-php/symfony-process/symfony-process-3.2.6.ebuild b/dev-php/symfony-process/symfony-process-3.2.6.ebuild
new file mode 100644
index 00000000000..03d09390cc5
--- /dev/null
+++ b/dev-php/symfony-process/symfony-process-3.2.6.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Symfony Process Component"
+HOMEPAGE="https://github.com/symfony/process"
+SRC_URI="${HOMEPAGE}/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"
+}


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-php/symfony-process/
@ 2017-04-25 22:03 Michael Orlitzky
  0 siblings, 0 replies; 11+ messages in thread
From: Michael Orlitzky @ 2017-04-25 22:03 UTC (permalink / raw
  To: gentoo-commits

commit:     7c1b3b945ebd0cb09e21a09520afa6377ba6b18e
Author:     Guillaume Seren <guillaumeseren <AT> gmail <DOT> com>
AuthorDate: Tue Apr 25 17:37:11 2017 +0000
Commit:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Tue Apr 25 22:02:36 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c1b3b94

dev-php/symfony-process: Remove old 2.8.12

 dev-php/symfony-process/Manifest                   |  1 -
 .../symfony-process/symfony-process-2.8.12.ebuild  | 24 ----------------------
 2 files changed, 25 deletions(-)

diff --git a/dev-php/symfony-process/Manifest b/dev-php/symfony-process/Manifest
index fb3193f18e9..af7065419a3 100644
--- a/dev-php/symfony-process/Manifest
+++ b/dev-php/symfony-process/Manifest
@@ -1,2 +1 @@
-DIST symfony-process-2.8.12.tar.gz 29787 SHA256 86cd9300ecb870a88d843363fa0a7415e0ee3b7815c94f76ccb21b901075337b SHA512 2956572f394aa58e784f7b2b3922f4c8f1d71d5eb9859b757ce5986776d3e960ffbfcee2fb55ff89c176362a5ee0276d3b71ef00ae7338be1761bd88b4116294 WHIRLPOOL 8ede35f972146645c4d75855cd9b8ea0c51a746698d952c3c6716ae0fbe138abe551f432a2bd9e2afe3945cff7ea9021bb102486fbc8c60c2528f78d083983ee
 DIST symfony-process-3.2.6.tar.gz 31684 SHA256 aaf955e88bc79f3304cebbb272c12b9faa9b07354ba3dce8793fa1a0766400b9 SHA512 8fd7712b2f63a46b6dea0b6cb76825c1e4c7b6a33123fe0949fedec820e599ffe5175bac567e8b453be7964f8b070bc2a2b9554b102a33834dfdbe959a23a3d4 WHIRLPOOL 9607ee99bd0314ad32d4ec5be42f4b2e4ceb3d7a953a5133dcb2a32e50ce7b1572dbd092ab92f4e01b441531b8a9751b0a7b971eb4df97d87acb44312182aa1f

diff --git a/dev-php/symfony-process/symfony-process-2.8.12.ebuild b/dev-php/symfony-process/symfony-process-2.8.12.ebuild
deleted file mode 100644
index 784e0219b16..00000000000
--- a/dev-php/symfony-process/symfony-process-2.8.12.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-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"
-
-RDEPEND="
-	dev-lang/php:*
-	dev-php/fedora-autoloader"
-
-S="${WORKDIR}/process-${PV}"
-
-src_install() {
-	insinto "/usr/share/php/Symfony/Component/Process"
-	doins -r . "${FILESDIR}"/autoload.php
-	dodoc README.md
-}


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-php/symfony-process/
@ 2016-12-18 23:18 Michael Orlitzky
  0 siblings, 0 replies; 11+ messages in thread
From: Michael Orlitzky @ 2016-12-18 23:18 UTC (permalink / raw
  To: gentoo-commits

commit:     420b85c6101705a5077dba448609a37de910827d
Author:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 23:12:54 2016 +0000
Commit:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 23:17:29 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=420b85c6

dev-php/symfony-process: add the PHP project as a co-maintainer.

Package-Manager: portage-2.3.0

 dev-php/symfony-process/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-php/symfony-process/metadata.xml b/dev-php/symfony-process/metadata.xml
index 1dba961..917b2b7 100644
--- a/dev-php/symfony-process/metadata.xml
+++ b/dev-php/symfony-process/metadata.xml
@@ -9,6 +9,9 @@
     <email>proxy-maint@gentoo.org</email>
     <name>Proxy Maintainers</name>
   </maintainer>
+  <maintainer type="project">
+    <email>php-bugs@gentoo.org</email>
+  </maintainer>
   <longdescription>
   	The Process component executes commands in sub-processes.
   </longdescription>


^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2024-01-09 17:42 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-19 21:55 [gentoo-commits] repo/gentoo:master commit in: dev-php/symfony-process/ Thomas Deutschmann
  -- strict thread matches above, loose matches on Subject: below --
2024-01-09 17:42 Mart Raudsepp
2021-05-10  6:58 Agostino Sarubbo
2021-05-06  6:55 Agostino Sarubbo
2019-08-16 14:17 Brian Evans
2019-08-16 14:17 Brian Evans
2019-07-18 13:01 Thomas Deutschmann
2017-11-14 14:47 Michael Orlitzky
2017-04-25 22:03 Michael Orlitzky
2017-04-25 22:03 Michael Orlitzky
2016-12-18 23:18 Michael Orlitzky

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox