* [gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-PEAR_PackageFileManager2/
@ 2016-12-27 16:43 Brian Evans
0 siblings, 0 replies; 4+ messages in thread
From: Brian Evans @ 2016-12-27 16:43 UTC (permalink / raw
To: gentoo-commits
commit: 270420453e28871eadad83ee45e5dbab67127c97
Author: Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 27 16:32:03 2016 +0000
Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Tue Dec 27 16:32:03 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27042045
dev-php/PEAR-PEAR_PackageFileManager2: New package
Required dependency for PEAR-PEAR_PackageFileManager
Package-Manager: Portage-2.3.3, Repoman-2.3.1
dev-php/PEAR-PEAR_PackageFileManager2/Manifest | 1 +
.../PEAR-PEAR_PackageFileManager2-1.0.4.ebuild | 46 ++++++++++++++++++++++
dev-php/PEAR-PEAR_PackageFileManager2/metadata.xml | 8 ++++
3 files changed, 55 insertions(+)
diff --git a/dev-php/PEAR-PEAR_PackageFileManager2/Manifest b/dev-php/PEAR-PEAR_PackageFileManager2/Manifest
new file mode 100644
index 00000000..d8d75c6
--- /dev/null
+++ b/dev-php/PEAR-PEAR_PackageFileManager2/Manifest
@@ -0,0 +1 @@
+DIST PEAR_PackageFileManager2-1.0.4.tgz 43365 SHA256 44731f87677e476821c04313e8c1ffd41d330ce33ebce99112ded919af029601 SHA512 2748ebb21158521a74246ea410f9a30ae6d4b41e88aba543888238c5fc53060e6cf5c537cb95f595147690a2cbdfaaa34a6b3280924ee153cd3d47f2deb3a636 WHIRLPOOL 5824cde7c149df8dd4b8c82e7a45be47efea6e94e2df41546dc950e32bdce93195bf091656c45ef964d37730838b091366cbfdec000509c662538349c700468d
diff --git a/dev-php/PEAR-PEAR_PackageFileManager2/PEAR-PEAR_PackageFileManager2-1.0.4.ebuild b/dev-php/PEAR-PEAR_PackageFileManager2/PEAR-PEAR_PackageFileManager2-1.0.4.ebuild
new file mode 100644
index 00000000..60d1907
--- /dev/null
+++ b/dev-php/PEAR-PEAR_PackageFileManager2/PEAR-PEAR_PackageFileManager2-1.0.4.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+MY_PN="${PN/PEAR-/}"
+MY_P="${MY_PN}-${PV}"
+
+HOMEPAGE="http://pear.php.net/package/${MY_PN}"
+SRC_URI="http://pear.php.net/get/${MY_P}.tgz"
+DESCRIPTION="Updates an existing package.xml file with a new filelist and changelog"
+LICENSE="PHP-3.01"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="minimal"
+
+RDEPEND=">=dev-lang/php-5.3:*
+ >=dev-php/PEAR-PEAR-1.10.1
+ dev-php/PEAR-PEAR_PackageFileManager_Plugins
+ !minimal? ( >=dev-php/PEAR-PHP_CompatInfo-1.4.0 )"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+ default_src_prepare
+ sed -i -e '/role="doc"/d' -e '/role="test"/d' "${WORKDIR}/package.xml" || die
+}
+
+src_install() {
+ insinto /usr/share/php
+ doins -r PEAR
+}
+
+pkg_postinst() {
+ # Register the package from the package.xml file
+ # Operation is not critical so die is not required
+ if [[ -f "${WORKDIR}/package.xml" ]] ; then
+ "${EROOT}usr/bin/peardev" install -nrO --force "${WORKDIR}/package.xml" 2> /dev/null
+ fi
+}
+
+pkg_postrm() {
+ # Uninstall known dependency
+ "${EROOT}usr/bin/peardev" uninstall -nrO "pear.php.net/${MY_PN}"
+}
diff --git a/dev-php/PEAR-PEAR_PackageFileManager2/metadata.xml b/dev-php/PEAR-PEAR_PackageFileManager2/metadata.xml
new file mode 100644
index 00000000..aca4293
--- /dev/null
+++ b/dev-php/PEAR-PEAR_PackageFileManager2/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer type="project">
+ <email>php-bugs@gentoo.org</email>
+ <name>PHP</name>
+</maintainer>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-PEAR_PackageFileManager2/
@ 2016-12-27 16:43 Brian Evans
0 siblings, 0 replies; 4+ messages in thread
From: Brian Evans @ 2016-12-27 16:43 UTC (permalink / raw
To: gentoo-commits
commit: a20c2d2dcaefc197aa317e7402181af1e20a2595
Author: Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 27 16:43:37 2016 +0000
Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Tue Dec 27 16:43:37 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a20c2d2d
dev-php/PEAR-PEAR_PackageFileManager2: Remove unnecessary src_prepare
It is causing warnings on install and doesn't need to be there
Package-Manager: Portage-2.3.3, Repoman-2.3.1
.../PEAR-PEAR_PackageFileManager2-1.0.4.ebuild | 5 -----
1 file changed, 5 deletions(-)
diff --git a/dev-php/PEAR-PEAR_PackageFileManager2/PEAR-PEAR_PackageFileManager2-1.0.4.ebuild b/dev-php/PEAR-PEAR_PackageFileManager2/PEAR-PEAR_PackageFileManager2-1.0.4.ebuild
index 60d1907..fd369bc 100644
--- a/dev-php/PEAR-PEAR_PackageFileManager2/PEAR-PEAR_PackageFileManager2-1.0.4.ebuild
+++ b/dev-php/PEAR-PEAR_PackageFileManager2/PEAR-PEAR_PackageFileManager2-1.0.4.ebuild
@@ -22,11 +22,6 @@ RDEPEND=">=dev-lang/php-5.3:*
S="${WORKDIR}/${MY_P}"
-src_prepare() {
- default_src_prepare
- sed -i -e '/role="doc"/d' -e '/role="test"/d' "${WORKDIR}/package.xml" || die
-}
-
src_install() {
insinto /usr/share/php
doins -r PEAR
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-PEAR_PackageFileManager2/
@ 2017-03-19 14:52 Brian Evans
0 siblings, 0 replies; 4+ messages in thread
From: Brian Evans @ 2017-03-19 14:52 UTC (permalink / raw
To: gentoo-commits
commit: f6e969d4cea7923f4cbcaeb9c0ec5c7dc725a4b9
Author: Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 19 14:44:34 2017 +0000
Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Sun Mar 19 14:44:34 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6e969d4
dev-php/PEAR-PEAR_PackageFileManager2: Revbump to fix WORKDIR wrt bug 613122
Package-Manager: Portage-2.3.5, Repoman-2.3.2
.../PEAR-PEAR_PackageFileManager2-1.0.4-r1.ebuild | 17 +++++++++
.../PEAR-PEAR_PackageFileManager2-1.0.4.ebuild | 40 ----------------------
2 files changed, 17 insertions(+), 40 deletions(-)
diff --git a/dev-php/PEAR-PEAR_PackageFileManager2/PEAR-PEAR_PackageFileManager2-1.0.4-r1.ebuild b/dev-php/PEAR-PEAR_PackageFileManager2/PEAR-PEAR_PackageFileManager2-1.0.4-r1.ebuild
new file mode 100644
index 00000000000..80087437242
--- /dev/null
+++ b/dev-php/PEAR-PEAR_PackageFileManager2/PEAR-PEAR_PackageFileManager2-1.0.4-r1.ebuild
@@ -0,0 +1,17 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit php-pear-r2
+
+DESCRIPTION="Updates an existing package.xml file with a new filelist and changelog"
+LICENSE="PHP-3.01"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="minimal"
+
+RDEPEND=">=dev-lang/php-5.3:*
+ >=dev-php/PEAR-PEAR-1.10.1
+ dev-php/PEAR-PEAR_PackageFileManager_Plugins
+ !minimal? ( >=dev-php/PEAR-PHP_CompatInfo-1.4.0 )"
diff --git a/dev-php/PEAR-PEAR_PackageFileManager2/PEAR-PEAR_PackageFileManager2-1.0.4.ebuild b/dev-php/PEAR-PEAR_PackageFileManager2/PEAR-PEAR_PackageFileManager2-1.0.4.ebuild
deleted file mode 100644
index a37887ab8ed..00000000000
--- a/dev-php/PEAR-PEAR_PackageFileManager2/PEAR-PEAR_PackageFileManager2-1.0.4.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_PN="${PN/PEAR-/}"
-MY_P="${MY_PN}-${PV}"
-
-HOMEPAGE="http://pear.php.net/package/${MY_PN}"
-SRC_URI="http://pear.php.net/get/${MY_P}.tgz"
-DESCRIPTION="Updates an existing package.xml file with a new filelist and changelog"
-LICENSE="PHP-3.01"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="minimal"
-
-RDEPEND=">=dev-lang/php-5.3:*
- >=dev-php/PEAR-PEAR-1.10.1
- dev-php/PEAR-PEAR_PackageFileManager_Plugins
- !minimal? ( >=dev-php/PEAR-PHP_CompatInfo-1.4.0 )"
-
-S="${WORKDIR}/${MY_P}"
-
-src_install() {
- insinto /usr/share/php
- doins -r PEAR
-}
-
-pkg_postinst() {
- # Register the package from the package.xml file
- # Operation is not critical so die is not required
- if [[ -f "${WORKDIR}/package.xml" ]] ; then
- "${EROOT}usr/bin/peardev" install -nrO --force "${WORKDIR}/package.xml" 2> /dev/null
- fi
-}
-
-pkg_postrm() {
- # Uninstall known dependency
- "${EROOT}usr/bin/peardev" uninstall -nrO "pear.php.net/${MY_PN}"
-}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-PEAR_PackageFileManager2/
@ 2018-02-15 19:16 Brian Evans
0 siblings, 0 replies; 4+ messages in thread
From: Brian Evans @ 2018-02-15 19:16 UTC (permalink / raw
To: gentoo-commits
commit: c699741f25218ae133038c40be46df046d377871
Author: Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 15 18:24:24 2018 +0000
Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Thu Feb 15 19:15:55 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c699741f
dev-php/PEAR-PEAR_PackageFileManager2: Drop minimal USE
dev-php/PEAR-PHP_CompatInfo is abanonded on PEAR and not easily replaced
Package-Manager: Portage-2.3.24, Repoman-2.3.6
...0.4-r1.ebuild => PEAR-PEAR_PackageFileManager2-1.0.4-r2.ebuild} | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/dev-php/PEAR-PEAR_PackageFileManager2/PEAR-PEAR_PackageFileManager2-1.0.4-r1.ebuild b/dev-php/PEAR-PEAR_PackageFileManager2/PEAR-PEAR_PackageFileManager2-1.0.4-r2.ebuild
similarity index 65%
rename from dev-php/PEAR-PEAR_PackageFileManager2/PEAR-PEAR_PackageFileManager2-1.0.4-r1.ebuild
rename to dev-php/PEAR-PEAR_PackageFileManager2/PEAR-PEAR_PackageFileManager2-1.0.4-r2.ebuild
index 80087437242..e896e2b1d69 100644
--- a/dev-php/PEAR-PEAR_PackageFileManager2/PEAR-PEAR_PackageFileManager2-1.0.4-r1.ebuild
+++ b/dev-php/PEAR-PEAR_PackageFileManager2/PEAR-PEAR_PackageFileManager2-1.0.4-r2.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
@@ -9,9 +9,8 @@ DESCRIPTION="Updates an existing package.xml file with a new filelist and change
LICENSE="PHP-3.01"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE="minimal"
+IUSE=""
RDEPEND=">=dev-lang/php-5.3:*
>=dev-php/PEAR-PEAR-1.10.1
- dev-php/PEAR-PEAR_PackageFileManager_Plugins
- !minimal? ( >=dev-php/PEAR-PHP_CompatInfo-1.4.0 )"
+ dev-php/PEAR-PEAR_PackageFileManager_Plugins"
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-02-15 19:16 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-27 16:43 [gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-PEAR_PackageFileManager2/ Brian Evans
-- strict thread matches above, loose matches on Subject: below --
2016-12-27 16:43 Brian Evans
2017-03-19 14:52 Brian Evans
2018-02-15 19:16 Brian Evans
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox