* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Benchmark-Timer/
@ 2015-12-28 17:00 Andreas Hüttel
0 siblings, 0 replies; 5+ messages in thread
From: Andreas Hüttel @ 2015-12-28 17:00 UTC (permalink / raw
To: gentoo-commits
commit: 5df210425a2dd810611f18a276025c82d1dea52d
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 28 16:56:05 2015 +0000
Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Mon Dec 28 17:00:51 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5df21042
dev-perl/Benchmark-Timer: Remove old
Package-Manager: portage-2.2.26
.../Benchmark-Timer-0.710.600.ebuild | 28 ----------------------
dev-perl/Benchmark-Timer/Manifest | 1 -
2 files changed, 29 deletions(-)
diff --git a/dev-perl/Benchmark-Timer/Benchmark-Timer-0.710.600.ebuild b/dev-perl/Benchmark-Timer/Benchmark-Timer-0.710.600.ebuild
deleted file mode 100644
index bdc5ea8..0000000
--- a/dev-perl/Benchmark-Timer/Benchmark-Timer-0.710.600.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=DCOPPIT
-MODULE_VERSION=0.7106
-inherit perl-module
-
-DESCRIPTION="Perl code benchmarking tool"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="
- dev-perl/Statistics-TTest
- virtual/perl-Time-HiRes
-"
-
-DEPEND="${RDEPEND}
- >=virtual/perl-ExtUtils-MakeMaker-6.360.0
- test? ( virtual/perl-Test-Simple )
-"
-
-SRC_TEST=do
diff --git a/dev-perl/Benchmark-Timer/Manifest b/dev-perl/Benchmark-Timer/Manifest
index fb61fbc..3b4117d 100644
--- a/dev-perl/Benchmark-Timer/Manifest
+++ b/dev-perl/Benchmark-Timer/Manifest
@@ -1,2 +1 @@
-DIST Benchmark-Timer-0.7106.tar.gz 45648 SHA256 f4a2d6103197418b488ff85ca2272dc6a7f4b5f642921d7cebab48311d871cea SHA512 89fbf2695886a08efdbedd5cf85fe65dcf61ef422a747fe947950404cc0a7e7bdb7362b69253ee787166803eb56842966362d29ecb6e7001c32cebbaf28e5ee8 WHIRLPOOL c49ecf13566f2ebade1c8521d43db44dc9e69d19f78c1a1cb9be0f4ca05a6c40a20433200c80dd2ede41f7c5766b5a03ac2cdc3ba99c7ec5103285e1108b127d
DIST Benchmark-Timer-0.7107.tar.gz 45734 SHA256 64f70fabc896236520bfbf43c2683fdcb0f2c637d77333aed0fd926b92226b60 SHA512 6faa50a90173a075a4bb398212e2db77348f59a47ff483db9e1885dc7dce9636557684574a21f228c53f0c29a468e663706843840b2e59abbaaed1222f400e05 WHIRLPOOL 8f09e9687a42f82b4bccd47aca76ab10d8d406c27be4fb5224e188a55c24235067702e4e19a97677982771b46aa101abf5fe64779148f97c4afca34cb8f0552f
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Benchmark-Timer/
@ 2017-06-15 2:06 Kent Fredric
0 siblings, 0 replies; 5+ messages in thread
From: Kent Fredric @ 2017-06-15 2:06 UTC (permalink / raw
To: gentoo-commits
commit: 6ddb58cdf060e36ab43f574ee15c968dd7267145
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 15 01:59:48 2017 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Thu Jun 15 02:06:23 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ddb58cd
dev-perl/Benchmark-Timer: Fix for '.' in @INC re bug #614958
Module::Install fix
for Perl 5.26
Bug: https://bugs.gentoo.org/614958
Package-Manager: Portage-2.3.6, Repoman-2.3.2
dev-perl/Benchmark-Timer/Benchmark-Timer-0.710.700.ebuild | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/dev-perl/Benchmark-Timer/Benchmark-Timer-0.710.700.ebuild b/dev-perl/Benchmark-Timer/Benchmark-Timer-0.710.700.ebuild
index bf3833fb0b5..23940a43339 100644
--- a/dev-perl/Benchmark-Timer/Benchmark-Timer-0.710.700.ebuild
+++ b/dev-perl/Benchmark-Timer/Benchmark-Timer-0.710.700.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -25,3 +25,9 @@ DEPEND="${RDEPEND}
"
SRC_TEST=do
+
+src_prepare() {
+ sed -i -e 's/use inc::Module::Install;/use lib q[.]; use inc::Module::Install;/' Makefile.PL ||
+ die "Can't patch Makefile.PL for 5.26 dot-in-inc"
+ perl-module_src_prepare
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Benchmark-Timer/
@ 2017-10-09 6:53 Kent Fredric
0 siblings, 0 replies; 5+ messages in thread
From: Kent Fredric @ 2017-10-09 6:53 UTC (permalink / raw
To: gentoo-commits
commit: a953099b852d3e3224f005c5593b823f63da069d
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 9 06:52:47 2017 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Mon Oct 9 06:53:15 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a953099b
dev-perl/Benchmark-Timer: Fix missing build dep on URI bug #633818
Closes: https://bugs.gentoo.org/633818
Package-Manager: Portage-2.3.8, Repoman-2.3.3
dev-perl/Benchmark-Timer/Benchmark-Timer-0.710.700.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev-perl/Benchmark-Timer/Benchmark-Timer-0.710.700.ebuild b/dev-perl/Benchmark-Timer/Benchmark-Timer-0.710.700.ebuild
index 23940a43339..041adc75442 100644
--- a/dev-perl/Benchmark-Timer/Benchmark-Timer-0.710.700.ebuild
+++ b/dev-perl/Benchmark-Timer/Benchmark-Timer-0.710.700.ebuild
@@ -21,6 +21,7 @@ RDEPEND="
DEPEND="${RDEPEND}
>=virtual/perl-ExtUtils-MakeMaker-6.360.0
+ dev-perl/URI
test? ( virtual/perl-Test-Simple )
"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Benchmark-Timer/
@ 2020-04-11 15:53 Kent Fredric
0 siblings, 0 replies; 5+ messages in thread
From: Kent Fredric @ 2020-04-11 15:53 UTC (permalink / raw
To: gentoo-commits
commit: 6ac7ee0529b455938e754fa221fd6aea94a1db9b
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 11 14:40:38 2020 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Sat Apr 11 15:53:33 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ac7ee05
dev-perl/Benchmark-Timer: Remove old 0.710.700
Package-Manager: Portage-2.3.97, Repoman-2.3.22
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
.../Benchmark-Timer-0.710.700.ebuild | 35 ----------------------
dev-perl/Benchmark-Timer/Manifest | 1 -
2 files changed, 36 deletions(-)
diff --git a/dev-perl/Benchmark-Timer/Benchmark-Timer-0.710.700.ebuild b/dev-perl/Benchmark-Timer/Benchmark-Timer-0.710.700.ebuild
deleted file mode 100644
index d602e03eca2..00000000000
--- a/dev-perl/Benchmark-Timer/Benchmark-Timer-0.710.700.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=DCOPPIT
-MODULE_VERSION=0.7107
-inherit perl-module
-
-DESCRIPTION="Perl code benchmarking tool"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-perl/Statistics-TTest
- virtual/perl-Time-HiRes
-"
-
-DEPEND="${RDEPEND}
- >=virtual/perl-ExtUtils-MakeMaker-6.360.0
- dev-perl/URI
- test? ( virtual/perl-Test-Simple )
-"
-
-SRC_TEST=do
-
-src_prepare() {
- sed -i -e 's/use inc::Module::Install;/use lib q[.]; use inc::Module::Install;/' Makefile.PL ||
- die "Can't patch Makefile.PL for 5.26 dot-in-inc"
- perl-module_src_prepare
-}
diff --git a/dev-perl/Benchmark-Timer/Manifest b/dev-perl/Benchmark-Timer/Manifest
index acae7f2d733..c4b08caec23 100644
--- a/dev-perl/Benchmark-Timer/Manifest
+++ b/dev-perl/Benchmark-Timer/Manifest
@@ -1,2 +1 @@
-DIST Benchmark-Timer-0.7107.tar.gz 45734 BLAKE2B c0ec4842358043c7138cb65f47a75338bfe8da49d04bf7e39465abc3f96a54c9bddd47c331f6878827fe5310b50f16fddcfb63abc5ca206fad545dbfd3a2b692 SHA512 6faa50a90173a075a4bb398212e2db77348f59a47ff483db9e1885dc7dce9636557684574a21f228c53f0c29a468e663706843840b2e59abbaaed1222f400e05
DIST Benchmark-Timer-0.7112.tar.gz 47756 BLAKE2B 524992cb051a712c90ee6f32e9cdc6391608ea00fb41b3bd1e45d1d5f75f52d7a4ae0c79fefcf5967d67b2317f147f773edebfdb73209acd5c721c771d1f531d SHA512 6ae3ef700a777debb06cb2bbb19c34170e9bd88917c6441a44149f3b8094a5ed1690d727e3fc4e63b48e1bbcab85dd917c6f659ebfad8a8304134ea04e9262eb
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Benchmark-Timer/
@ 2021-10-09 9:11 Andreas K. Hüttel
0 siblings, 0 replies; 5+ messages in thread
From: Andreas K. Hüttel @ 2021-10-09 9:11 UTC (permalink / raw
To: gentoo-commits
commit: ef33631972e2eafdf086d3ffa5c7cb170a274b6c
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 9 09:04:08 2021 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sat Oct 9 09:11:26 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef336319
dev-perl/Benchmark-Timer: EAPI=8 bump
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
....ebuild => Benchmark-Timer-0.711.200-r1.ebuild} | 26 +++++++++++-----------
1 file changed, 13 insertions(+), 13 deletions(-)
diff --git a/dev-perl/Benchmark-Timer/Benchmark-Timer-0.711.200.ebuild b/dev-perl/Benchmark-Timer/Benchmark-Timer-0.711.200-r1.ebuild
similarity index 89%
rename from dev-perl/Benchmark-Timer/Benchmark-Timer-0.711.200.ebuild
rename to dev-perl/Benchmark-Timer/Benchmark-Timer-0.711.200-r1.ebuild
index 4ea5165248f..cb27e10d2f4 100644
--- a/dev-perl/Benchmark-Timer/Benchmark-Timer-0.711.200.ebuild
+++ b/dev-perl/Benchmark-Timer/Benchmark-Timer-0.711.200-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=8
DIST_AUTHOR=DCOPPIT
DIST_VERSION=0.7112
@@ -13,13 +13,22 @@ DESCRIPTION="Perl code benchmarking tool"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
+
+RDEPEND="
+ dev-perl/Statistics-TTest
+ virtual/perl-Time-HiRes
+"
+
+BDEPEND="${RDEPEND}
+ >=virtual/perl-ExtUtils-MakeMaker-6.360.0
+ test? ( virtual/perl-Test-Simple )
+"
PATCHES=(
"${FILESDIR}/${PN}-0.7112-noauthortests.patch"
"${FILESDIR}/${PN}-0.7112-relocateexample.patch"
)
+
PERL_RM_FILES=(
"inc/Module/Install/AutomatedTester.pm"
"inc/Module/Install/Bugtracker.pm"
@@ -29,12 +38,3 @@ PERL_RM_FILES=(
"inc/URI/Escape.pm"
"private-lib/Module/Install/PRIVATE/Enable_Verbose_CPAN_Testing.pm"
)
-RDEPEND="
- dev-perl/Statistics-TTest
- virtual/perl-Time-HiRes
-"
-
-DEPEND="${RDEPEND}
- >=virtual/perl-ExtUtils-MakeMaker-6.360.0
- test? ( virtual/perl-Test-Simple )
-"
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-10-09 9:11 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-09 6:53 [gentoo-commits] repo/gentoo:master commit in: dev-perl/Benchmark-Timer/ Kent Fredric
-- strict thread matches above, loose matches on Subject: below --
2021-10-09 9:11 Andreas K. Hüttel
2020-04-11 15:53 Kent Fredric
2017-06-15 2:06 Kent Fredric
2015-12-28 17:00 Andreas Hüttel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox