public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-php/phpDocumentor/
@ 2017-05-28 14:35 Brian Evans
  0 siblings, 0 replies; 5+ messages in thread
From: Brian Evans @ 2017-05-28 14:35 UTC (permalink / raw
  To: gentoo-commits

commit:     e416ba43e22b1148c39bdd123fc8e400803bd1aa
Author:     Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Sun May 28 14:35:31 2017 +0000
Commit:     Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Sun May 28 14:35:31 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e416ba43

dev-php/phpDocumentor: Shorten description to make repoman happy

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-php/phpDocumentor/phpDocumentor-2.7.0.ebuild | 2 +-
 dev-php/phpDocumentor/phpDocumentor-2.8.2.ebuild | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-php/phpDocumentor/phpDocumentor-2.7.0.ebuild b/dev-php/phpDocumentor/phpDocumentor-2.7.0.ebuild
index 5ce8467627e..7e5b156e075 100644
--- a/dev-php/phpDocumentor/phpDocumentor-2.7.0.ebuild
+++ b/dev-php/phpDocumentor/phpDocumentor-2.7.0.ebuild
@@ -8,7 +8,7 @@ PHP_PEAR_CHANNEL="${FILESDIR}/channel.xml"
 
 inherit php-pear-r2
 
-DESCRIPTION="The phpDocumentor package provides automatic documenting of php api directly from the source"
+DESCRIPTION="Automatic documenting of php api directly from the source"
 SRC_URI="http://${PHP_PEAR_URI}/get/${PEAR_P}.tgz"
 LICENSE="MIT"
 SLOT="0"

diff --git a/dev-php/phpDocumentor/phpDocumentor-2.8.2.ebuild b/dev-php/phpDocumentor/phpDocumentor-2.8.2.ebuild
index 2ad05d0b3b9..1e4d18cd349 100644
--- a/dev-php/phpDocumentor/phpDocumentor-2.8.2.ebuild
+++ b/dev-php/phpDocumentor/phpDocumentor-2.8.2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
-DESCRIPTION="The phpDocumentor package provides automatic documenting of php api directly from the source"
+DESCRIPTION="Automatic documenting of php api directly from the source"
 HOMEPAGE="http://phpdoc.org"
 SRC_URI="https://github.com/${PN}/${PN}2/releases/download/v${PV}/${PN}.phar -> ${P}.phar"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-php/phpDocumentor/
@ 2017-05-28 14:35 Brian Evans
  0 siblings, 0 replies; 5+ messages in thread
From: Brian Evans @ 2017-05-28 14:35 UTC (permalink / raw
  To: gentoo-commits

commit:     9ac97b036d17d01aecebf00b71c9762fc861a725
Author:     Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Sun May 28 14:31:51 2017 +0000
Commit:     Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Sun May 28 14:31:51 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ac97b03

dev-php/phpDocumentor: Move 2.7.0 to new eclass

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-php/phpDocumentor/phpDocumentor-2.7.0.ebuild | 29 +++++++++++++++++-------
 1 file changed, 21 insertions(+), 8 deletions(-)

diff --git a/dev-php/phpDocumentor/phpDocumentor-2.7.0.ebuild b/dev-php/phpDocumentor/phpDocumentor-2.7.0.ebuild
index d86ffa0d17f..5ce8467627e 100644
--- a/dev-php/phpDocumentor/phpDocumentor-2.7.0.ebuild
+++ b/dev-php/phpDocumentor/phpDocumentor-2.7.0.ebuild
@@ -1,14 +1,15 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
-PHP_PEAR_URI="pear.phpdoc.org"
+PHP_PEAR_DOMAIN="pear.phpdoc.org"
+PHP_PEAR_CHANNEL="${FILESDIR}/channel.xml"
 
-inherit php-pear-r1
+inherit php-pear-r2
 
 DESCRIPTION="The phpDocumentor package provides automatic documenting of php api directly from the source"
-
+SRC_URI="http://${PHP_PEAR_URI}/get/${PEAR_P}.tgz"
 LICENSE="MIT"
 SLOT="0"
 
@@ -18,11 +19,23 @@ IUSE="doc"
 # block old version that provides the same binary
 DEPEND="!dev-php/PEAR-PhpDocumentor"
 RDEPEND="media-gfx/graphviz
-	dev-lang/php[iconv,intl,xmlreader,xslt]"
+	dev-lang/php:*[iconv,intl,xmlreader,xslt]"
 
-src_install() {
-	php-pear-r1_src_install
+src_prepare() {
+	sed -i	-e "s~@php_dir@~${EPREFIX}/usr/share/php~" \
+		"${S}/bin/phpdoc" || die
+	eapply_user
+}
 
+src_install() {
+	exeinto /usr/bin
+	doexe bin/phpdoc
+	insinto /usr/share/php/${PN}
+	doins -r vendor src/* phpdoc.dist.xml bin/phpdoc.php
+	insinto /usr/share/php/data/${PN}
+	doins -r ansible data features box.json composer.json composer.lock phpmd.xml.dist wercker.yml
 	# install manual, tutorial, reference material
 	use doc && dodoc -r docs/*
+	php-pear-r2_install_packagexml
+	einstalldocs
 }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-php/phpDocumentor/
@ 2017-05-28 14:35 Brian Evans
  0 siblings, 0 replies; 5+ messages in thread
From: Brian Evans @ 2017-05-28 14:35 UTC (permalink / raw
  To: gentoo-commits

commit:     114a2d8c45a516abb968d840dd25574d036d7ac2
Author:     Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Sun May 28 14:33:00 2017 +0000
Commit:     Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Sun May 28 14:33:00 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=114a2d8c

dev-php/phpDocumentor: Drop old

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-php/phpDocumentor/Manifest                   |  1 -
 dev-php/phpDocumentor/phpDocumentor-2.3.0.ebuild | 28 ------------------------
 2 files changed, 29 deletions(-)

diff --git a/dev-php/phpDocumentor/Manifest b/dev-php/phpDocumentor/Manifest
index 53cc8e19556..43a0a605e01 100644
--- a/dev-php/phpDocumentor/Manifest
+++ b/dev-php/phpDocumentor/Manifest
@@ -1,3 +1,2 @@
-DIST phpDocumentor-2.3.0.tgz 17137438 SHA256 1b093f41ecadb0c541a9adb6dc520d4fe06eaf0a6c74a752ffe5e7bff63b751a SHA512 74ad4329d90e71a76977a38ed39dfeff33f557d68a1393f834f2eeb5d4b5e880a4b1813ecb1f4edff638fc5633a3a4b4c7156c5c6cb15e755db283780305c435 WHIRLPOOL 1b14119cbeb21f0887401423ddf50b6afdc379a433ad09db1229d8e53f7e7312df64055d69932d21deec1b3842c3cab78afe5212f7cd6eb1c9ebd8102acc3895
 DIST phpDocumentor-2.7.0.tgz 16118916 SHA256 4d0acb78e6233990595461b70f11db66d91fd38d4e8de5616b788db104caa746 SHA512 068f2470f73ea6940077c23f5565e737d6065e881b9d1456fc617b00c285cc2358773afc16e97e3d9403b5caaaa32a9dcd360bfc91decf349f4b100fee4a9129 WHIRLPOOL 29833d4cdf28f13bb4c78d3d9cb6a6c28acb9a60a1adfa5e6d30b4768afcec157aaecb32b85a75953e987bbda98d717076ebcc723c344af67f4ec32339fe7ba1
 DIST phpDocumentor-2.8.2.phar 33079646 SHA256 1f055bd562b7a209c4f89e865e653576b10a239880e55f423df02ecba4d48c53 SHA512 ef47483147358d423595d6c771971481b99338adeed0f2742ab6856925d3a1d501d4e786aab75cba5dc2306728aef6bf8fc4cfd8ea35d5d9c903f1afa5695c2a WHIRLPOOL c5b551dc3fbcd6b347b24a77ca7378e4301bcbf738f210a0f4b1a0b18d279028787a331c6274963b7c3f7749dba9d4f1993747cebd0be4531add3bce8954f665

diff --git a/dev-php/phpDocumentor/phpDocumentor-2.3.0.ebuild b/dev-php/phpDocumentor/phpDocumentor-2.3.0.ebuild
deleted file mode 100644
index 7f4f9beb051..00000000000
--- a/dev-php/phpDocumentor/phpDocumentor-2.3.0.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PHP_PEAR_URI="pear.phpdoc.org"
-
-inherit php-pear-r1
-
-DESCRIPTION="The phpDocumentor package provides automatic documenting of php api directly from the source"
-
-LICENSE="MIT"
-SLOT="0"
-
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="doc"
-
-# block old version that provides the same binary
-DEPEND="!dev-php/PEAR-PhpDocumentor"
-RDEPEND="media-gfx/graphviz
-	dev-lang/php[iconv,intl,xslt]"
-
-src_install() {
-	php-pear-r1_src_install
-
-	# install manual, tutorial, reference material
-	use doc && dodoc -r docs/*
-}


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

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

commit:     2e7e9b91102abc178b6ef1153a4c2d851699dae0
Author:     Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 20 18:45:36 2018 +0000
Commit:     Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Tue Feb 20 19:28:50 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e7e9b91

dev-php/phpDocumentor: Version bump to 2.9.0

Includes php 7 syntax support

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-php/phpDocumentor/Manifest                   |  1 +
 dev-php/phpDocumentor/phpDocumentor-2.9.0.ebuild | 28 ++++++++++++++++++++++++
 2 files changed, 29 insertions(+)

diff --git a/dev-php/phpDocumentor/Manifest b/dev-php/phpDocumentor/Manifest
index f17c77767eb..b7f085e8fa0 100644
--- a/dev-php/phpDocumentor/Manifest
+++ b/dev-php/phpDocumentor/Manifest
@@ -1,2 +1,3 @@
 DIST phpDocumentor-2.7.0.tgz 16118916 BLAKE2B de8538d7b45b1d266fa3dfafcea7d9d6ff91972419aeea334058bf9655f98cfc9ee8ba3a3205f4f939dea462b54c9c30425ec80172a394498b3da2c4d230a72a SHA512 068f2470f73ea6940077c23f5565e737d6065e881b9d1456fc617b00c285cc2358773afc16e97e3d9403b5caaaa32a9dcd360bfc91decf349f4b100fee4a9129
 DIST phpDocumentor-2.8.2.phar 33079646 BLAKE2B cb66562a6417cb9015f432be221cfaf4e7c577301e3cbdcf09a2f1add7e42ddc2fd6cda91c4a78a8a41f9ceebc60bcffe3bccb8b12077be565b2f6529cff1d78 SHA512 ef47483147358d423595d6c771971481b99338adeed0f2742ab6856925d3a1d501d4e786aab75cba5dc2306728aef6bf8fc4cfd8ea35d5d9c903f1afa5695c2a
+DIST phpDocumentor-2.9.0.phar 18276081 BLAKE2B 988d9ae15a369c94d6dd83d68b64054d4d1829d651ae28a5082913ebd47666a73f5e48d331c09561777b58c6716707f4751b047e1aad9545d83ac9c964933b80 SHA512 62efc492d387675f753094bf4c42f890808bc3f45ae4a6908a519722af11ffbda41b47100e68f12e5b73a2eaa49fe8afc8143c751518a2a68b10afa18f896f10

diff --git a/dev-php/phpDocumentor/phpDocumentor-2.9.0.ebuild b/dev-php/phpDocumentor/phpDocumentor-2.9.0.ebuild
new file mode 100644
index 00000000000..dac43364c33
--- /dev/null
+++ b/dev-php/phpDocumentor/phpDocumentor-2.9.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Automatic documenting of php api directly from the source"
+HOMEPAGE="http://phpdoc.org"
+SRC_URI="https://github.com/${PN}/${PN}2/releases/download/v${PV}/${PN}.phar -> ${P}.phar"
+
+LICENSE="MIT"
+SLOT="0"
+
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE=""
+
+# block old version that provides the same binary
+DEPEND="!dev-php/PEAR-PhpDocumentor"
+RDEPEND="media-gfx/graphviz
+	dev-lang/php:*[cli,iconv,intl,phar,xmlreader,xslt]"
+S="${WORKDIR}"
+
+src_unpack() { :; }
+
+src_install() {
+	exeinto /usr/share/php/${PN}
+	newexe "${DISTDIR}/${P}.phar" ${PN}.phar
+	dosym "../share/php/${PN}/${PN}.phar" /usr/bin/phpdoc
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-php/phpDocumentor/
@ 2023-12-08 16:29 Arthur Zamarin
  0 siblings, 0 replies; 5+ messages in thread
From: Arthur Zamarin @ 2023-12-08 16:29 UTC (permalink / raw
  To: gentoo-commits

commit:     ed0ca5461da803af0b9dc88fab41a08da39edbf5
Author:     Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk>
AuthorDate: Fri Dec  8 16:22:00 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Dec  8 16:29:33 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed0ca546

dev-php/phpDocumentor: unkeyword 2.9.0 for ~alpha

Bug: https://bugs.gentoo.org/873523
Signed-off-by: Matoro Mahri <matoro_gentoo <AT> matoro.tk>
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-php/phpDocumentor/phpDocumentor-2.9.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-php/phpDocumentor/phpDocumentor-2.9.0.ebuild b/dev-php/phpDocumentor/phpDocumentor-2.9.0.ebuild
index 48f99127a9eb..ca85906308ee 100644
--- a/dev-php/phpDocumentor/phpDocumentor-2.9.0.ebuild
+++ b/dev-php/phpDocumentor/phpDocumentor-2.9.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/${PN}/${PN}2/releases/download/v${PV}/${PN}.phar ->
 LICENSE="MIT"
 SLOT="0"
 
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE=""
 
 # block old version that provides the same binary


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

end of thread, other threads:[~2023-12-08 16:29 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-28 14:35 [gentoo-commits] repo/gentoo:master commit in: dev-php/phpDocumentor/ Brian Evans
  -- strict thread matches above, loose matches on Subject: below --
2017-05-28 14:35 Brian Evans
2017-05-28 14:35 Brian Evans
2018-02-20 19:29 Brian Evans
2023-12-08 16:29 Arthur Zamarin

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