Bug#859572: docbook-xsl: randomly adds ???TITLE??? to title

2017-04-04 Thread Chris West
Package: docbook-xsl
Version: 1.79.1+dfsg-2

Sometimes, when I generate HTML, the title for my book gets
"???TITLE???" appended to it. This happens for very simple books:

$ cat usersBook.xml

http://docbook.org/ns/docbook";>
foo






$ xsltproc --output html/ \
  --xinclude \
  /usr/share/xml/docbook/stylesheet/docbook-xsl/htmlhelp/htmlhelp.xsl \
  usersBook.xml
...
Request for title of element with no title: code (contained in )
...
$ grep '^Title=' html/htmlhelp.hhp
Title=foo???TITLE???

However, sometimes it does not. The "Request.." message is omitted, and
the title is normal:
Title=foo

This happens ~60% of the time.

This affects the reproducibility of packages such as gsequencer, due to
the random variation it introduces.

My investigation:
Sometimes, a  element is generated during glossary generation.
(I don't know why this happens.). Then, this template matches:
 doesn't exist anywhere with a
title... and it gets stuck in the raw title, then.. I got super lost.



Bug#858178: uuidcdef: buffer overflow

2017-05-15 Thread Chris West
tags 858178 + patch
thanks

This is correctly diagnosing a buffer which is to small.
The length of data written to the buffer is always constant,
(20 bytes more than the length of the buffer), and not under
user control, so there is probably not a security problem here.

A patch, to increase the length of the buffer, is attached.

--- xplc-0.3.13.orig/uuid/bin/uuidgen.c
+++ xplc-0.3.13/uuid/bin/uuidgen.c
@@ -239,7 +239,7 @@ int parse_conf(int argc, char** argv, st
 
 
 typedef const char* (*uuid_output_fn_t)(const uuid_t);
-static char uuid_unparse_buf[60];
+static char uuid_unparse_buf[80];
 const char* uuid_unparse_x_(const uuid_t uuid) {
   /* This function implicitly trusts uuid_unparse. */
   unsigned int a, b, c, d, e, f, g, h, i, j, k;
@@ -249,7 +249,7 @@ const char* uuid_unparse_x_(const uuid_t
"%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x",
&a, &b, &c, &d, &e, &f, &g, &h, &i, &j, &k);
   if(ret != 11) {
-uuid_unparse_buf[59] = '\0';
+uuid_unparse_buf[79] = '\0';
 fprintf(stderr,
 "%s: libuuid error at %s:%d\n", program, __FILE__, __LINE__);
 fprintf(stderr,



Bug#875778: FTBFS with Java 9: path shenanigans confuse ant?

2017-09-14 Thread Chris West
Source: pegasus-wms
Version: 4.4.0+dfsg-6
Severity: normal
User: debian-j...@lists.debian.org
Usertags: default-java9

This package fails to build with default-jdk pointing to openjdk-9-jdk.
Please fix it, so that we can start the transition to Java 9.
The wiki has some common problems and their solutions:
https://wiki.debian.org/Java/Java9Pitfalls

On my builder, this fails as follows. I suspect it's due to this weird
fiddling with the path, which is invalid:
https://sources.debian.net/src/pegasus-wms/4.4.0%2Bdfsg-6/debian/rules/#L10

JAVA_HOME := $(firstword $(wildcard 
/usr/lib/jvm/java-7-openjdk-$(DEB_HOST_ARCH)))
PATH := ${JAVA_HOME}/bin:${PATH}

However, it works on Java 8, on Reproducible Builds jenkins, so it's
apparently not totally crazy.

(I realise that this package is orphaned.)

Build log:

dpkg-buildpackage: info: source package pegasus-wms
dpkg-buildpackage: info: source version 4.4.0+dfsg-6
dpkg-buildpackage: info: source distribution unstable
dpkg-buildpackage: info: source changed by Adam Borowski 
dpkg-buildpackage: info: host architecture amd64
 dpkg-source --before-build pegasus-wms-4.4.0+dfsg
dpkg-source: info: using options from 
pegasus-wms-4.4.0+dfsg/debian/source/options: 
--extend-diff-ignore=(Version.java|\.jar|doc/docbook/.*|doc/manpages/.*|share/man/man1/.*|\.pdf)$
 debian/rules clean
dh_testdir
dh_testroot
rm -f build-arch-stamp build-indep-stamp
ant clean
/bin/ant: 1: cd: can't cd to /bin/../share/ant/bin/..
Error: Could not find or load main class org.apache.tools.ant.launch.Launcher
Caused by: java.lang.ClassNotFoundException: 
org.apache.tools.ant.launch.Launcher
debian/rules:149: recipe for target 'clean' failed
make: *** [clean] Error 1
dpkg-buildpackage: error: debian/rules clean gave error exit status 2


Cheers,
Chris.



Bug#849656: gambc: FTBFS on armhf: Segmentation fault

2016-12-29 Thread Chris West (Faux)
Source: gambc
Version: 4.2.8-2
Severity: serious
Justification: fails to build from source
Tags: sid stretch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-CC: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

The package fails to build:

make[2]: Leaving directory '/build/1st/gambc-4.2.8/gsi'
making all in gsc
make[2]: Entering directory '/build/1st/gambc-4.2.8/gsc'
LD_LIBRARY_PATH=../lib:../gsi:../gsc:/usr/lib/libeatmydata ../gsc-comp -:=.. -f 
-c -check _gsclib.scm
Segmentation fault
makefile:176: recipe for target '_gsclib.c' failed
make[2]: *** [_gsclib.c] Error 139

Full build log:
https://tests.reproducible-builds.org/debian/unstable/armhf/gambc



Bug#788693: FTBFS: invalid application of 'sizeof' to incomplete type 'struct in6_pktinfo'

2015-06-14 Thread Chris West (Faux)
Package: dhcpcd5
Severity: serious
Justification: fails to build from source (but built successfully in the past)

Dear Maintainer,

The package fails to build due to this sizeof problem, which appears
to be fixed in various other projects (and possibly upstream):

In file included from /usr/include/x86_64-linux-gnu/sys/socket.h:38:0,
 from ipv6rs.c:30:
ipv6rs.c: In function 'ipv6rs_open':
ipv6rs.c:168:26: error: invalid application of 'sizeof' to incomplete type 
'struct in6_pktinfo'
  len = CMSG_SPACE(sizeof(struct in6_pktinfo)) + CMSG_SPACE(sizeof(int));
  ^
ipv6rs.c: In function 'ipv6rs_sendprobe':
ipv6rs.c:232:21: error: storage size of 'pi' isn't known
  struct in6_pktinfo pi;
 ^
ipv6rs.c: In function 'ipv6rs_handledata':
ipv6rs.c:492:21: error: storage size of 'pkt' isn't known
  struct in6_pktinfo pkt;
 ^

A complete build log can be viewed, at the time of writing, from the 
Reproducible Builds builder:
https://reproducible.debian.net/rb-pkg/unstable/amd64/dhcpcd5.html

-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.19.0-20-generic (SMP w/8 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150614104312.19177.26252.reportbug@sid



Bug#788766: ifrit: FTBFS with libvtk5.8: VTK is not found.

2015-06-14 Thread Chris West (Faux)
Package: ifrit
Version: 3.4.2-1
Severity: serious
Justification: fails to build from source (but built successfully in the past)

Dear Maintainer,

The package fails to build as libvtk5-dev installs vtk-5.8:

CMake Error at CMakeLists.txt:139 (INCLUDE):
  include could not find load file:

/usr/share/cmake-3.2/Modules/FindVTK.cmake


CMake Error at CMakeLists.txt:141 (MESSAGE):
  VTK is not found.  Please check that VTKDIR variables is set properly.

This class of problem seems to have been fixed before: #536904

The full build log is available on the Reproducible Builds builder:
https://reproducible.debian.net/rb-pkg/unstable/amd64/ifrit.html

-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.19.0-20-generic (SMP w/8 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150614204524.21448.86636.reportbug@sid



Bug#794376: FTBFS: undefined reference to `boost::program_options::detail::cmdline::cmdline'

2015-08-02 Thread Chris West (Faux)
Source: fracplanet
Version: 0.4.0-3
Severity: serious
Tags: sid 
Justification: fails to build from source (but built successfully in the past)
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs

Dear Maintainer,

The package fails to build:

obj/fracplanet.o: In function 
`boost::program_options::basic_command_line_parser::extra_parser(boost::function1, std::allocator >, 
std::__cxx11::basic_string, std::allocator > 
>, std::__cxx11::basic_string, 
std::allocator > const&>)':
/usr/include/boost/program_options/detail/parsers.hpp:77: undefined reference 
to 
`boost::program_options::detail::cmdline::set_additional_parser(boost::function1, std::allocator >, 
std::__cxx11::basic_string, std::allocator > 
>, std::__cxx11::basic_string, 
std::allocator > const&>)'
obj/fracplanet.o: In function `std::vector, std::allocator >, 
std::allocator, 
std::allocator > > > 
boost::program_options::to_internal, std::allocator > 
>(std::vector, 
std::allocator >, std::allocator, std::allocator > > > const&)':
/usr/include/boost/program_options/detail/convert.hpp:79: undefined reference 
to `boost::program_options::to_internal(std::__cxx11::basic_string, std::allocator > const&)'
obj/fracplanet.o: In function 
`boost::program_options::basic_command_line_parser::basic_command_line_parser(int,
 char const* const*)':
/usr/include/boost/program_options/detail/parsers.hpp:43: undefined reference 
to 
`boost::program_options::detail::cmdline::cmdline(std::vector, std::allocator >, 
std::allocator, 
std::allocator > > > const&)'
obj/fracplanet.o: In function `main':
/tmp/buildd/fracplanet-0.4.0/fracplanet.cpp:47: undefined reference to 
`boost::program_options::options_description::options_description(std::__cxx11::basic_string, std::allocator > const&, unsigned int, unsigned 
int)'
obj/parameters_render.o: In function `ParametersRender::options()':
/tmp/buildd/fracplanet-0.4.0/parameters_render.cpp:28: undefined reference to 
`boost::program_options::options_description::options_description(std::__cxx11::basic_string, std::allocator > const&, unsigned int, unsigned 
int)'
collect2: error: ld returned 1 exit status
Makefile:186: recipe for target 'fracplanet' failed


Full build log:
https://reproducible.debian.net/rb-pkg/unstable/amd64/fracplanet.html


-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.19.0-23-generic (SMP w/8 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150802095509.25243.20830.reportbug@sid2



Bug#797230: ekg2: FTBFS: Can't exec "automake-1.14": No such file or directory at /usr/share/autoconf/Autom4te/FileUtils.pm

2015-08-28 Thread Chris West (Faux)
Source: ekg2
Version: 1:0.4~pre+20120506.1-9
Severity: serious
Justification: fails to build from source
Tags: sid stretch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-CC: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

The package fails to build:

libtoolize: copying file `m4/lt~obsolete.m4'
Can't exec "automake-1.14": No such file or directory at 
/usr/share/autoconf/Autom4te/FileUtils.pm line 326,  line 6.
autoreconf: failed to run automake-1.14: No such file or directory
dh_autoreconf: autoreconf -f -i returned exit code 1

Full build log:
https://reproducible.debian.net/rb-pkg/unstable/amd64/ekg2.html

-- System Information:
Debian Release: stretch/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.19.0-23-generic (SMP w/8 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)



Bug#797242: freewnn: FTBFS: Bad format near line 1 "Binaryfilefull.fsrcmatches".

2015-08-28 Thread Chris West (Faux)
Source: freewnn
Version: 1.1.1~a021+cvs20130302-4
Severity: serious
Justification: fails to build from source
Tags: sid stretch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-CC: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

The package fails to build in a UTF-8 locale(?).  I'm using en_GB.UTF-8,
I also tested en_US.UTF-8 and the Reproducible Builds builder has tried
fr_CH.UTF-8.  "serious" as I believe the (vast) majority of people will
be using a UTF-8 locale.

"Binary file full.fsrc matches." looks like grep output for an
unrecognised-encoding file.

I believe the bad encoding here is actually present in the build log
(e.g. they're unrepresentable-utf-8-characters):

Entries with same yomi(���夯), kanji(), hinsi(ư��()) are merged.
28331 words are in this dictionary
kanji = 515928
cat koyuu.hd koyuu.u | ../../Wnn/jutil/atod -p Version -P Version -h 
../../Wnn/jd/hinsi.data koyuu.dic
303 words are in this dictionary
kanji = 6648

...

rm -f fzk.master-.c
ln -s fzk.master fzk.master-.c
gcc -E -traditional-cpp -DKANSAI fzk.master-.c > full.fsrc
egrep -v '^(# |#line |#pragma |$)' full.fsrc | ../../Wnn/jutil/atof -h 
../../Wnn/jd/hinsi.data full.fzk
Bad format near line 1 "Binaryfilefull.fsrcmatches".
File must start with \attribute
Makefile:356: recipe for target 'full.fzk' failed
make[3]: *** [full.fzk] Error 1


Full build log:
https://reproducible.debian.net/rb-pkg/unstable/amd64/freewnn.html

-- System Information:
Debian Release: stretch/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)



Bug#806487: syslinux: FTBFS: ldlinux.raw: write error

2015-11-27 Thread Chris West (Faux)
Source: syslinux
Version: 3:6.03+dfsg-11
Severity: serious
Justification: fails to build from source
Tags: sid 
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-CC: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

The package fails to build, both on my builder and on the Reproducible
Builds jenkins.  The error is non-sensical to me; looks like random
failure but happens consistently:

...
ranlib liblpxelinux.a
nasm -f elf -Ox  -g -F dwarf -DDATE_STR="'20151108'" \
-DHEXDATE="0x5658b585" \
-Di386 \
-I/syslinux-6.03+dfsg/core/ \
-l ldlinux.lsr -o ldlinux.o -MP -MD ./.ldlinux.o.d 
/syslinux-6.03+dfsg/core/ldlinux.asm
ld -m elf_i386  -Bsymbolic -pie -E --hash-style=gnu -T 
/syslinux-6.03+dfsg/core/i386/syslinux.ld -M -o ldlinux.elf ldlinux.o \
--start-group libcom32.a --whole-archive 
/syslinux-6.03+dfsg/bios/com32/lib/libcom32core.a libldlinux.a --end-group \
> ldlinux.map
objdump -h ldlinux.elf > ldlinux.sec
perl /syslinux-6.03+dfsg/core/lstadjust.pl ldlinux.lsr ldlinux.sec ldlinux.lst
objcopy -O binary -S ldlinux.elf ldlinux.raw
/syslinux-6.03+dfsg/bios/core/../lzo/prepcore ldlinux.raw ldlinux.bin
/syslinux-6.03+dfsg/bios/core/../lzo/prepcore: ldlinux.raw: write error
/syslinux-6.03+dfsg/core/Makefile:153: recipe for target 'ldlinux.bin' failed
make[5]: *** [ldlinux.bin] Error 1
rm ldlinux.o ldlinux.raw
make[5]: Leaving directory '/syslinux-6.03+dfsg/bios/core'
/syslinux-6.03+dfsg/Makefile:285: recipe for target 'core' failed
make[4]: *** [core] Error 2
make[4]: Leaving directory '/syslinux-6.03+dfsg/bios'
/syslinux-6.03+dfsg/Makefile:254: recipe for target 'bios' failed

Full build log:
https://reproducible.debian.net/rb-pkg/unstable/amd64/syslinux.html

-- System Information:
Debian Release: stretch/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)



Bug#808493: kinput2: FTBFS: cconv.c:793:15: error: conflicting types for ‘getline’

2015-12-20 Thread Chris West (Faux)
Source: kinput2
Version: 3.1-12
Severity: serious
Justification: fails to build from source
Tags: sid 
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-CC: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

The package fails to build:

rm -f cconv.o
gcc -c -g -O2 -fno-strict-aliasing-I../include -Iimlib -I/usr/include/wnn   
 -Dlinux -D__amd64__ -D_POSIX_C_SOURCE=199309L  
-D_POSIX_SOURCE -D_XOPEN_SOURCE -D_BSD_SOURCE 
-D_SVID_SOURCE -D_LARGEFILE_SOURCE 
-D_FILE_OFFSET_BITS=64  
 -DFUNCPROTO=15 -DNARROWPROTO   -DCCDEFPATH=\"/etc/kinput2/\"   
  -DWNN6 -DLIBDIR=\"/usr/share/wnn\" cconv.c
In file included from /usr/include/stdio.h:27:0,
 from cconv.c:606:
/usr/include/features.h:148:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE 
are deprecated, use _DEFAULT_SOURCE" [-Wcpp]
 # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE"
   ^
cconv.c:793:15: error: conflicting types for ‘getline’
 static uchar *getline(uchar *, int, Files *, void (*)());
   ^
In file included from cconv.c:606:0:
/usr/include/stdio.h:678:20: note: previous declaration of ‘getline’ was here
 extern _IO_ssize_t getline (char **__restrict __lineptr,
^
cconv.c: In function ‘registMode’:
cconv.c:619:34: warning: implicit declaration of function ‘free’ 
[-Wimplicit-function-declaration]
 #define Free(p)   { if (p) (void)free((char *)(p)); }
  ^
cconv.c:1210:4: note: in expansion of macro ‘Free’
Free(modes);
^
cconv.c:619:34: warning: incompatible implicit declaration of built-in function 
‘free’
 #define Free(p)   { if (p) (void)free((char *)(p)); }
  ^
cconv.c:1210:4: note: in expansion of macro ‘Free’
Free(modes);
^
cconv.c:619:34: note: include ‘’ or provide a declaration of ‘free’
 #define Free(p)   { if (p) (void)free((char *)(p)); }
  ^
cconv.c:1210:4: note: in expansion of macro ‘Free’
Free(modes);
^

...

Makefile:1124: recipe for target 'cconv.o' failed
make[2]: *** [cconv.o] Error 1
make[2]: Leaving directory '/kinput2-3.1/lib'
Makefile:1099: recipe for target 'all' failed
make[1]: *** [all] Error 2
make[1]: Leaving directory '/kinput2-3.1'

Full build log:
https://reproducible.debian.net/rb-pkg/unstable/amd64/kinput2.html

-- System Information:
Debian Release: stretch/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)



Bug#808528: pidgin-twitter: FTBFS: error: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Werror=cpp]

2015-12-20 Thread Chris West (Faux)
Source: pidgin-twitter
Version: 0.9.2.1-5
Severity: serious
Justification: fails to build from source
Tags: sid 
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-CC: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

The package fails to build:

make[1]: Entering directory '/pidgin-twitter-0.9.2.1'
CFLAGS="-g -O2 -fstack-protector-strong -Wformat -Werror=format-security" 
CPPFLAGS="-D_FORTIFY_SOURCE=2" CXXFLAGS="-g -O2 -fstack-protector-strong 
-Wformat -Werror=format-security" FCFLAGS="-g -O2 -fstack-protector-strong" 
FFLAGS="-g -O2 -fstack-protector-strong" GCJFLAGS="-g -O2 
-fstack-protector-strong" LDFLAGS="-Wl,-z,relro" OBJCFLAGS="-g -O2 
-fstack-protector-strong -Wformat -Werror=format-security" OBJCXXFLAGS="-g -O2 
-fstack-protector-strong -Wformat -Werror=format-security"  /usr/bin/make
make[2]: Entering directory '/pidgin-twitter-0.9.2.1'
cc -MM main.c util.c prefs.c icon.c twitter_api.c > .deps
main.c:1440:24: error: missing binary operator before token "("
 #if !GLIB_CHECK_VERSION(2, 35, 0)
^
cc -o main.o main.c -c -g -O2 -fstack-protector-strong -Wformat 
-Werror=format-security -fPIC -shared -Wall -Werror -g -pthread 
-I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include 
-I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 
-I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 
-I/usr/include/libpng12 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng12 
-I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 
-I/usr/include/freetype2 -I/usr/include/glib-2.0 
-I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pidgin 
-I/usr/include/libpurple -I/usr/include/glib-2.0 
-I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/libxml2 
-DDATADIR=\"/usr/share\" -D_FORTIFY_SOURCE=2
In file included from /usr/include/stdio.h:27:0,
 from pidgin-twitter.h:6,
 from main.c:21:
/usr/include/features.h:148:3: error: #warning "_BSD_SOURCE and _SVID_SOURCE 
are deprecated, use _DEFAULT_SOURCE" [-Werror=cpp]
 # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE"
   ^
cc1: all warnings being treated as errors
Makefile:26: recipe for target 'main.o' failed
make[2]: *** [main.o] Error 1

Full build log:
https://reproducible.debian.net/rb-pkg/unstable/amd64/pidgin-twitter.html

-- System Information:
Debian Release: stretch/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)



Bug#808678: pdfrw: FTBFS: ImportError: No module named static_pdfs

2015-12-21 Thread Chris West (Faux)
Source: pdfrw
Version: 0.2-1
Severity: serious
Justification: fails to build from source
Tags: sid stretch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-CC: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

The package fails to build:

   dh_auto_test -O--buildsystem=pybuild
I: pybuild base:184: cd /pdfrw-0.2/.pybuild/pythonX.Y_2.7/build; python2.7 -m 
unittest discover -v 
tests.test_examples (unittest.loader.ModuleImportFailure) ... ERROR
test_doubleslash (tests.test_pdfstring.TestEncoding) ... ok
tests.test_roundtrip (unittest.loader.ModuleImportFailure) ... ERROR

==
ERROR: tests.test_examples (unittest.loader.ModuleImportFailure)
--
ImportError: Failed to import test module: tests.test_examples
Traceback (most recent call last):
  File "/usr/lib/python2.7/unittest/loader.py", line 254, in _find_tests
module = self._get_module_from_name(name)
  File "/usr/lib/python2.7/unittest/loader.py", line 232, in 
_get_module_from_name
__import__(name)
  File "tests/test_examples.py", line 34, in 
import static_pdfs
ImportError: No module named static_pdfs


==
ERROR: tests.test_roundtrip (unittest.loader.ModuleImportFailure)
--
ImportError: Failed to import test module: tests.test_roundtrip
Traceback (most recent call last):
  File "/usr/lib/python2.7/unittest/loader.py", line 254, in _find_tests
module = self._get_module_from_name(name)
  File "/usr/lib/python2.7/unittest/loader.py", line 232, in 
_get_module_from_name
__import__(name)
  File "tests/test_roundtrip.py", line 33, in 
import static_pdfs
ImportError: No module named static_pdfs


--
Ran 3 tests in 0.000s

FAILED (errors=2)
E: pybuild pybuild:274: test: plugin distutils failed with: exit code=1: cd 
/pdfrw-0.2/.pybuild/pythonX.Y_2.7/build; python2.7 -m unittest discover -v 
dh_auto_test: pybuild --test -i python{version} -p 2.7 --dir . returned exit 
code 13
debian/rules:6: recipe for target 'build' failed
make: *** [build] Error 25
dpkg-buildpackage: error: debian/rules build gave error exit status 2

Full build log:
https://reproducible.debian.net/rb-pkg/unstable/amd64/pdfrw.html

-- System Information:
Debian Release: stretch/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)



Bug#810133: proll: FTBFS: Build-Depends-Indep: sparc-utils which is in nothing newer than oldstable

2016-01-06 Thread Chris West (Faux)
Source: proll
Version: 18-6
Severity: serious
Justification: fails to build from source
Tags: sid stretch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-CC: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

The package fails to build as sparc-utils is gone:

The following packages have unmet dependencies:
 pbuilder-satisfydepends-dummy : Depends: sparc-utils which is a virtual 
package and is not provided by any available package.



sparc-utils was removed from testing 2014-04-27 and hasn't had any
uploads since 2007.

Full build log:
https://reproducible.debian.net/rb-pkg/unstable/amd64/proll.html

-- System Information:
Debian Release: stretch/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)