r47190 - in /trunk/libtest-xml-simple-perl/debian: README.source changelog control patches/ patches/new-xml-libxml-output patches/series rules

diocles-guest at users.alioth.debian.org diocles-guest at users.alioth.debian.org
Sat Nov 14 21:46:57 UTC 2009


Author: diocles-guest
Date: Sat Nov 14 21:46:52 2009
New Revision: 47190

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=47190
Log:
New patch to fix test output to match newer XML::LibXML errors. (Closes: #555939)

Added:
    trunk/libtest-xml-simple-perl/debian/README.source
    trunk/libtest-xml-simple-perl/debian/patches/
    trunk/libtest-xml-simple-perl/debian/patches/new-xml-libxml-output
    trunk/libtest-xml-simple-perl/debian/patches/series
Modified:
    trunk/libtest-xml-simple-perl/debian/changelog
    trunk/libtest-xml-simple-perl/debian/control
    trunk/libtest-xml-simple-perl/debian/rules

Added: trunk/libtest-xml-simple-perl/debian/README.source
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-xml-simple-perl/debian/README.source?rev=47190&op=file
==============================================================================
--- trunk/libtest-xml-simple-perl/debian/README.source (added)
+++ trunk/libtest-xml-simple-perl/debian/README.source Sat Nov 14 21:46:52 2009
@@ -1,0 +1,5 @@
+This package uses quilt to manage all modifications to the upstream
+source.  Changes are stored in the source package as diffs in
+debian/patches and applied during the build.
+
+See /usr/share/doc/quilt/README.source for a detailed explanation.

Modified: trunk/libtest-xml-simple-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-xml-simple-perl/debian/changelog?rev=47190&op=diff
==============================================================================
--- trunk/libtest-xml-simple-perl/debian/changelog (original)
+++ trunk/libtest-xml-simple-perl/debian/changelog Sat Nov 14 21:46:52 2009
@@ -1,3 +1,15 @@
+libtest-xml-simple-perl (1.00-2) UNRELEASED; urgency=low
+
+  * debian/control:
+    + Add self to Uploaders.
+    + Build-Depend on debhelper (>= 7.0.8) and quilt (>= 0.46-7).
+  * debian/rules: Add --with quilt
+  * debian/README.source: Add standard quilt README.source.
+  * debian/patches/new-xml-libxml-output: New patch to fix test
+    output to match newer XML::LibXML errors. (Closes: #555939)
+
+ -- Tim Retout <tim at retout.co.uk>  Sat, 14 Nov 2009 21:43:09 +0000
+
 libtest-xml-simple-perl (1.00-1) unstable; urgency=low
 
   [ Jonathan Yu ]

Modified: trunk/libtest-xml-simple-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-xml-simple-perl/debian/control?rev=47190&op=diff
==============================================================================
--- trunk/libtest-xml-simple-perl/debian/control (original)
+++ trunk/libtest-xml-simple-perl/debian/control Sat Nov 14 21:46:52 2009
@@ -1,12 +1,12 @@
 Source: libtest-xml-simple-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 7)
+Build-Depends: debhelper (>= 7.0.8), quilt (>= 0.46-7)
 Build-Depends-Indep: perl, libtest-longstring-perl, libtest-pod-coverage-perl,
  libxml-libxml-perl, libtest-pod-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Jaldhar H. Vyas <jaldhar at debian.org>, Alex Muntada <alexm at alexm.org>,
- Jonathan Yu <jawnsy at cpan.org>
+ Jonathan Yu <jawnsy at cpan.org>, Tim Retout <tim at retout.co.uk>
 Standards-Version: 3.8.3
 Homepage: http://search.cpan.org/dist/Test-XML-Simple/
 Vcs-Svn: svn://svn.debian.org/svn/pkg-perl/trunk/libtest-xml-simple-perl/

Added: trunk/libtest-xml-simple-perl/debian/patches/new-xml-libxml-output
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-xml-simple-perl/debian/patches/new-xml-libxml-output?rev=47190&op=file
==============================================================================
--- trunk/libtest-xml-simple-perl/debian/patches/new-xml-libxml-output (added)
+++ trunk/libtest-xml-simple-perl/debian/patches/new-xml-libxml-output Sat Nov 14 21:46:52 2009
@@ -1,0 +1,28 @@
+Description: Fix up expected output to match XML::LibXML 1.70
+ Note that the trailing whitespace is significant in this patch.
+Author: Tim Retout <tim at retout.co.uk>
+
+--- a/t/03valid.t
++++ b/t/03valid.t
+@@ -34,8 +34,19 @@
+ xml_valid($totally_invalid, "invalid xml");
+ test_test('non-XML string');
+ 
+-test_out("not ok 1 - :2: parser error : Premature end of data in tag imatag line 1");
+-test_fail(+1);
++test_out("not ok 1 - :2: parser error : Premature end of data in tag nomatch line 1
++# 
++# ^
++# :2: parser error : Premature end of data in tag imatag line 1
++# 
++# ^");
++test_err("#   Failed test ':2: parser error : Premature end of data in tag nomatch line 1
++# 
++# ^
++# :2: parser error : Premature end of data in tag imatag line 1
++# 
++# ^'
++#   at t/03valid.t line " . line_num(+7) . '.');
+ xml_valid($broken_xml, "invalid xml");
+ test_test('bad XML');
+ 

Added: trunk/libtest-xml-simple-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-xml-simple-perl/debian/patches/series?rev=47190&op=file
==============================================================================
--- trunk/libtest-xml-simple-perl/debian/patches/series (added)
+++ trunk/libtest-xml-simple-perl/debian/patches/series Sat Nov 14 21:46:52 2009
@@ -1,0 +1,1 @@
+new-xml-libxml-output

Modified: trunk/libtest-xml-simple-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-xml-simple-perl/debian/rules?rev=47190&op=diff
==============================================================================
--- trunk/libtest-xml-simple-perl/debian/rules (original)
+++ trunk/libtest-xml-simple-perl/debian/rules Sat Nov 14 21:46:52 2009
@@ -1,4 +1,4 @@
 #!/usr/bin/make -f
 
 %:
-	dh $@
+	dh --with quilt $@




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