summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Fredric <kentnl@gentoo.org>2020-04-13 01:51:55 +1200
committerKent Fredric <kentnl@gentoo.org>2020-04-14 19:55:26 +1200
commit43bddd7a635a90c5a3c03e0fd8082361759d5264 (patch)
tree0bd5a35b33ffcc8080a60155766929f02821ceae /dev-perl/Devel-NYTProf
parentdev-perl/Data-Validate-Domain: Remove old 0.110.0 (diff)
downloadgentoo-43bddd7a635a90c5a3c03e0fd8082361759d5264.tar.gz
gentoo-43bddd7a635a90c5a3c03e0fd8082361759d5264.tar.bz2
gentoo-43bddd7a635a90c5a3c03e0fd8082361759d5264.zip
dev-perl/Devel-NYTProf: Remove old 6.40.0
Package-Manager: Portage-2.3.97, Repoman-2.3.22 Signed-off-by: Kent Fredric <kentnl@gentoo.org>
Diffstat (limited to 'dev-perl/Devel-NYTProf')
-rw-r--r--dev-perl/Devel-NYTProf/Devel-NYTProf-6.40.0.ebuild38
-rw-r--r--dev-perl/Devel-NYTProf/Manifest1
-rw-r--r--dev-perl/Devel-NYTProf/files/Devel-NYTProf-6.40.0-perl526.patch41
3 files changed, 0 insertions, 80 deletions
diff --git a/dev-perl/Devel-NYTProf/Devel-NYTProf-6.40.0.ebuild b/dev-perl/Devel-NYTProf/Devel-NYTProf-6.40.0.ebuild
deleted file mode 100644
index 955ebeda2c39..000000000000
--- a/dev-perl/Devel-NYTProf/Devel-NYTProf-6.40.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=TIMB
-DIST_VERSION=6.04
-DIST_EXAMPLES=("demo/*")
-inherit perl-module
-
-DESCRIPTION="Powerful feature-rich perl source code profiler"
-
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- >=dev-perl/File-Which-1.90.0
- virtual/perl-Getopt-Long
- dev-perl/JSON-MaybeXS
- virtual/perl-Scalar-List-Utils
- virtual/perl-XSLoader
- sys-libs/zlib
-"
-DEPEND="${RDEPEND}
- virtual/perl-ExtUtils-MakeMaker
- test? (
- >=virtual/perl-Test-Simple-0.840.0
- >=dev-perl/Test-Differences-0.60.0
- )
-"
-PATCHES=( "${FILESDIR}/${P}-perl526.patch" )
-src_test() {
- perl_rm_files t/90-pod.t t/91-pod_coverage.t t/92-file_port.t \
- t/71-moose.t t/72-autodie.t t/68-hashline.t
- perl-module_src_test
-}
diff --git a/dev-perl/Devel-NYTProf/Manifest b/dev-perl/Devel-NYTProf/Manifest
index 4bc9acbe06c1..4e47b58a0657 100644
--- a/dev-perl/Devel-NYTProf/Manifest
+++ b/dev-perl/Devel-NYTProf/Manifest
@@ -1,2 +1 @@
-DIST Devel-NYTProf-6.04.tar.gz 461716 BLAKE2B 63bc0e46625eeff091deb8339102585997f14c68e453481ebdf546ad5c9a44491bc874967f7cb17c26d1935dc7b1ac18ea84ee1ebe9e8aef0806478e9e7b8335 SHA512 67b5013f4b3e54db743964f91fd8113fbe672be81026aae3375e9bb5376205d735c91ddbde05784a7df235a8e43ef3db2713e396c13e45726ca594e1e76d051c
DIST Devel-NYTProf-6.06.tar.gz 468188 BLAKE2B bc236838873d1c85263f8e38d499437abf66e92d25ff58c3fc3f522e40c60b469e4b9e9d7ab63229cea84f8e86af7de6873bf76ff06527f72195ff3462344299 SHA512 e1fdab3208646ff9283eb606b856f0c25025479b55eddecadfdb7f9b2a9db144c003713b8abf333d03fb8ba420b7f3fbc885de360cd815d72e73ae3bffc27426
diff --git a/dev-perl/Devel-NYTProf/files/Devel-NYTProf-6.40.0-perl526.patch b/dev-perl/Devel-NYTProf/files/Devel-NYTProf-6.40.0-perl526.patch
deleted file mode 100644
index cd81f120dddb..000000000000
--- a/dev-perl/Devel-NYTProf/files/Devel-NYTProf-6.40.0-perl526.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From 461055d041e0e08f5fe851461db42ea7121fa39f Mon Sep 17 00:00:00 2001
-From: Kent Fredric <kentnl@gentoo.org>
-Date: Sun, 8 Oct 2017 07:44:14 +1300
-Subject: Fix test failures on Perl 5.26 w/ PERL_USE_UNSAFE_INC=0
-
-Perl 5.26+ removes '.' from the default @INC, and this breaks the
-mechanism internally where @INC-prefixes are stripped from fid_fileinfo
-names ( in ::FileInfo.pm ).
-
-This breaks tests due to the sample 'rdt' files expecting single-token
-comparators relative to 't/', instead getting a fully qualified path in
-the "got" side of the test.
-
-This remedies this by ensuring a fully-qualified path to "t/" is in
-@INC for the aforementioned prefix-stripper to pick-up on.
-
-Bug: https://github.com/timbunce/devel-nytprof/issues/108
-Bug: https://bugs.gentoo.org/615734
-Bug: https://github.com/timbunce/devel-nytprof/pull/112
----
- t/lib/NYTProfTest.pm | 4 ++++
- 1 file changed, 4 insertions(+)
-
-diff --git a/t/lib/NYTProfTest.pm b/t/lib/NYTProfTest.pm
-index 9c29627..7fb5381 100644
---- a/t/lib/NYTProfTest.pm
-+++ b/t/lib/NYTProfTest.pm
-@@ -69,6 +69,10 @@ my $text_extn_info = {
- pf => { order => 50, tests => 2, },
- };
-
-+# having t/* in @INC is necessary for prefix-stripping
-+# to reduce test-file names down to the single tokens
-+# that are used in the comparison-output files.
-+unshift @INC, File::Spec->rel2abs('./t') if -d 't';
- chdir('t') if -d 't';
-
- if (-d '../blib') {
---
-2.14.1
-