summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2021-12-13 20:00:07 +0100
committerConrad Kostecki <conikost@gentoo.org>2021-12-13 22:31:52 +0100
commit44d78a8dcf452e273057e71a57d87f31fb44a8cc (patch)
treeabfdd98e41ed277bb643463140f9d2a4a4f835e7 /dev-perl
parentdev-perl/URI-Fetch: remove unused patch(es) (diff)
downloadgentoo-44d78a8dcf452e273057e71a57d87f31fb44a8cc.tar.gz
gentoo-44d78a8dcf452e273057e71a57d87f31fb44a8cc.tar.bz2
gentoo-44d78a8dcf452e273057e71a57d87f31fb44a8cc.zip
dev-perl/XML-Atom: remove unused patch(es)
Closes: https://github.com/gentoo/gentoo/pull/23291 Package-Manager: Portage-3.0.29, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-perl')
-rw-r--r--dev-perl/XML-Atom/files/XML-Atom-0.42-dotinc.patch27
-rw-r--r--dev-perl/XML-Atom/files/XML-Atom-0.42-testxxe.patch28
2 files changed, 0 insertions, 55 deletions
diff --git a/dev-perl/XML-Atom/files/XML-Atom-0.42-dotinc.patch b/dev-perl/XML-Atom/files/XML-Atom-0.42-dotinc.patch
deleted file mode 100644
index c067fb6e0015..000000000000
--- a/dev-perl/XML-Atom/files/XML-Atom-0.42-dotinc.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From d2c045a8ca0d0ca147b04bc9e7c70b27db8cc4e1 Mon Sep 17 00:00:00 2001
-From: Kent Fredric <kentnl@gentoo.org>
-Date: Mon, 26 Mar 2018 23:28:08 +1300
-Subject: Fix tests failing without '.' in @INC
-
-Bug: https://github.com/miyagawa/xml-atom/issues/12
-Bug: https://github.com/miyagawa/xml-atom/pull/14
----
- t/11-entry.t | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/t/11-entry.t b/t/11-entry.t
-index bbcb107..5955e97 100644
---- a/t/11-entry.t
-+++ b/t/11-entry.t
-@@ -2,7 +2,7 @@
-
- use strict;
-
--use t::TestLib;
-+BEGIN { require './t/TestLib.pm'; t::TestLib->import() }
- use Test::More;
- use XML::Atom;
- use XML::Atom::Entry;
---
-2.16.2
-
diff --git a/dev-perl/XML-Atom/files/XML-Atom-0.42-testxxe.patch b/dev-perl/XML-Atom/files/XML-Atom-0.42-testxxe.patch
deleted file mode 100644
index a61fdb990049..000000000000
--- a/dev-perl/XML-Atom/files/XML-Atom-0.42-testxxe.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 919852dce98ce60abf494edfbe3c57d7a08545e4 Mon Sep 17 00:00:00 2001
-From: Kent Fredric <kentnl@gentoo.org>
-Date: Mon, 26 Mar 2018 23:37:10 +1300
-Subject: Force setting exapnd-external-entities on libxml for this test
-
-Gentoo defaults expand-external-entities to off, which naturally breaks
-this test which explicitly uses external entities.
-
-Bug: https://bugs.gentoo.org/623678
----
- t/31-external-entities-libxml.t | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/t/31-external-entities-libxml.t b/t/31-external-entities-libxml.t
-index 71f6eb9..8c9df11 100644
---- a/t/31-external-entities-libxml.t
-+++ b/t/31-external-entities-libxml.t
-@@ -51,6 +51,7 @@ EOX
- ## custom parser
- {
- my $libxml = XML::LibXML->new;
-+ $libxml->expand_entities(1);
- my $entry = XML::Atom::Entry->new(Stream => \$xml, Parser => $libxml);
- is $entry->title, "Guest Author", "got title";
- my $content = $entry->content->body;
---
-2.16.2
-