* [gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Template-Timer/
@ 2014-09-05 23:14 Kent Fredric
0 siblings, 0 replies; 2+ messages in thread
From: Kent Fredric @ 2014-09-05 23:14 UTC (permalink / raw
To: gentoo-commits
commit: 9c5a65b5a8760b855f3730f8f09f98ef13ce1fdd
Author: Kent Fredric <kentfredric <AT> gmail <DOT> com>
AuthorDate: Fri Sep 5 21:53:42 2014 +0000
Commit: Kent Fredric <kentfredric <AT> gmail <DOT> com>
CommitDate: Fri Sep 5 21:53:42 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=9c5a65b5
[cleanup] dev-perl/Template-Timer Remove old EAPIs
Package-Manager: portage-2.2.10
---
dev-perl/Template-Timer/ChangeLog | 6 +++++-
dev-perl/Template-Timer/Template-Timer-0.04.ebuild | 15 ---------------
2 files changed, 5 insertions(+), 16 deletions(-)
diff --git a/dev-perl/Template-Timer/ChangeLog b/dev-perl/Template-Timer/ChangeLog
index de8e306..2770d42 100644
--- a/dev-perl/Template-Timer/ChangeLog
+++ b/dev-perl/Template-Timer/ChangeLog
@@ -1,7 +1,11 @@
# ChangeLog for dev-perl/Template-Timer
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 05 Sep 2014; Kent Fredric <kentfredric@gmail.com>
+ -Template-Timer-0.04.ebuild:
+ Remove old EAPIs
+
21 Mar 2009; Torsten Veller <tove@gentoo.org>
+dev-perl/Template-Timer/Template-Timer-1.00.ebuild:
Version bump
diff --git a/dev-perl/Template-Timer/Template-Timer-0.04.ebuild b/dev-perl/Template-Timer/Template-Timer-0.04.ebuild
deleted file mode 100644
index 248eb9b..0000000
--- a/dev-perl/Template-Timer/Template-Timer-0.04.ebuild
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-MODULE_AUTHOR=PETDANCE
-inherit perl-module
-
-DESCRIPTION="Rudimentary profiling for Template Toolkit"
-LICENSE="|| ( Artistic GPL-2 )"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-IUSE=""
-DEPEND=""
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Template-Timer/
@ 2014-09-05 23:14 Kent Fredric
0 siblings, 0 replies; 2+ messages in thread
From: Kent Fredric @ 2014-09-05 23:14 UTC (permalink / raw
To: gentoo-commits
commit: a3d8d0236a2db32de3f4943ad8ef1a3e3979fda4
Author: Kent Fredric <kentfredric <AT> gmail <DOT> com>
AuthorDate: Fri Sep 5 21:56:53 2014 +0000
Commit: Kent Fredric <kentfredric <AT> gmail <DOT> com>
CommitDate: Fri Sep 5 21:56:53 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=a3d8d023
[fixup] dev-perl/Template-Timer EAPI5, Normalise, fix deps and tess
Package-Manager: portage-2.2.10
---
dev-perl/Template-Timer/ChangeLog | 6 ++++++
...te-Timer-1.00.ebuild => Template-Timer-1.0.0.ebuild} | 17 +++++++++++------
2 files changed, 17 insertions(+), 6 deletions(-)
diff --git a/dev-perl/Template-Timer/ChangeLog b/dev-perl/Template-Timer/ChangeLog
index 2770d42..6ff2b1d 100644
--- a/dev-perl/Template-Timer/ChangeLog
+++ b/dev-perl/Template-Timer/ChangeLog
@@ -2,6 +2,12 @@
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*Template-Timer-1.0.0 (05 Sep 2014)
+
+ 05 Sep 2014; Kent Fredric <kentfredric@gmail.com>
+ -Template-Timer-1.00.ebuild, +Template-Timer-1.0.0.ebuild:
+ EAPI5, Normalise, fix deps and tess
+
05 Sep 2014; Kent Fredric <kentfredric@gmail.com>
-Template-Timer-0.04.ebuild:
Remove old EAPIs
diff --git a/dev-perl/Template-Timer/Template-Timer-1.00.ebuild b/dev-perl/Template-Timer/Template-Timer-1.0.0.ebuild
similarity index 64%
rename from dev-perl/Template-Timer/Template-Timer-1.00.ebuild
rename to dev-perl/Template-Timer/Template-Timer-1.0.0.ebuild
index 337ddcb..c69b85a 100644
--- a/dev-perl/Template-Timer/Template-Timer-1.00.ebuild
+++ b/dev-perl/Template-Timer/Template-Timer-1.0.0.ebuild
@@ -1,10 +1,11 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-EAPI=2
+EAPI=5
MODULE_AUTHOR=PETDANCE
+MODULE_VERSION=1.00
inherit perl-module
DESCRIPTION="Rudimentary profiling for Template Toolkit"
@@ -13,10 +14,14 @@ LICENSE="|| ( Artistic-2 GPL-3 )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
-
+# Template -> Template-Toolkit
RDEPEND="dev-perl/Template-Toolkit
virtual/perl-Time-HiRes"
-DEPEND="test? ( ${RDEPEND}
- dev-perl/Test-Pod )"
-
+DEPEND="test? (
+ ${RDEPEND}
+ virtual/perl-Test-Simple
+)"
+PERL_RM_FILES=(
+ t/pod.t
+)
SRC_TEST=do
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-09-05 23:14 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-05 23:14 [gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Template-Timer/ Kent Fredric
-- strict thread matches above, loose matches on Subject: below --
2014-09-05 23:14 Kent Fredric
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox