Hi,

 Incomplete patch is here, it fixes error in this bug report, but not enough
 (another warnings raise as below).

make[4]: Entering directory `/tmp/buildd/guile-1.8-1.8.8+1/doc/r5rs'
restore=: && backupdir=".am$$" && \
        am__cwd=`pwd` && CDPATH="${ZSH_VERSION+.}:" && cd . && \
        rm -rf $backupdir && mkdir $backupdir && \
        if (/bin/bash /tmp/buildd/guile-1.8-1.8.8+1/build-aux/missing makeinfo 
--version) >/dev/null 2>&1; then \
          for f in r5rs.info r5rs.info-[0-9] r5rs.info-[0-9][0-9] r5rs.i[0-9] 
r5rs.i[0-9][0-9]; do \
            if test -f $f; then mv $f $backupdir; restore=mv; else :; fi; \
          done; \
        else :; fi && \
        cd "$am__cwd"; \
        if /bin/bash /tmp/buildd/guile-1.8-1.8.8+1/build-aux/missing makeinfo   
-I . \
         -o r5rs.info r5rs.texi; \
        then \
          rc=0; \
          CDPATH="${ZSH_VERSION+.}:" && cd .; \
        else \
          rc=$?; \
          CDPATH="${ZSH_VERSION+.}:" && cd . && \
          $restore $backupdir/* `echo "./r5rs.info" | sed 's|[^/]*$||'`; \
        fi; \
        rm -rf $backupdir; exit $rc
r5rs.texi:109: warning: @author missing argument
r5rs.texi:119: @unnumbered seen before @end titlepage
r5rs.texi:180: unmatched `@end titlepage'
r5rs.texi:763: warning: @center missing argument
r5rs.texi:782: warning: @item missing argument
r5rs.texi:5569: warning: @center missing argument
r5rs.texi:5584: warning: @item missing argument
r5rs.texi:7277: warning: @cindex should not appear in @t
r5rs.texi:7284: warning: @cindex should not appear in @t
r5rs.texi:7313: warning: @cindex should not appear in @t
r5rs.texi:7314: warning: @cindex should not appear in @t
r5rs.texi:7323: warning: @cindex should not appear in @t
r5rs.texi:7394: warning: @vindex should not appear in @t
r5rs.texi:7395: warning: @vindex should not appear in @t
r5rs.texi:7397: warning: @vindex should not appear in @t
r5rs.texi:7399: warning: @vindex should not appear in @t
r5rs.texi:7402: warning: @vindex should not appear in @t
r5rs.texi:8060: warning: @center missing argument
r5rs.texi:8062: warning: @center missing argument
r5rs.texi:193: warning: lowering the section level of @top appearing after a 
lower element
make[4]: *** [r5rs.info] Error 1


-- 
Regards,

 Hideki Yamane     henrich @ debian.or.jp/org
 http://wiki.debian.org/HidekiYamane
diff -Nru guile-1.8-1.8.8+1/debian/changelog guile-1.8-1.8.8+1/debian/changelog
--- guile-1.8-1.8.8+1/debian/changelog	2012-03-19 00:23:35.000000000 +0900
+++ guile-1.8-1.8.8+1/debian/changelog	2013-10-11 06:53:31.000000000 +0900
@@ -1,3 +1,10 @@
+guile-1.8 (1.8.8+1-8.1) UNRELEASED; urgency=low
+
+  * Non-maintainer upload.
+  * add debian/patches/fix-texinfo-warning.patch (Closes: #711029)
+
+ -- Hideki Yamane <henr...@debian.org>  Fri, 11 Oct 2013 06:53:01 +0900
+
 guile-1.8 (1.8.8+1-8) unstable; urgency=low
 
   * Add 0007-Mark-Unused-modules-are-removed-gc-test-as-unresolve.patch.
diff -Nru guile-1.8-1.8.8+1/debian/patches/fix-texinfo-warning.patch guile-1.8-1.8.8+1/debian/patches/fix-texinfo-warning.patch
--- guile-1.8-1.8.8+1/debian/patches/fix-texinfo-warning.patch	1970-01-01 09:00:00.000000000 +0900
+++ guile-1.8-1.8.8+1/debian/patches/fix-texinfo-warning.patch	2013-10-11 06:52:57.000000000 +0900
@@ -0,0 +1,44 @@
+Description: fix texinfo warning
+Bug-Debian: http://bugs.debian.org/711029
+Forwarded: no
+Last-Update: 2013-10-11
+
+--- guile-1.8-1.8.8+1.orig/doc/tutorial/guile-tut.texi
++++ guile-1.8-1.8.8+1/doc/tutorial/guile-tut.texi
+@@ -446,7 +446,7 @@ get started, look at the books @cite{Sim
+ Schemer} from that list.}
+ 
+ 
+-@subsection Hello World
++@section Hello World
+ @cindex hello world
+ 
+ Our first program is the typical Scheme "hello world" program.  Put the
+@@ -535,12 +535,12 @@ guile> @kbd{(memq 4 ls)}
+ guile> @kbd{(if (memq 4 ls)
+            (display "hey, it's true!\n")
+            (display "dude, it's false\n"))}
+-       @print{hey, it's true!}
++       @print{} hey, it's true!
+        @result{}
+ guile> @kbd{(if (memq 12 ls)
+            (display "hey, it's true!\n")
+            (display "dude, it's false\n"))}
+-       @print{dude, it's false}
++       @print{} dude, it's false
+        @result{}
+ guile> @kbd{(memq 4 (reverse ls))}
+        @result{} (4 3 2 1)
+@@ -656,9 +656,9 @@ And then invoke it with
+ (represent-matrix m
+                   (lambda (x) (begin (display x) (display " ")))
+                   (lambda (l) (begin (display "\n"))))
+-@print{7 2 1 3 2 8 5 3 6}
+-@print{4 1 1 1 3 8 9 8 1}
+-@print{5 5 4 8 1 8 2 2 4}
++@print{} 7 2 1 3 2 8 5 3 6
++@print{} 4 1 1 1 3 8 9 8 1
++@print{} 5 5 4 8 1 8 2 2 4
+ @end smalllisp
+ 
+ @cindex objects
diff -Nru guile-1.8-1.8.8+1/debian/patches/series guile-1.8-1.8.8+1/debian/patches/series
--- guile-1.8-1.8.8+1/debian/patches/series	2012-03-19 00:07:56.000000000 +0900
+++ guile-1.8-1.8.8+1/debian/patches/series	2013-10-11 06:51:48.000000000 +0900
@@ -5,3 +5,4 @@
 0005-Don-t-access-uninitialised-memory-in-scm_to_sockaddr.patch
 0006-Make-sockets.test-more-robust.patch
 0007-Mark-Unused-modules-are-removed-gc-test-as-unresolve.patch
+fix-texinfo-warning.patch

Reply via email to