public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-php/phpdepend/
@ 2015-12-02 17:11 Brian Evans
  0 siblings, 0 replies; 5+ messages in thread
From: Brian Evans @ 2015-12-02 17:11 UTC (permalink / raw
  To: gentoo-commits

commit:     b452ef821a4011630b0fa64ca67a619fb175e95f
Author:     Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Wed Dec  2 17:11:08 2015 +0000
Commit:     Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Wed Dec  2 17:11:08 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b452ef82

dev-php/phpdepend: Version bump

Convert from PEAR to PHAR archive

Package-Manager: portage-2.2.26

 dev-php/phpdepend/Manifest               |  1 +
 dev-php/phpdepend/phpdepend-2.2.2.ebuild | 25 +++++++++++++++++++++++++
 2 files changed, 26 insertions(+)

diff --git a/dev-php/phpdepend/Manifest b/dev-php/phpdepend/Manifest
index f4042b6..34dba05 100644
--- a/dev-php/phpdepend/Manifest
+++ b/dev-php/phpdepend/Manifest
@@ -1 +1,2 @@
 DIST PHP_Depend-1.1.1.tgz 181421 SHA256 64a03e82f6b38b4bd0187a27c2cc2bf47c76790b0f4e806dcdeab36ccc6e40f9 SHA512 688e8d0000a14fcc5eb4469d02177c6894f9172d2ae3813712c0af745f75327b6434a1a770d1c299bfce7c380fe5aeb3b9f9de26f4bf984d733437142bf7621b WHIRLPOOL f492e67b6e77985face1b50814dcbe4744d08cd83b8abfac8bc36254f4b67a866a53d3e15a9020a4a2ded7d5c12bbf36b949b2590aa778c8f5bd4ee7371679b6
+DIST phpdepend-2.2.2.phar 677194 SHA256 fdf8439b1485a6e8f02817e31621b5f929aad43dac9a672d076b054ecd354e4c SHA512 47519aa9f60b2dd393794fc6588f10f247b035367d514234d1e84bb564ff4ebd148dd299342722e4629847b0c0b625ba61a30bbe374215e4731a6d8187374ccc WHIRLPOOL df88d89480577ee662a553884642fbbebe00ae6764c2754ded10e237a54bd1da1d9199874158d0c7bf2e46bd98296596fb5cda4bd96407a40f04c25439a5a4b8

diff --git a/dev-php/phpdepend/phpdepend-2.2.2.ebuild b/dev-php/phpdepend/phpdepend-2.2.2.ebuild
new file mode 100644
index 0000000..284eb7c
--- /dev/null
+++ b/dev-php/phpdepend/phpdepend-2.2.2.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+DESCRIPTION="Static code analyser for PHP"
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+HOMEPAGE="http://www.pdepend.org"
+SRC_URI="http://static.pdepend.org/php/${PV}/pdepend.phar -> ${P}.phar"
+
+RDEPEND=">=dev-lang/php-5.2.3:*[phar]"
+S="${WORKDIR}"
+
+src_unpack() { :; }
+
+src_install() {
+	insinto /usr/share/php/${PN}
+	insopts -m755
+	newins "${DISTDIR}/${P}.phar" ${PN}.phar
+	dosym /usr/share/php/${PN}/${PN}.phar /usr/bin/${PN}
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-php/phpdepend/
@ 2015-12-02 17:22 Brian Evans
  0 siblings, 0 replies; 5+ messages in thread
From: Brian Evans @ 2015-12-02 17:22 UTC (permalink / raw
  To: gentoo-commits

commit:     1d8de7a23d04e9aea7ef61514d7c16690c8db672
Author:     Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Wed Dec  2 17:22:42 2015 +0000
Commit:     Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Wed Dec  2 17:22:42 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d8de7a2

dev-php/phpdepend: Fix incorrect license

Package-Manager: portage-2.2.26

 dev-php/phpdepend/phpdepend-1.1.1.ebuild | 4 ++--
 dev-php/phpdepend/phpdepend-2.2.2.ebuild | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-php/phpdepend/phpdepend-1.1.1.ebuild b/dev-php/phpdepend/phpdepend-1.1.1.ebuild
index cd9257b..8e0da0d 100644
--- a/dev-php/phpdepend/phpdepend-1.1.1.ebuild
+++ b/dev-php/phpdepend/phpdepend-1.1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -11,7 +11,7 @@ PHP_PEAR_URI="pear.pdepend.org"
 inherit php-pear-lib-r1
 
 DESCRIPTION="Static code analyser for PHP"
-LICENSE="GPL-3"
+LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE=""

diff --git a/dev-php/phpdepend/phpdepend-2.2.2.ebuild b/dev-php/phpdepend/phpdepend-2.2.2.ebuild
index 284eb7c..12ff3a2 100644
--- a/dev-php/phpdepend/phpdepend-2.2.2.ebuild
+++ b/dev-php/phpdepend/phpdepend-2.2.2.ebuild
@@ -5,7 +5,7 @@
 EAPI="5"
 
 DESCRIPTION="Static code analyser for PHP"
-LICENSE="GPL-3"
+LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE=""


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

* [gentoo-commits] repo/gentoo:master commit in: dev-php/phpdepend/
@ 2016-05-21 15:47 Pacho Ramos
  0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos @ 2016-05-21 15:47 UTC (permalink / raw
  To: gentoo-commits

commit:     654309c633b3dd9ab3f9387927387a660cb81c34
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat May 21 15:45:22 2016 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat May 21 15:45:22 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=654309c6

dev-php/phpdepend: Cleanup due to #321263

Package-Manager: portage-2.3.0_rc1

 dev-php/phpdepend/metadata.xml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/dev-php/phpdepend/metadata.xml b/dev-php/phpdepend/metadata.xml
index 6637855..4a41df4 100644
--- a/dev-php/phpdepend/metadata.xml
+++ b/dev-php/phpdepend/metadata.xml
@@ -1,10 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<maintainer type="person">
-<email>olemarkus@gentoo.org</email>
-<name>Ole Markus With</name>
-</maintainer>
 <maintainer type="project">
 <email>php-bugs@gentoo.org</email>
 <name>PHP</name>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-php/phpdepend/
@ 2017-04-25 21:05 Michael Orlitzky
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Orlitzky @ 2017-04-25 21:05 UTC (permalink / raw
  To: gentoo-commits

commit:     eef2459ac652b530496b502a4f0d143d6f7f6514
Author:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 25 21:04:05 2017 +0000
Commit:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Tue Apr 25 21:04:21 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eef2459a

dev-php/phpdepend: new version 2.5.0.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-php/phpdepend/Manifest                                       | 2 +-
 .../phpdepend/{phpdepend-2.3.2.ebuild => phpdepend-2.5.0.ebuild} | 9 +++------
 2 files changed, 4 insertions(+), 7 deletions(-)

diff --git a/dev-php/phpdepend/Manifest b/dev-php/phpdepend/Manifest
index d8849316513..f7484924756 100644
--- a/dev-php/phpdepend/Manifest
+++ b/dev-php/phpdepend/Manifest
@@ -1 +1 @@
-DIST phpdepend-2.3.2.tar.gz 187985 SHA256 6edbb892ece8a9e811d9bee071442ca9b393ac3a4110b3d1db45e0c9c0b03887 SHA512 00c9af24f9e17f1935d2d0315b4204d47d4a6d1ebcf4e22e9860ff4eb9292e25da7171f2a95b2ba545872b55042f3ac6c495105f67635fdd1386e96494f8ccdd WHIRLPOOL 42bd82efca09fd672c6c087a8067f02f9b8d6717df2023ab38499f8833a81a93833940e466707f985cdd938c6d86075ad526af02e4fe53582c23b3e392b64ca1
+DIST phpdepend-2.5.0.tar.gz 190823 SHA256 00625ec4d612f4159d1ff2abed9f494f3f9c72354c3895663ce4821ef001c10c SHA512 927ff961773c3b2076b11b374035482c05b2da3a9777418c6fe0a491bd20eec431bfd75cd706674e231c9f73d97b6b0236eea12794cfff2d8ad52a6a6170e137 WHIRLPOOL 5a091e47abd06857644e4f8462ee1019c077ab2f0cc67e28e37c4225c13362e4de43eb525656a037281421e569dc0c4f890b8c53a383ff4d351e39b20c49e11b

diff --git a/dev-php/phpdepend/phpdepend-2.3.2.ebuild b/dev-php/phpdepend/phpdepend-2.5.0.ebuild
similarity index 79%
rename from dev-php/phpdepend/phpdepend-2.3.2.ebuild
rename to dev-php/phpdepend/phpdepend-2.5.0.ebuild
index 9c86974d086..c1b232bc97c 100644
--- a/dev-php/phpdepend/phpdepend-2.3.2.ebuild
+++ b/dev-php/phpdepend/phpdepend-2.5.0.ebuild
@@ -19,14 +19,11 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE=""
 
-# Warning: the "range" dependencies below only work so long
-# as the libraries they refer to are not slotted.
 RDEPEND="dev-lang/php
 	dev-php/fedora-autoloader
-	( >=dev-php/symfony-config-2.3.0 <dev-php/symfony-config-3 )
-	( >=dev-php/symfony-dependency-injection-2.3.0
-		<dev-php/symfony-dependency-injection-3 )
-	<dev-php/symfony-filesystem-3"
+	>=dev-php/symfony-config-2.3
+	>=dev-php/symfony-dependency-injection-2.3
+	>=dev-php/symfony-filesystem-2.3"
 
 S="${WORKDIR}/${MY_PN}-${PV}"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-php/phpdepend/
@ 2018-02-20 19:30 Brian Evans
  0 siblings, 0 replies; 5+ messages in thread
From: Brian Evans @ 2018-02-20 19:30 UTC (permalink / raw
  To: gentoo-commits

commit:     4de84f4e824efba9fdc2c4e11ce6b03f215bb56e
Author:     Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 20 19:08:03 2018 +0000
Commit:     Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Tue Feb 20 19:29:21 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4de84f4e

dev-php/phpdepend: Revbump to fix absolute symlink

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 .../phpdepend/{phpdepend-2.5.0.ebuild => phpdepend-2.5.0-r1.ebuild}   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-php/phpdepend/phpdepend-2.5.0.ebuild b/dev-php/phpdepend/phpdepend-2.5.0-r1.ebuild
similarity index 91%
rename from dev-php/phpdepend/phpdepend-2.5.0.ebuild
rename to dev-php/phpdepend/phpdepend-2.5.0-r1.ebuild
index c1b232bc97c..1ea5cc4ab92 100644
--- a/dev-php/phpdepend/phpdepend-2.5.0.ebuild
+++ b/dev-php/phpdepend/phpdepend-2.5.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -42,5 +42,5 @@ src_install() {
 	# actually run needs to be symlinked into the source tree.
 	exeinto "/usr/share/${PN}/src/bin"
 	doexe "src/bin/${MY_PN}"
-	dosym "/usr/share/${PN}/src/bin/${MY_PN}" "/usr/bin/${MY_PN}"
+	dosym "../share/${PN}/src/bin/${MY_PN}" "/usr/bin/${MY_PN}"
 }


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

end of thread, other threads:[~2018-02-20 19:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-21 15:47 [gentoo-commits] repo/gentoo:master commit in: dev-php/phpdepend/ Pacho Ramos
  -- strict thread matches above, loose matches on Subject: below --
2018-02-20 19:30 Brian Evans
2017-04-25 21:05 Michael Orlitzky
2015-12-02 17:22 Brian Evans
2015-12-02 17:11 Brian Evans

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