r25768 - in /trunk/libxml-rss-perl/debian: README.source changelog control patches/ patches/rss0.91_dtd_fix.patch patches/series rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Fri Oct 3 13:50:37 UTC 2008


Author: gregoa
Date: Fri Oct  3 13:50:28 2008
New Revision: 25768

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=25768
Log:
* Add patch rss0.91_dtd_fix.patch to reflect the move of the RSS 0.91 dtd
  from Netscape to the RSS Advisory Board. Thanks to ISHIKAWA Mutsumi for
  the bug report and the patch. Closes: #500854
* Extend the patch to also cover t/xml-header.t.
* Add quilt framework and debian/README.source.

Added:
    trunk/libxml-rss-perl/debian/README.source
    trunk/libxml-rss-perl/debian/patches/
    trunk/libxml-rss-perl/debian/patches/rss0.91_dtd_fix.patch
    trunk/libxml-rss-perl/debian/patches/series
Modified:
    trunk/libxml-rss-perl/debian/changelog
    trunk/libxml-rss-perl/debian/control
    trunk/libxml-rss-perl/debian/rules

Added: trunk/libxml-rss-perl/debian/README.source
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-rss-perl/debian/README.source?rev=25768&op=file
==============================================================================
--- trunk/libxml-rss-perl/debian/README.source (added)
+++ trunk/libxml-rss-perl/debian/README.source Fri Oct  3 13:50:28 2008
@@ -1,0 +1,6 @@
+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/libxml-rss-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-rss-perl/debian/changelog?rev=25768&op=diff
==============================================================================
--- trunk/libxml-rss-perl/debian/changelog (original)
+++ trunk/libxml-rss-perl/debian/changelog Fri Oct  3 13:50:28 2008
@@ -1,3 +1,13 @@
+libxml-rss-perl (1.35-2) UNRELEASED; urgency=low
+
+  * Add patch rss0.91_dtd_fix.patch to reflect the move of the RSS 0.91 dtd
+    from Netscape to the RSS Advisory Board. Thanks to ISHIKAWA Mutsumi for
+    the bug report and the patch. Closes: #500854
+  * Extend the patch to also cover t/xml-header.t.
+  * Add quilt framework and debian/README.source.
+
+ -- gregor herrmann <gregoa at debian.org>  Fri, 03 Oct 2008 15:31:48 +0200
+
 libxml-rss-perl (1.35-1) unstable; urgency=low
 
   * New upstream release.

Modified: trunk/libxml-rss-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-rss-perl/debian/control?rev=25768&op=diff
==============================================================================
--- trunk/libxml-rss-perl/debian/control (original)
+++ trunk/libxml-rss-perl/debian/control Fri Oct  3 13:50:28 2008
@@ -6,7 +6,7 @@
  Vincent Danjean <vdanjean at debian.org>, Damyan Ivanov <dmn at debian.org>,
  gregor herrmann <gregoa at debian.org>, Gunnar Wolf <gwolf at debian.org>
 Standards-Version: 3.8.0
-Build-Depends: debhelper (>= 7)
+Build-Depends: debhelper (>= 7), quilt
 Build-Depends-Indep: perl, libtest-manifest-perl (>= 0.9), libtest-simple-perl,
  libxml-parser-perl (>= 2.23), libdatetime-format-mail-perl,
  libdatetime-format-w3cdtf-perl, libtest-differences-perl,

Added: trunk/libxml-rss-perl/debian/patches/rss0.91_dtd_fix.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-rss-perl/debian/patches/rss0.91_dtd_fix.patch?rev=25768&op=file
==============================================================================
--- trunk/libxml-rss-perl/debian/patches/rss0.91_dtd_fix.patch (added)
+++ trunk/libxml-rss-perl/debian/patches/rss0.91_dtd_fix.patch Fri Oct  3 13:50:28 2008
@@ -1,0 +1,36 @@
+Authors: ISHIKAWA Mutsumi <ishikawa at hanzubon.jp>
+         gregor herrmann <gregoa at debian.org>
+Description: RSS 0.90 and RSS 0.91 are moving to the RSS Advisory Board.
+Bugs: #500854, CPAN RT #39780
+
+--- a/lib/XML/RSS/Private/Output/V0_91.pm
++++ b/lib/XML/RSS/Private/Output/V0_91.pm
+@@ -18,7 +18,7 @@
+ {
+     return
+     qq{<!DOCTYPE rss PUBLIC "-//Netscape Communications//DTD RSS 0.91//EN"\n} .
+-    qq{            "http://my.netscape.com/publish/formats/rss-0.91.dtd">\n\n} .
++    qq{            "http://www.rssboard.org/rss-0.91.dtd">\n\n} .
+     qq{<rss version="0.91">\n\n};
+ }
+ 
+--- a/t/xml-header.t
++++ b/t/xml-header.t
+@@ -80,7 +80,7 @@
+ <?xml version="1.0" encoding="UTF-8"?>
+ 
+ <!DOCTYPE rss PUBLIC "-//Netscape Communications//DTD RSS 0.91//EN"
+-            "http://my.netscape.com/publish/formats/rss-0.91.dtd">
++            "http://www.rssboard.org/rss-0.91.dtd">
+ 
+ <rss version="0.91">
+ EOF
+@@ -138,7 +138,7 @@
+ <?xml-stylesheet type="text/xsl" href="http://myhost.tld/foo.xsl"?>
+ 
+ <!DOCTYPE rss PUBLIC "-//Netscape Communications//DTD RSS 0.91//EN"
+-            "http://my.netscape.com/publish/formats/rss-0.91.dtd">
++            "http://www.rssboard.org/rss-0.91.dtd">
+ 
+ <rss version="0.91">
+ EOF

Added: trunk/libxml-rss-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-rss-perl/debian/patches/series?rev=25768&op=file
==============================================================================
--- trunk/libxml-rss-perl/debian/patches/series (added)
+++ trunk/libxml-rss-perl/debian/patches/series Fri Oct  3 13:50:28 2008
@@ -1,0 +1,1 @@
+rss0.91_dtd_fix.patch

Modified: trunk/libxml-rss-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-rss-perl/debian/rules?rev=25768&op=diff
==============================================================================
--- trunk/libxml-rss-perl/debian/rules (original)
+++ trunk/libxml-rss-perl/debian/rules Fri Oct  3 13:50:28 2008
@@ -1,11 +1,13 @@
 #!/usr/bin/make -f
 
+include /usr/share/quilt/quilt.make
+
 build: build-stamp
-build-stamp:
+build-stamp: $(QUILT_STAMPFN)
 	dh build
 	touch $@
 
-clean:
+clean: unpatch
 	dh $@
 
 install: install-stamp




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