summaryrefslogtreecommitdiff
path: root/dev-perl/ExtUtils-CppGuess
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2021-11-03 06:47:15 +0000
committerV3n3RiX <venerix@koprulu.sector>2021-11-03 06:47:15 +0000
commitfc2f1018fc323ef2c6572734a9b130427cba76a6 (patch)
treef834bdc9a67923ce75297c09d00d1e7b90791d26 /dev-perl/ExtUtils-CppGuess
parent162945d2a91899b637bbb9e163b406350de12906 (diff)
gentoo resync : 03.11.2021
Diffstat (limited to 'dev-perl/ExtUtils-CppGuess')
-rw-r--r--dev-perl/ExtUtils-CppGuess/Manifest1
-rw-r--r--dev-perl/ExtUtils-CppGuess/files/ExtUtils-CppGuess-0.110.0-no-dot-inc.patch56
2 files changed, 0 insertions, 57 deletions
diff --git a/dev-perl/ExtUtils-CppGuess/Manifest b/dev-perl/ExtUtils-CppGuess/Manifest
index fd58292c8de3..05347bc8a0ff 100644
--- a/dev-perl/ExtUtils-CppGuess/Manifest
+++ b/dev-perl/ExtUtils-CppGuess/Manifest
@@ -1,4 +1,3 @@
-AUX ExtUtils-CppGuess-0.110.0-no-dot-inc.patch 1311 BLAKE2B b440f31822cff738807914df48aa74fdc3775d5eaaea1dcbde4a94217d4d98b2402b44914f463f733bd37460b07c8b1bb99f4d3d06a951d8e57517cbc4d67e4f SHA512 b75865b0f95137389d86ac2b277ae843d8f65075784df73a2de4408ccb9614809b9055798a3ead088fcb17884b1306f4238f817f13b012ea7a913a26e6b8e191
DIST ExtUtils-CppGuess-0.21.tar.gz 14067 BLAKE2B 35dab476a73c532f2635ebee871dfd4cba593c1e09ed4f9fc18826edb9208208fdcc26a884d3c6ec95db18ceafc83fb8bca1c5c8f6a8caf337795ddde80be6d2 SHA512 e48e4815ac9db4e8bb91de101f1d22aed95c770cf6fa2ea5e38094643fe96bc9fe69b0e5a76ba8aa53a653753f93526edab8b1604d864bb2b3a50223617f84d9
DIST ExtUtils-CppGuess-0.23.tar.gz 15311 BLAKE2B 6e0db2d1c419893cc68050a047e957d42b57780fbf0d26ec05831990e3af45decb4693b68ce426ac9eaa578077e9c9c951a01adea197386c9be70faeb9d22977 SHA512 f984f653cffd6288851af3e353532f369d229a8b903f8e0ba7c1a5e9d8bd1b63c3415403b45bf1e8c32dc5c330ed26d1351e37929bd22af271ac295adce737f9
EBUILD ExtUtils-CppGuess-0.210.0.ebuild 1001 BLAKE2B 85de3afe94ece1e558c02b75ff35be17639a17a67ec82351697b4ab65f8126731ae1599a7e03493c809fcf458c6107278653caf15ef1a38b2b90cacb2993dfc5 SHA512 2659f8f9c70c080fc9cb317be133320ade1bcbfeab26acb937aba4b63a52c4ec9fed8356559fa4445857871d76e1df1c6161dd7c08c14f0f66aecd94a286a346
diff --git a/dev-perl/ExtUtils-CppGuess/files/ExtUtils-CppGuess-0.110.0-no-dot-inc.patch b/dev-perl/ExtUtils-CppGuess/files/ExtUtils-CppGuess-0.110.0-no-dot-inc.patch
deleted file mode 100644
index 0bca84c1aad7..000000000000
--- a/dev-perl/ExtUtils-CppGuess/files/ExtUtils-CppGuess-0.110.0-no-dot-inc.patch
+++ /dev/null
@@ -1,56 +0,0 @@
-From 2c89bb54f233776fb8760a264286f9e0932f62c6 Mon Sep 17 00:00:00 2001
-From: Kent Fredric <kentnl@gentoo.org>
-Date: Sat, 21 Oct 2017 13:15:43 +1300
-Subject: Fix tests on 5.26 without '.' in @INC
-
-Bug: https://rt.cpan.org/Ticket/Display.html?id=120848
-Bug: https://bugs.gentoo.org/615842
-Bug: https://github.com/tsee/extutils-cppguess/pull/15
----
- t/010_module_build.t | 3 ++-
- t/011_makemaker.t | 3 ++-
- t/lib/TestUtils.pm | 3 ++-
- 3 files changed, 6 insertions(+), 3 deletions(-)
-
-diff --git a/t/010_module_build.t b/t/010_module_build.t
-index 93b5f44..ef004d3 100644
---- a/t/010_module_build.t
-+++ b/t/010_module_build.t
-@@ -2,7 +2,8 @@
-
- use strict;
- use Test::More tests => 1;
--use t::lib::TestUtils;
-+use lib 't/lib';
-+use TestUtils;
-
- my $separator = ( '=' x 40 . "\n" );
-
-diff --git a/t/011_makemaker.t b/t/011_makemaker.t
-index 237636a..5986395 100644
---- a/t/011_makemaker.t
-+++ b/t/011_makemaker.t
-@@ -2,7 +2,8 @@
-
- use strict;
- use Test::More tests => 1;
--use t::lib::TestUtils;
-+use lib 't/lib';
-+use TestUtils;
-
- my $separator = ( '=' x 40 . "\n" );
-
-diff --git a/t/lib/TestUtils.pm b/t/lib/TestUtils.pm
-index c71572b..b3480c4 100644
---- a/t/lib/TestUtils.pm
-+++ b/t/lib/TestUtils.pm
-@@ -1,4 +1,5 @@
--package t::lib::TestUtils;
-+package # hide
-+ TestUtils;
-
- use strict;
-
---
-2.14.2
-