r17995 - in /trunk/libsvg-perl/debian: changelog control patches/00list patches/01-fix_manpages.dpatch patches/01-fix_manpages.patch patches/series rules

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Wed Mar 26 18:08:21 UTC 2008


Author: gregoa-guest
Date: Wed Mar 26 18:08:20 2008
New Revision: 17995

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=17995
Log:
Switch patch system from dpatch to quilt and refresh patch
01-fix_manpages.patch.

Added:
    trunk/libsvg-perl/debian/patches/01-fix_manpages.patch
    trunk/libsvg-perl/debian/patches/series
Removed:
    trunk/libsvg-perl/debian/patches/00list
    trunk/libsvg-perl/debian/patches/01-fix_manpages.dpatch
Modified:
    trunk/libsvg-perl/debian/changelog
    trunk/libsvg-perl/debian/control
    trunk/libsvg-perl/debian/rules

Modified: trunk/libsvg-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvg-perl/debian/changelog?rev=17995&op=diff
==============================================================================
--- trunk/libsvg-perl/debian/changelog (original)
+++ trunk/libsvg-perl/debian/changelog Wed Mar 26 18:08:20 2008
@@ -11,8 +11,10 @@
   * debian/watch: improved regexp for matching upstream releases.
   * Set Standards-Version to 3.7.3 (no changes).
   * Add /me to Uploaders.
+  * Switch patch system from dpatch to quilt and refresh patch
+    01-fix_manpages.patch.
 
- -- gregor herrmann <gregor+debian at comodo.priv.at>  Wed, 26 Mar 2008 19:02:23 +0100
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Wed, 26 Mar 2008 19:07:52 +0100
 
 libsvg-perl (2.36-1) unstable; urgency=low
 

Modified: trunk/libsvg-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvg-perl/debian/control?rev=17995&op=diff
==============================================================================
--- trunk/libsvg-perl/debian/control (original)
+++ trunk/libsvg-perl/debian/control Wed Mar 26 18:08:20 2008
@@ -5,7 +5,7 @@
 Uploaders: David Paleino <d.paleino at gmail.com>,
  Damyan Ivanov <dmn at debian.org>,
  gregor herrmann <gregor+debian at comodo.priv.at>
-Build-Depends: debhelper (>= 5), dpatch
+Build-Depends: debhelper (>= 5), quilt (>= 0.40)
 Build-Depends-Indep: perl
 Standards-Version: 3.7.3
 Homepage: http://search.cpan.org/dist/SVG/

Added: trunk/libsvg-perl/debian/patches/01-fix_manpages.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvg-perl/debian/patches/01-fix_manpages.patch?rev=17995&op=file
==============================================================================
--- trunk/libsvg-perl/debian/patches/01-fix_manpages.patch (added)
+++ trunk/libsvg-perl/debian/patches/01-fix_manpages.patch Wed Mar 26 18:08:20 2008
@@ -1,0 +1,78 @@
+Author: David Paleino <d.paleino at gmail.com>
+Description: No description.
+--- libsvg-perl.orig/lib/SVG/Element.pm
++++ libsvg-perl/lib/SVG/Element.pm
+@@ -737,7 +737,7 @@
+ 
+     # populate the script tag with cdata
+     # be careful to manage the javascript line ends.
+-    # qq|text| or qq§text§ where text is the script 
++    # qq|text| or qq\[sc]text\[sc] where text is the script
+     # works well for this.
+ 
+     $tag->CDATA(qq|function d(){
+@@ -764,7 +764,7 @@
+ 
+     # populate the style tag with cdata
+     # be careful to manage the line ends.
+-    # qq|text| or qq§text§ where text is the script
++    # qq|text| or qq\[sc]text\[sc] where text is the script
+     # works well for this.
+ 
+     $tag1->CDATA(qq|
+@@ -1210,7 +1210,7 @@
+ 
+ B<Example:>
+ 
+-      my $text = qq§
++      my $text = qq\[sc]
+         var SVGDoc;
+         var groups = new Array();
+         var last_group;
+@@ -1228,7 +1228,7 @@
+             append_group(1, 4, 6); // group 0
+             append_group(5, 4, 3); // group 1
+             append_group(2, 3);    // group 2
+-        }§;
++        }\[sc];
+         $SVG->script()->CDATA($text);
+ 
+ 
+--- libsvg-perl.orig/lib/SVG/Manual.pm
++++ libsvg-perl/lib/SVG/Manual.pm
+@@ -222,7 +222,7 @@
+ =head1 CREDITS
+ 
+ Peter Wainwright, Excellent ideas, beta-testing, writing SVG::Parser and much of SVG::DOM.  Fredo, http://www.penguin.at0.net/~fredo/ - provided example code and initial feedback for early SVG.pm versions and the idea of a simplified svg generator.
+-Adam Schneider, Brial Pilpré, Ian Hickson
++Adam Schneider, Brial Pilpr\['e], Ian Hickson
+ Martin Owens - SVG::DOM improvements in version 3.34
+ 
+ =head1 EXAMPLES
+@@ -611,7 +611,7 @@
+ 
+     # populate the script tag with cdata
+     # be careful to manage the javascript line ends.
+-    # qq|text| or qq§text§ where text is the script 
++    # qq|text| or qq\[sc]text\[sc] where text is the script
+     # works well for this.
+     #make sure to use the CAPITAL CDATA to poulate the script.
+     $tag->CDATA(qq|function d(){
+@@ -847,7 +847,7 @@
+ 
+ B<Example:>
+ 
+-      my $text = qq§
++      my $text = qq\[sc]
+         var SVGDoc;
+         var groups = new Array();
+         var last_group;
+@@ -865,7 +865,7 @@
+             append_group(1, 4, 6); // group 0
+             append_group(5, 4, 3); // group 1
+             append_group(2, 3);    // group 2
+-        }§;
++        }\[sc];
+         $svg->script()->CDATA($text);
+ 
+ 

Added: trunk/libsvg-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvg-perl/debian/patches/series?rev=17995&op=file
==============================================================================
--- trunk/libsvg-perl/debian/patches/series (added)
+++ trunk/libsvg-perl/debian/patches/series Wed Mar 26 18:08:20 2008
@@ -1,0 +1,1 @@
+01-fix_manpages.patch

Modified: trunk/libsvg-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvg-perl/debian/rules?rev=17995&op=diff
==============================================================================
--- trunk/libsvg-perl/debian/rules (original)
+++ trunk/libsvg-perl/debian/rules Wed Mar 26 18:08:20 2008
@@ -4,17 +4,10 @@
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
-patch: patch-stamp
-patch-stamp:
-	dpatch apply-all
-	touch $@
+include /usr/share/quilt/quilt.make
 
-unpatch:
-	dpatch deapply-all
-	rm -rf debian/patched patch-stamp
-
-build: patch build-stamp
-build-stamp:
+build: build-stamp
+build-stamp: $(QUILT_STAMPFN)
 	dh_testdir
 	# the VENDORARCHEXP and INSTALLVENDORARCH
 	# variables are set to avoid the creation
@@ -27,8 +20,7 @@
 	$(MAKE) test
 	touch $@
 
-clean: unpatch distclean
-distclean:
+clean: unpatch
 	dh_testdir
 	dh_testroot
 




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