summaryrefslogtreecommitdiff
path: root/dev-perl/XML-Simple/files/XML-Simple-2.25-saxtests.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-perl/XML-Simple/files/XML-Simple-2.25-saxtests.patch
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-perl/XML-Simple/files/XML-Simple-2.25-saxtests.patch')
-rw-r--r--dev-perl/XML-Simple/files/XML-Simple-2.25-saxtests.patch45
1 files changed, 0 insertions, 45 deletions
diff --git a/dev-perl/XML-Simple/files/XML-Simple-2.25-saxtests.patch b/dev-perl/XML-Simple/files/XML-Simple-2.25-saxtests.patch
deleted file mode 100644
index 58739b7e4902..000000000000
--- a/dev-perl/XML-Simple/files/XML-Simple-2.25-saxtests.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-From 83774c87a0cc98379bc166fc0f6d028e68063a53 Mon Sep 17 00:00:00 2001
-From: Kent Fredric <kentnl@gentoo.org>
-Date: Tue, 27 Mar 2018 20:11:48 +1300
-Subject: Force XML::SAX::PurePerl for XMLin/XMLout tests
-
-As for some reason, accidentally getting XML::LibXML::SAX
-results in this test failing with encoding problems.
-
-Bug: https://bugs.gentoo.org/625538
----
- t/1_XMLin.t | 3 +++
- t/2_XMLout.t | 2 ++
- 2 files changed, 5 insertions(+)
-
-diff --git a/t/1_XMLin.t b/t/1_XMLin.t
-index 84935cd..bd5cf71 100644
---- a/t/1_XMLin.t
-+++ b/t/1_XMLin.t
-@@ -6,6 +6,9 @@ use IO::File;
- use File::Spec;
-
- use XML::Simple;
-+use XML::SAX;
-+
-+$XML::SAX::ParserPackage = "XML::SAX::PurePerl";
-
- # Initialise filenames and check they're there
-
-diff --git a/t/2_XMLout.t b/t/2_XMLout.t
-index 471d9ce..d0d8dcf 100644
---- a/t/2_XMLout.t
-+++ b/t/2_XMLout.t
-@@ -26,7 +26,9 @@ sub ReadFile {
- }
-
- use XML::Simple;
-+use XML::SAX;
-
-+$XML::SAX::ParserPackage = "XML::SAX::PurePerl";
- # Confirm error when mandatory parameter missing
-
- $_ = eval {
---
-2.16.2
-