r49961 - in /trunk/libxml-sax-perl/debian: changelog patches/charset-decoding patches/parserdetails-debian patches/skip-test-with-nonfree-file

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sat Jan 2 19:52:23 UTC 2010


Author: gregoa
Date: Sat Jan  2 19:52:18 2010
New Revision: 49961

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=49961
Log:
debian/patches: update formatting and headers.

Modified:
    trunk/libxml-sax-perl/debian/changelog
    trunk/libxml-sax-perl/debian/patches/charset-decoding
    trunk/libxml-sax-perl/debian/patches/parserdetails-debian
    trunk/libxml-sax-perl/debian/patches/skip-test-with-nonfree-file

Modified: trunk/libxml-sax-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-sax-perl/debian/changelog?rev=49961&op=diff
==============================================================================
--- trunk/libxml-sax-perl/debian/changelog (original)
+++ trunk/libxml-sax-perl/debian/changelog Sat Jan  2 19:52:18 2010
@@ -11,6 +11,7 @@
 
   [ gregor herrmann ]
   * Adjust debian/{rules,copyright} to debian/repack.stub.
+  * debian/patches: update formatting and headers.
 
  -- Ansgar Burchardt <ansgar at 43-1.org>  Sat, 02 Jan 2010 19:28:28 +0900
 

Modified: trunk/libxml-sax-perl/debian/patches/charset-decoding
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-sax-perl/debian/patches/charset-decoding?rev=49961&op=diff
==============================================================================
--- trunk/libxml-sax-perl/debian/patches/charset-decoding (original)
+++ trunk/libxml-sax-perl/debian/patches/charset-decoding Sat Jan  2 19:52:18 2010
@@ -1,10 +1,9 @@
-# Fix charset decoding in the PurePerl module (#405186)
-# Niko Tyni <ntyni at iki.fi> Sun, 04 Nov 2007 20:46:58 +0200
+Description: Fix charset decoding in the PurePerl module (#405186)
+Author: Niko Tyni <ntyni at iki.fi>
+Date: Sun, 04 Nov 2007 20:46:58 +0200
 
-Index: libxml-sax-perl/SAX/PurePerl/Productions.pm
-===================================================================
---- libxml-sax-perl.orig/SAX/PurePerl/Productions.pm	2009-03-01 01:17:23.000000000 +0000
-+++ libxml-sax-perl/SAX/PurePerl/Productions.pm	2009-03-01 01:25:54.000000000 +0000
+--- a/SAX/PurePerl/Productions.pm
++++ b/SAX/PurePerl/Productions.pm
 @@ -39,7 +39,7 @@
      # can't do this one without unicode
      # $CombiningChar = qr/^$/msx;
@@ -14,10 +13,8 @@
      PERL
      die $@ if $@;
  }
-Index: libxml-sax-perl/SAX/PurePerl.pm
-===================================================================
---- libxml-sax-perl.orig/SAX/PurePerl.pm	2009-03-01 01:17:22.000000000 +0000
-+++ libxml-sax-perl/SAX/PurePerl.pm	2009-03-01 01:22:57.000000000 +0000
+--- a/SAX/PurePerl.pm
++++ b/SAX/PurePerl.pm
 @@ -677,7 +677,7 @@
      
      return unless length($name);

Modified: trunk/libxml-sax-perl/debian/patches/parserdetails-debian
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-sax-perl/debian/patches/parserdetails-debian?rev=49961&op=diff
==============================================================================
--- trunk/libxml-sax-perl/debian/patches/parserdetails-debian (original)
+++ trunk/libxml-sax-perl/debian/patches/parserdetails-debian Sat Jan  2 19:52:18 2010
@@ -1,5 +1,5 @@
-The Debian way of handling ParserDetails.ini: use
-update-perl-sax-parsers(8) instead.
+Description: The Debian way of handling ParserDetails.ini: use
+ update-perl-sax-parsers(8) instead.
 
 * SAX.pm: the meat of the modifications
   + add XML::SAX->save_parsers_debian(), used by update-perl-sax-parsers
@@ -8,11 +8,12 @@
 * Makefile.PL: Don't try to modify ParserDetails.ini when building the package
 * t/01known.t, t/99cleanup.t: Skip tests related to XML::SAX->save_parsers()
 
-Originally by Ardo van Rangelrooij <ardo at debian.org>
-Cleanups and quilt conversion by Niko Tyni <ntyni at iki.fi>
+Author: Originally by Ardo van Rangelrooij <ardo at debian.org>
+Author: Cleanups and quilt conversion by Niko Tyni <ntyni at iki.fi>
+Author: Ansgar Burchardt <ansgar at 43-1.org> (XML::SAX::Debian)
 
---- libxml-sax-perl.orig/t/01known.t
-+++ libxml-sax-perl/t/01known.t
+--- a/t/01known.t
++++ b/t/01known.t
 @@ -1,6 +1,9 @@
 -use Test;
 +use Test::More;
@@ -24,8 +25,8 @@
  ok(XML::SAX->load_parsers);
  ok(@{XML::SAX->parsers}, 0);
 +}
---- libxml-sax-perl.orig/t/99cleanup.t
-+++ libxml-sax-perl/t/99cleanup.t
+--- a/t/99cleanup.t
++++ b/t/99cleanup.t
 @@ -1,7 +1,7 @@
  use Test;
  BEGIN { plan tests => 1 }
@@ -35,8 +36,8 @@
      File::Spec->catdir(qw(blib lib XML SAX ParserDetails.ini))),
      1,
      'delete ParserDetails.ini'
---- libxml-sax-perl.orig/Makefile.PL
-+++ libxml-sax-perl/Makefile.PL
+--- a/Makefile.PL
++++ b/Makefile.PL
 @@ -16,6 +16,10 @@
      package MY;
      my $script = shift->SUPER::install(@_);
@@ -48,8 +49,8 @@
      # Only modify existing ParserDetails.ini if user agrees
  
      my $write_ini_ok = 0;
---- libxml-sax-perl.orig/SAX.pm
-+++ libxml-sax-perl/SAX.pm
+--- a/SAX.pm
++++ b/SAX.pm
 @@ -179,6 +179,15 @@
  sub save_parsers {
      my $class = shift;
@@ -78,7 +79,7 @@
  __END__
  
 --- /dev/null
-+++ libxml-sax-perl/SAX/Debian.pm
++++ b/SAX/Debian.pm
 @@ -0,0 +1,47 @@
 +package XML::SAX::Debian;
 +

Modified: trunk/libxml-sax-perl/debian/patches/skip-test-with-nonfree-file
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-sax-perl/debian/patches/skip-test-with-nonfree-file?rev=49961&op=diff
==============================================================================
--- trunk/libxml-sax-perl/debian/patches/skip-test-with-nonfree-file (original)
+++ trunk/libxml-sax-perl/debian/patches/skip-test-with-nonfree-file Sat Jan  2 19:52:18 2010
@@ -1,5 +1,5 @@
-Skip a test depending on a non-free input file (testfiles/xmltest.xml).
-See #452872.
+Description: Skip a test depending on a non-free input file (testfiles/xmltest.xml).
+Bugs: #452872
 
 --- a/t/16large.t
 +++ b/t/16large.t
@@ -9,7 +9,7 @@
  BEGIN { plan tests => 3 }
  use XML::SAX::PurePerl;
  use XML::SAX::PurePerl::DebugHandler;
-@@ -9,8 +9,10 @@ ok($handler);
+@@ -9,8 +9,10 @@
  my $parser = XML::SAX::PurePerl->new(Handler => $handler);
  ok($parser);
  




More information about the Pkg-perl-cvs-commits mailing list