r43884 - /website/howto/quilt.pod

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Thu Sep 10 10:37:10 UTC 2009


Author: dmn
Date: Thu Sep 10 10:37:04 2009
New Revision: 43884

URL: http://svn.debian.org/wsvn/?sc=1&rev=43884
Log:
extinct html

edditing it is a major pain. if you have trouble correcting the text after
psting, you shall not use it

Modified:
    website/howto/quilt.pod

Modified: website/howto/quilt.pod
URL: http://svn.debian.org/wsvn/website/howto/quilt.pod?rev=43884&op=diff
==============================================================================
--- website/howto/quilt.pod (original)
+++ website/howto/quilt.pod Thu Sep 10 10:37:04 2009
@@ -145,13 +145,9 @@
 
 Note that using the following:
 
-=begin html
-
-<pre>build: patch build-stamp
-build-stamp:
-&#09;...</pre>
-
-=end html
+    build: patch build-stamp
+    build-stamp:
+        ...
 
 can fail if parallel build is allowed via C<-jN>. C<patch> and C<build-stamp>
 would be run in parallel, possibly failing due to partly applied patches.
@@ -165,12 +161,8 @@
 Since 0.46-7 C<quilt> offers a simpler integration with debhelper. A simple
 F<debian/rules> can now be written as (needs C<debhelper> >= 7.0.8):
 
-=begin html
-
-<pre>%:
-&#09;dh --with quilt $@</pre>
-
-=end html
+    %:
+        dh --with quilt $@
 
 Alternatively C<dh_quilt_patch> and C<dh_quilt_unpatch> can be added to
 F<debian/rules>.
@@ -215,19 +207,14 @@
 (since the build isn't being run, and the file hasn't been renamed yet)
 and it will fail.
 
-=begin html
-
-<pre>%:
-&#09;dh --with quilt $@
-override_dh_quilt_patch:
-&#09;dh_quilt_patch
-&#09;[ -f bin/some_utility ] || mv bin/some_utility.pl bin/some_utility
-override_dh_quilt_unpatch:
-&#09;[ -f bin/some_utility.pl ] || mv bin/some_utility bin/some_utility.pl
-&#09;dh_quilt_unpatch
-</pre>
-
-=end html
+    %:
+        dh --with quilt $@
+    override_dh_quilt_patch:
+        dh_quilt_patch
+        [ -f bin/some_utility ] || mv bin/some_utility.pl bin/some_utility
+    override_dh_quilt_unpatch:
+        [ -f bin/some_utility.pl ] || mv bin/some_utility bin/some_utility.pl
+        dh_quilt_unpatch
 
 =head2 README.source
 
@@ -238,15 +225,11 @@
 maintained by the Debian Perl Group. The F<debian/README.source> file looks
 like this:
 
-=begin html
-
-<pre>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.
-&nbsp;
-See /usr/share/doc/quilt/README.source for a detailed explanation.</pre>
-
-=end html
+    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.
 
 You can also use C<packagecheck -Q -c> to generate the F<debian/README.source>
 file.




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