Bug#880723: FTBFS: Build-Depends on removed package libgd2-xpm-dev

2017-11-04 Thread Andreas Moog
Source: brial
Severity: serious
Justification: fails to build from source (but built successfully in the past)

Hello there,

brial FTBFS in current sid due to libgd2-xpm-dev having been removed from the 
libgd2 package:

Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 sbuild-build-depends-brial-dummy : Depends: libgd2-xpm-dev but it is not 
installable
E: Unable to correct problems, you have held broken packages.
apt-get failed.
E: Package installation failed

Kind regards,

  Andreas Moog

-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (650, 'unstable'), (500, 'unstable-debug'), (450, 
'experimental'), (350, 'testing'), (1, 'experimental-debug')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers


Bug#853338: bossa: Patch for the build failure

2017-09-30 Thread Andreas Moog
Control: tags 853338 + patch

Dear maintainer,

This particular build failure has an easy fix available in Upstream's git 
repository, 
https://github.com/shumatech/BOSSA/commit/3ace00ee9a5a1372c321f4b97b941eb7c040ef80

I've prepared a minimal NMU and will be looking for a sponsor.

You might want to consider updating to a more recent release though, version 
1.8 has been released in May this year.

Kind regards,
   Andreas

-- 
PGP-encrypted mails preferred
PGP Fingerprint: 74CD D9FE 5BCB FE0D 13EE 8EEA 61F3 4426 74DE 6624
diff -Nru bossa-1.3~20120408/debian/changelog bossa-1.3~20120408/debian/changelog
--- bossa-1.3~20120408/debian/changelog	2014-06-16 03:12:37.0 +0200
+++ bossa-1.3~20120408/debian/changelog	2017-09-30 12:42:31.0 +0200
@@ -1,3 +1,10 @@
+bossa (1.3~20120408-5.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Apply patch from upstream git to fix FTBFS with GCC7 (Closes: #853338)
+
+ -- Andreas Moog   Sat, 30 Sep 2017 12:42:31 +0200
+
 bossa (1.3~20120408-5) unstable; urgency=low
 
   [ Olly Betts ]
diff -Nru bossa-1.3~20120408/debian/patches/fix-FTBFS-GCC7.patch bossa-1.3~20120408/debian/patches/fix-FTBFS-GCC7.patch
--- bossa-1.3~20120408/debian/patches/fix-FTBFS-GCC7.patch	1970-01-01 01:00:00.0 +0100
+++ bossa-1.3~20120408/debian/patches/fix-FTBFS-GCC7.patch	2017-09-30 12:42:31.0 +0200
@@ -0,0 +1,27 @@
+Description: Compare the data, not the pointer.
+Author: Scott Shumate 
+Bug: https://github.com/shumatech/BOSSA/issues/37
+Bug-Debian: https://bugs.debian.org/853338
+Origin: upstream, https://github.com/shumatech/BOSSA/commit/3ace00ee9a5a1372c321f4b97b941eb7c040ef80.patch
+Last-Update: 2017-09-30
+
+--- bossa-1.3~20120408.orig/src/Command.cpp
 bossa-1.3~20120408/src/Command.cpp
+@@ -707,7 +707,7 @@ CommandMwb::invoke(char* argv[], int arg
+ char* input = readline("? ");
+ if (!input)
+ return;
+-if (input == '\0' ||
++if (*input == '\0' ||
+ !argUint32(input, &value))
+ {
+ free(input);
+@@ -810,7 +810,7 @@ CommandMww::invoke(char* argv[], int arg
+ char* input = readline("? ");
+ if (!input)
+ return;
+-if (input == '\0' ||
++if (*input == '\0' ||
+ !argUint32(input, &value))
+ {
+ free(input);
diff -Nru bossa-1.3~20120408/debian/patches/series bossa-1.3~20120408/debian/patches/series
--- bossa-1.3~20120408/debian/patches/series	2014-06-16 02:51:34.0 +0200
+++ bossa-1.3~20120408/debian/patches/series	2017-09-30 12:42:31.0 +0200
@@ -7,3 +7,4 @@
 add-kfreebsd-platform-support.patch
 no_X11_link.patch
 wx3.0-compat.patch
+fix-FTBFS-GCC7.patch


signature.asc
Description: PGP signature
-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers

Bug#876870: apertium-en-es: Patch for the FTBFS

2017-09-29 Thread Andreas Moog
Control: tags 876870 + patch

Dear maintainer,

a patch for this failure is available in upstream's svn repository:
https://sourceforge.net/p/apertium/svn/64863/tree//trunk/apertium-en-es/Makefile.am?diff=51af421534309d755140f9cf:64862

I've attached a proposed NMU to fix this build failure, but you might want to 
update to a more recent SVN commit instead of just cherry-picking.

Regards,

  Andreas Moog

-- 
PGP-encrypted mails preferred
PGP Fingerprint: 74CD D9FE 5BCB FE0D 13EE 8EEA 61F3 4426 74DE 6624
diff -Nru apertium-en-es-0.8.0~r57502/debian/changelog apertium-en-es-0.8.0~r57502/debian/changelog
--- apertium-en-es-0.8.0~r57502/debian/changelog	2016-07-10 07:45:54.0 +0200
+++ apertium-en-es-0.8.0~r57502/debian/changelog	2017-09-29 20:16:28.0 +0200
@@ -1,3 +1,10 @@
+apertium-en-es (0.8.0~r57502-2.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Apply patch from upstream SVN to fix FTBFS in test suite (Closes: #876870)
+
+ -- Andreas Moog   Fri, 29 Sep 2017 20:16:28 +0200
+
 apertium-en-es (0.8.0~r57502-2) unstable; urgency=low
 
   [ Tino Didriksen ]
diff -Nru apertium-en-es-0.8.0~r57502/debian/patches/0001-fix-FTBFS-test-failure.patch apertium-en-es-0.8.0~r57502/debian/patches/0001-fix-FTBFS-test-failure.patch
--- apertium-en-es-0.8.0~r57502/debian/patches/0001-fix-FTBFS-test-failure.patch	1970-01-01 01:00:00.0 +0100
+++ apertium-en-es-0.8.0~r57502/debian/patches/0001-fix-FTBFS-test-failure.patch	2017-09-29 20:16:16.0 +0200
@@ -0,0 +1,19 @@
+Description: Fix FTBFS due to error in testsuite
+Origin: upstream, https://sourceforge.net/p/apertium/svn/64863/tree//trunk/apertium-en-es/Makefile.am?diff=51af421534309d755140f9cf:64862
+Bug-Debian: https://bugs.debian.org/876870
+Forwarded: not-needed
+Last-Update: 2017-09-29
+
+--- apertium-en-es-0.8.0~r57502.orig/Makefile.am
 apertium-en-es-0.8.0~r57502/Makefile.am
+@@ -198,8 +198,8 @@ clean-local:
+ ###
+ 
+ test: all
+-	echo  "Fue un malentendido."  | apertium -d . es-en | tee .test-mt
+-	@echo "It was a misunderstanding." > .test-ref
++	echo  "Un malentendido."  | apertium -d . es-en | tee .test-mt
++	@echo "A misunderstanding." > .test-ref
+ 	@diff .test-ref .test-mt
+ 	echo "Three sad tigers" | apertium -d . en-es | tee .test-mt
+ 	@echo "Tres tigres tristes" > .test-ref
diff -Nru apertium-en-es-0.8.0~r57502/debian/patches/series apertium-en-es-0.8.0~r57502/debian/patches/series
--- apertium-en-es-0.8.0~r57502/debian/patches/series	1970-01-01 01:00:00.0 +0100
+++ apertium-en-es-0.8.0~r57502/debian/patches/series	2017-09-29 20:14:33.0 +0200
@@ -0,0 +1 @@
+0001-fix-FTBFS-test-failure.patch


signature.asc
Description: PGP signature
-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers

Bug#738735: linop: FTBFS: dh_sphinxdoc: Sphinx documentation not found

2014-03-10 Thread Andreas Moog
On Sun, Mar 09, 2014 at 01:39:00PM +, Ghislain Vaillant wrote:
> Could you provide the detailed steps to reproduce this bug. I have
> only tested the build locally on my machine via pbuilder prior to
> submitting the package and it went fine.

If you look at https://buildd.debian.org/status/package.php?p=linop you will
see that your package fails on every Debian autobuilder. The reason that it
fails there, but not in your local pbuilder is that with pbuilder, you build
architecture-dependent packages as well as architecture-independent (arch:all) 
ones but the autobuilders only build the arch-dependent parts.

You can reproduce this locally if you use (for example)

dpkg-buildpackage -B

or if you call pbuilder with the --binary-arch option.

Cheers,

 Andreas



signature.asc
Description: Digital signature
-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers

Bug#738212: gnuplot: FTBFS: Missing Build-Depend on texlive-fonts-recommended

2014-02-08 Thread Andreas Moog
Package: gnuplot
Version: 4.6.4-1
Severity: serious

Hi there,

Your package gnuplot fails to build in current unstable on amd64.

(Hopefully) Relevant part of the log: 
--

(/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty

kpathsea: Running mktextfm ecrm1000
/usr/share/texlive/texmf-dist/web2c/mktexnam: Could not map source abbreviation 
 for ecrm1000.
/usr/share/texlive/texmf-dist/web2c/mktexnam: Need to update ?
mkdir: cannot create directory '././sbuild-nonexistent': Permission denied
mktextfm: Running mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; 
input ecrm1000
This is METAFONT, Version 2.718281 (TeX Live 2013/Debian)

kpathsea: Running mktexmf ecrm1000

! I can't find file `ecrm1000'.
<*> ...ljfour; mag:=1; nonstopmode; input ecrm1000
  
Please type another input file name
! Emergency stop.
<*> ...ljfour; mag:=1; nonstopmode; input ecrm1000
  
Transcript written on mfput.log.
grep: ecrm1000.log: No such file or directory
mktextfm: `mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; input 
ecrm1000' failed to make ecrm1000.tfm.
kpathsea: Appending font creation commands to missfont.log.
(/usr/share/texlive/texmf-dist/tex/latex/base/t1enc.def)
! Font T1/cmr/m/n/10=ecrm1000 at 10.0pt not loadable: Metric (TFM) file not fou
nd.
 
   relax 
l.100 \fontencoding\encodingdefault\selectfont
  
? 
! Emergency stop.
 
   relax 
l.100 \fontencoding\encodingdefault\selectfont
  
No pages of output.
Transcript written on ps_fontfile_doc.log.
make[2]: *** [ps_fontfile_doc.ps] Error 1
make[2]: Leaving directory `/«PKGBUILDDIR»/docs/psdoc'
dh_auto_build: make -j1 -C docs/psdoc ps_fontfile_doc.ps returned exit code 2
make[1]: *** [override_dh_auto_build-indep] Error 2
make[1]: Leaving directory `/«PKGBUILDDIR»'
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2

Build finished at 20140208-1653

Finished


E: Build failure (dpkg-buildpackage died)

A full buildlog is available at 
http://www.warperbbs.de/stuff/buildlogs/gnuplot_4.6.4-1_amd64.build

The reason for this build failure seems to be a missing Build-Depend on 
texlive-fonts-recommended.

Thanks for your time!

Regards,
  Andreas

-- 
PGP-encrypted mails preferred
PGP Fingerprint: 74CD D9FE 5BCB FE0D 13EE 8EEA 61F3 4426 74DE 6624


signature.asc
Description: Digital signature
-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers