[Pkg-asciidoc-commits] r42 - in trunk/debian: . patches

formorer at alioth.debian.org formorer at alioth.debian.org
Tue Jul 29 17:29:57 UTC 2008


Author: formorer
Date: 2008-07-29 17:29:56 +0000 (Tue, 29 Jul 2008)
New Revision: 42

Added:
   trunk/debian/patches/normpath-not-realpath.patch
Modified:
   trunk/debian/changelog
Log:
Add patch for 487962

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2008-07-18 19:51:03 UTC (rev 41)
+++ trunk/debian/changelog	2008-07-29 17:29:56 UTC (rev 42)
@@ -1,3 +1,11 @@
+asciidoc (8.2.7-2) unstable; urgency=low
+
+  * Reintroduce normpatch-not-realpath.patch which fixes some FTBFS 
+    with packages that build there documentation with asciidoc 
+    (Closes: #487962). Thanks to Ben Hutchings for the patch. 
+
+ -- Alexander Wirt <formorer at debian.org>  Tue, 29 Jul 2008 19:26:44 +0200
+
 asciidoc (8.2.7-1) unstable; urgency=low
 
   * New upstream version 

Added: trunk/debian/patches/normpath-not-realpath.patch
===================================================================
--- trunk/debian/patches/normpath-not-realpath.patch	                        (rev 0)
+++ trunk/debian/patches/normpath-not-realpath.patch	2008-07-29 17:29:56 UTC (rev 42)
@@ -0,0 +1,11 @@
+--- a/asciidoc.py
++++ b/asciidoc.py
+@@ -125,7 +125,7 @@
+     else:
+         assert os.path.isdir(directory)
+         directory = os.path.abspath(directory)
+-    fname = os.path.realpath(fname)
++    fname = os.path.normpath(fname)
+     return os.path.commonprefix((directory, fname)) == directory
+ 
+ def safe():




More information about the Pkg-asciidoc-commits mailing list