Control: reassign -1 yelp-tools Control: affects -1 src:aisleriot Control: tags -1 patch
On Tue, Nov 08, 2016 at 09:46:39AM +0000, Riku Voipio wrote: > severity 839549 important > thanks > > I can confirm this, the latest build took 4h on armhf buildd, yet the > buildd's cpu usage was 0% during this time. > > https://buildd.debian.org/status/fetch.php?pkg=aisleriot&arch=armhf&ver=1%3A3.22.1-1&stamp=1478592921 > > On amd64 build clearly see network access: > > /usr/bin/xmllint --noout --noent --path sv --xinclude sv/index.docbook > http://www.oasis-open.org/docbook/xml/4.3/ent/iso-dia.ent:1: parser error : > Content error in the external subset > HTTP/1.1 200 OK > sv/index.docbook:204: element include: XInclude error : could not load > sv/king_albert.xml, and no fallback was found > > https://buildd.debian.org/status/fetch.php?pkg=aisleriot&arch=amd64&ver=1%3A3.22.1-1&stamp=1478572195 > > you need to pass --nonet to xmllint. That's actually coming from yelp.m4, the attached patch for yelp-tools should fix it. > Riku cu Adrian -- "Is there not promise of rain?" Ling Tan asked suddenly out of the darkness. There had been need of rain for many days. "Only a promise," Lao Er said. Pearl S. Buck - Dragon Seed
Description: yelp.m4: Tell smllint to not access the Internet Author: Adrian Bunk <b...@debian.org> Bug-Debian: https://bugs.debian.org/839549 --- yelp-tools-3.18.0.orig/tools/yelp.m4 +++ yelp-tools-3.18.0/tools/yelp.m4 @@ -140,8 +140,8 @@ check-help: xmlpath="$$lc:$(srcdir)/$$lc"; \ fi; \ for page in $(HELP_FILES); do \ - echo "$(XMLLINT) --noout --noent --path $$xmlpath --xinclude $$d$$lc/$$page"; \ - $(XMLLINT) --noout --noent --path "$$xmlpath" --xinclude "$$d$$lc/$$page"; \ + echo "$(XMLLINT) --noout --noent --nonet --path $$xmlpath --xinclude $$d$$lc/$$page"; \ + $(XMLLINT) --noout --noent --nonet --path "$$xmlpath" --xinclude "$$d$$lc/$$page"; \ done; \ done