* [gentoo-commits] repo/proj/prefix:master commit in: app-portage/genlop/
@ 2016-02-04 14:56 Fabian Groffen
0 siblings, 0 replies; 2+ messages in thread
From: Fabian Groffen @ 2016-02-04 14:56 UTC (permalink / raw
To: gentoo-commits
commit: 80161e26925fc396bd59d56e9fb7837c27975151
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 4 14:56:24 2016 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Thu Feb 4 14:56:24 2016 +0000
URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=80161e26
app-portage/genlop: sync
Package-Manager: portage-2.2.20-prefix
app-portage/genlop/Manifest | 2 +-
app-portage/genlop/genlop-0.30.10-r1.ebuild | 41 +++++++++++++++++++++++++++++
app-portage/genlop/genlop-0.30.8-r1.ebuild | 39 ---------------------------
app-portage/genlop/genlop-0.30.8-r2.ebuild | 41 -----------------------------
4 files changed, 42 insertions(+), 81 deletions(-)
diff --git a/app-portage/genlop/Manifest b/app-portage/genlop/Manifest
index c70c060..a37720a 100644
--- a/app-portage/genlop/Manifest
+++ b/app-portage/genlop/Manifest
@@ -1 +1 @@
-DIST genlop-0.30.8.tar.gz 21315 SHA256 944cdfcb9d633dacc4a196039d509e6dc9a22e4ec1715255733a75ca6a36a9e4 SHA512 71a5c0bb7767f2b078214c0bce87cbc4d3bf40e751f4ac023fb0c0a0817c5f8c75fffd06a8c27769a36e9e16c4ebef42b4770ee938c8fe3988446ebc869e8091 WHIRLPOOL b39c8761176fe51f6c339ca9154a0d8fc078897bea6cfc68b55c03db40be692855346ca0740525a5e5e7a6d3c2cf952fea95f3404af0a459f32a1a2a22c0633e
+DIST genlop-0.30.10.tar.gz 20872 SHA256 690ef95d2ce715f2a1a3a2d380d74958cfdd3a28033625aec6e8d694f91dc4de SHA512 eab59d7dc012fbbdbe7de509deba66e6c7d0c5a37064e79c25a37c64becc259ee5206194615b60b3363022fa59e458356547edca307ceb4e19eeeaf4b146c593 WHIRLPOOL 378e2837929ae21417d3be0b840fb9635248b94cdefef9459455ce80236117c79a9a5f406d707d400e7887f38dbcd5004edd24caac6ebb207ab2f693d4f74bfa
diff --git a/app-portage/genlop/genlop-0.30.10-r1.ebuild b/app-portage/genlop/genlop-0.30.10-r1.ebuild
new file mode 100644
index 0000000..6667706
--- /dev/null
+++ b/app-portage/genlop/genlop-0.30.10-r1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit base bash-completion-r1
+
+DESCRIPTION="A nice emerge.log parser"
+HOMEPAGE="https://www.gentoo.org/proj/en/perl"
+SRC_URI="https://dev.gentoo.org/~dilfridge/distfiles/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~ppc-aix ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND="dev-lang/perl
+ dev-perl/DateManip
+ dev-perl/libwww-perl"
+RDEPEND="${DEPEND}"
+
+# Populate the patches array for any patches for -rX releases
+PATCHES=( "${FILESDIR}"/${P}-sync.patch )
+
+src_prepare() {
+ default
+
+ # ugly, but I'm not a perl guru
+ [[ ${CHOST} == *-solaris* ]] && \
+ sed -i -e 's/ps ax -o pid,args/ps -ef -o pid,args/' genlop
+ [[ ${CHOST} == *-darwin* ]] && \
+ sed -i -e 's/ps ax -o pid,args/ps ax -o pid,command/' genlop
+}
+
+src_install() {
+ dobin genlop
+ dodoc README Changelog
+ doman genlop.1
+ newbashcomp genlop.bash-completion genlop
+}
diff --git a/app-portage/genlop/genlop-0.30.8-r1.ebuild b/app-portage/genlop/genlop-0.30.8-r1.ebuild
deleted file mode 100644
index 8ea22e3..0000000
--- a/app-portage/genlop/genlop-0.30.8-r1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/genlop/genlop-0.30.8-r1.ebuild,v 1.10 2010/10/19 11:47:35 leio Exp $
-
-inherit eutils bash-completion prefix
-
-DESCRIPTION="A nice emerge.log parser"
-HOMEPAGE="http://www.gentoo.org/proj/en/perl"
-SRC_URI="mirror://gentoo//${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~ppc-aix ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
-IUSE=""
-
-DEPEND=">=dev-lang/perl-5.8.0-r12
- >=dev-perl/DateManip-5.40
- dev-perl/libwww-perl"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- epatch "${FILESDIR}/${P}-version.patch"
- epatch "${FILESDIR}"/${PN}-0.30.7-prefix.patch
- eprefixify genlop
- # ugly, but I'm not a perl guru
- [[ ${CHOST} == *-solaris* ]] && \
- sed -i -e 's/ps ax -o pid,args/ps -ef -o pid,args/' genlop
- [[ ${CHOST} == *-darwin* ]] && \
- sed -i -e 's/ps ax -o pid,args/ps ax -o pid,command/' genlop
-}
-
-src_install() {
- dobin genlop || die "failed to install genlop (via dobin)"
- dodoc README Changelog
- doman genlop.1
- dobashcompletion genlop.bash-completion genlop
-}
diff --git a/app-portage/genlop/genlop-0.30.8-r2.ebuild b/app-portage/genlop/genlop-0.30.8-r2.ebuild
deleted file mode 100644
index af8137f..0000000
--- a/app-portage/genlop/genlop-0.30.8-r2.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/genlop/genlop-0.30.8-r2.ebuild,v 1.9 2012/07/25 05:08:08 ryao Exp $
-
-inherit eutils bash-completion prefix
-
-DESCRIPTION="A nice emerge.log parser"
-HOMEPAGE="http://www.gentoo.org/proj/en/perl"
-SRC_URI="mirror://gentoo//${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~ppc-aix ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
-IUSE=""
-
-DEPEND=">=dev-lang/perl-5.8.0-r12
- >=dev-perl/DateManip-5.40
- dev-perl/libwww-perl"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- epatch "${FILESDIR}/${P}-version.patch"
- epatch "${FILESDIR}/${P}-compiling-category.patch"
-
- epatch "${FILESDIR}"/${PN}-0.30.7-prefix.patch
- eprefixify genlop
- # ugly, but I'm not a perl guru
- [[ ${CHOST} == *-solaris* ]] && \
- sed -i -e 's/ps ax -o pid,args/ps -ef -o pid,args/' genlop
- [[ ${CHOST} == *-darwin* ]] && \
- sed -i -e 's/ps ax -o pid,args/ps ax -o pid,command/' genlop
-}
-
-src_install() {
- dobin genlop || die "failed to install genlop (via dobin)"
- dodoc README Changelog
- doman genlop.1
- dobashcompletion genlop.bash-completion genlop
-}
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/proj/prefix:master commit in: app-portage/genlop/
@ 2016-07-12 1:26 Benda XU
0 siblings, 0 replies; 2+ messages in thread
From: Benda XU @ 2016-07-12 1:26 UTC (permalink / raw
To: gentoo-commits
commit: 51ce5d11cd23d39776a69fa7d9ad16ff503f65f6
Author: Benda Xu <heroxbd <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 12 01:24:59 2016 +0000
Commit: Benda XU <heroxbd <AT> gentoo <DOT> org>
CommitDate: Tue Jul 12 01:26:58 2016 +0000
URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=51ce5d11
app-portage/genlop: new ebuild name dev-perl/Date-Manip.
reported by kurly.
app-portage/genlop/genlop-0.30.10-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-portage/genlop/genlop-0.30.10-r1.ebuild b/app-portage/genlop/genlop-0.30.10-r1.ebuild
index 6667706..36d5f3e 100644
--- a/app-portage/genlop/genlop-0.30.10-r1.ebuild
+++ b/app-portage/genlop/genlop-0.30.10-r1.ebuild
@@ -16,7 +16,7 @@ KEYWORDS="~ppc-aix ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x
IUSE=""
DEPEND="dev-lang/perl
- dev-perl/DateManip
+ dev-perl/Date-Manip
dev-perl/libwww-perl"
RDEPEND="${DEPEND}"
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-07-12 1:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-12 1:26 [gentoo-commits] repo/proj/prefix:master commit in: app-portage/genlop/ Benda XU
-- strict thread matches above, loose matches on Subject: below --
2016-02-04 14:56 Fabian Groffen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox