Your message dated Tue, 9 Oct 2018 17:06:10 +0200
with message-id <20181009150610.GA3738@localhost>
and subject line forgot to close the bug
has caused the Debian Bug report #910387,
regarding pycode-browser: FTBFS (endless loop)
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)
--
910387: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=910387
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:pycode-browser
Version: 1:1.02+git20171115-1
Severity: serious
Tags: ftbfs patch
Dear maintainer:
I tried to build this package in buster but the build entered an
endless loop and did never end. The endless loop also happens here:
https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/pycode-browser.html
The problem is in pybooksrc/Makefile which reads like this:
while (grep Warning $${logfile}| grep -iq run); do \
pdflatex $<; \
done
This is probably to detect this Warning message:
LaTeX Warning: Label(s) may have changed. Rerun to get cross-references right.
but the iterated pdflatex runs now generate the following Warning
messages, of which the second one matches "Warning" and "run":
Package Babel Warning: The package option english' should not be used
--> Package geometry Warning: The marginal notes overrun the paper.
LaTeX Font Warning: Font shape OML/cmtt/m/n' undefined
LaTeX Font Warning: Font shape OMS/cmtt/m/n' undefined
LaTeX Font Warning: Some font shapes were not available, defaults substituted.
Suggested fix below.
Thanks.
--- a/pybooksrc/Makefile
+++ b/pybooksrc/Makefile
@@ -16,6 +16,6 @@ install:
%.pdf: %.tex
pdflatex $<
logfile=$$(echo $< | sed 's/tex/log/'); \
- while (grep Warning $${logfile}| grep -iq run); do \
+ set -e; while grep -q Rerun $${logfile}; do \
pdflatex $<; \
done
--- End Message ---
--- Begin Message ---
I forgot to repeat "Closes: #910387", when rewriting debian/changelog,
after an update to the newest upstream git revision. The build does
succeed.
--
Georges KHAZNADAR et Jocelyne FOURNIER
22 rue des mouettes, 59240 Dunkerque France.
Téléphone +33 (0)3 28 29 17 70
signature.asc
Description: PGP signature
--- End Message ---