summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dev-perl/XML-SAX-Writer/ChangeLog7
-rw-r--r--dev-perl/XML-SAX-Writer/files/Text-Iconv.patch21
2 files changed, 5 insertions, 23 deletions
diff --git a/dev-perl/XML-SAX-Writer/ChangeLog b/dev-perl/XML-SAX-Writer/ChangeLog
index c945f360a73a..d47f7e38fe08 100644
--- a/dev-perl/XML-SAX-Writer/ChangeLog
+++ b/dev-perl/XML-SAX-Writer/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-perl/XML-SAX-Writer
-# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-SAX-Writer/ChangeLog,v 1.32 2008/11/20 12:48:58 tove Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-SAX-Writer/ChangeLog,v 1.33 2009/08/16 08:50:43 tove Exp $
+
+ 16 Aug 2009; Torsten Veller <tove@gentoo.org> -files/Text-Iconv.patch:
+ Remove unused patch
*XML-SAX-Writer-0.52 (20 Nov 2008)
diff --git a/dev-perl/XML-SAX-Writer/files/Text-Iconv.patch b/dev-perl/XML-SAX-Writer/files/Text-Iconv.patch
deleted file mode 100644
index 3a1c6eac6fce..000000000000
--- a/dev-perl/XML-SAX-Writer/files/Text-Iconv.patch
+++ /dev/null
@@ -1,21 +0,0 @@
---- t/05basic.t~ 2002-08-01 18:59:15.000000000 +0300
-+++ t/05basic.t 2004-08-22 11:03:36.038144470 +0300
-@@ -7,6 +7,7 @@
-
- use strict;
- use Test::More tests => 27;
-+use Text::Iconv;
- BEGIN { use_ok('XML::SAX::Writer'); }
-
-
-@@ -48,7 +49,9 @@
- # different inits (mostly for Consumer DWIM)
- $w1->{EncodeFrom} = 'iso-8859-1';
- $w1->start_document;
--isa_ok($w1->{Encoder}, 'Text::Iconv', 'iconv converter for real encoding');
-+my $iconv_class = 'Text::Iconv';
-+$iconv_class .= 'Ptr' if ($Text::Iconv::VERSION >= 1.3);
-+isa_ok($w1->{Encoder}, $iconv_class, 'iconv converter for real encoding');
-
- $w1->{Output} = 'test_file_for_output';
- $w1->start_document;