Bug#891290: ardour: please make the build reproducible

2018-02-24 Thread Chris Lamb
Source: ardour
Version: 1:5.12.0-2
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: buildpath
X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org

Hi,

Whilst working on the Reproducible Builds effort [0], we noticed
that ardour could not be built reproducibly.

This is because it embeds CFLAGS and CXXFLAGS in the resulting
binary. Proof of concept patch attached.

 [0] https://reproducible-builds.org/


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
diff --git a/wscript b/wscript
index 4b5acb0..633fca1 100644
--- a/wscript
+++ b/wscript
@@ -1305,8 +1305,9 @@ const char* const ardour_config_info = "\\n\\
 write_config_text('Mac i386 Architecture', opts.generic)
 write_config_text('Mac ppc Architecture',  opts.ppc)
 config_text.write("\\n\\\n")
-write_config_text('C compiler flags',  conf.env['CFLAGS'])
-write_config_text('C++ compiler flags',conf.env['CXXFLAGS'])
+if 'SOURCE_DATE_EPOCH' in os.environ:
+write_config_text('C compiler flags',  conf.env['CFLAGS'])
+write_config_text('C++ compiler flags',conf.env['CXXFLAGS'])
 write_config_text('Linker flags',  conf.env['LINKFLAGS'])
 
 config_text.write ('";\n}\n')
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Comments regarding iem-plugin-suite_1.0.1-2_amd64.changes

2018-01-04 Thread Chris Lamb
Hi, please clarify:

  3 
^

.. in debian/copyright on your next upload. It's not clear this is
copyrightable, whether this is a missing attribution, etc. etc. (Please add to
the copyright file for posterity and our downstreams..)

-lamby



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


Bug#886105: klystrack: please make the build reproducible with respect to timestamps

2018-01-02 Thread Chris Lamb
Source: klystrack
Version: 0.20171212-1
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: timestamps
X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org

Hi,

Whilst working on the Reproducible Builds effort [0], we noticed
that klystrack could not be built reproducibly.

Patch attached, although the resource files are still not reproducible
as they iterate over the filesystem in a non-determistic order. This
will require a match to makebundle.c.

 [0] https://reproducible-builds.org/


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
--- a/debian/patches/reproducible-build.patch   1970-01-01 01:00:00.0 
+0100
--- b/debian/patches/reproducible-build.patch   2018-01-02 10:18:43.133544155 
+
@@ -0,0 +1,58 @@
+Description: Make the build reproducible
+Author: Chris Lamb <la...@debian.org>
+Last-Update: 2018-01-02
+
+--- klystrack-0.20171212.orig/klystron/Makefile
 klystrack-0.20171212/klystron/Makefile
+@@ -28,6 +28,13 @@ lib_OBJ = $(patsubst %.c, objs.$(CFG)/li
+ CC = gcc -shared -std=gnu99 --no-strict-aliasing
+ CDEP = gcc -E -std=gnu99
+ 
++DATE_FMT = %Y%m%d
++ifdef SOURCE_DATE_EPOCH
++  KLYSTRON_REVISION ?= $(shell date -u -d "@$(SOURCE_DATE_EPOCH)" 
"+$(DATE_FMT)"  2>/dev/null || date -u -r "$(SOURCE_DATE_EPOCH)" "+$(DATE_FMT)" 
2>/dev/null || date -u "+$(DATE_FMT)")
++else
++  KLYSTRON_REVISION ?= $(shell date "+$(DATE_FMT)")
++endif
++
+ ifndef CFLAGS
+ CFLAGS = $(MACHINE) -ftree-vectorize
+ endif
+@@ -73,9 +80,7 @@ LDFLAGS =
+ build: Makefile
+   @echo '#ifndef KLYSTRON_VERSION_H' > ./src/version.h
+   @echo '#define KLYSTRON_VERSION_H' >> ./src/version.h
+-  @echo -n '#define KLYSTRON_REVISION "' >> ./src/version.h
+-  @date +"%Y%m%d" | tr -d '\n' >> ./src/version.h
+-  @echo '"' >> ./src/version.h
++  @echo '#define KLYSTRON_REVISION "$(KLYSTRON_REVISION)"' >> 
./src/version.h
+   @echo '#define KLYSTRON_VERSION_STRING "klystron " KLYSTRON_REVISION' 
>> ./src/version.h
+   @echo '#endif' >> ./src/version.h
+   make all CFG=$(CFG)
+--- klystrack-0.20171212.orig/klystrack/Makefile
 klystrack-0.20171212/klystrack/Makefile
+@@ -21,6 +21,13 @@ REV := cp -f
+ 
+ CFLAGS := $(MACHINE) -ftree-vectorize -std=gnu99 --no-strict-aliasing
+ 
++DATE_FMT = %Y%m%d
++ifdef SOURCE_DATE_EPOCH
++  REVISION ?= $(shell date -u -d "@$(SOURCE_DATE_EPOCH)" "+$(DATE_FMT)"  
2>/dev/null || date -u -r "$(SOURCE_DATE_EPOCH)" "+$(DATE_FMT)" 2>/dev/null || 
date -u "+$(DATE_FMT)")
++else
++  REVISION ?= $(shell date "+$(DATE_FMT)")
++endif
++
+ ifdef COMSPEC
+   TARGET := $(TARGET).exe
+   ARCHIVE := $(ARCHIVE).zip
+@@ -133,9 +140,7 @@ src/version.h: src/version
+   @echo '#ifndef VERSION_H' > ./src/version.h
+   @echo '#define VERSION_H' >> ./src/version.h
+   @echo '#include "version_number.h"' >> ./src/version.h
+-  @echo -n '#define REVISION "' >> ./src/version.h
+-  @date +"%Y%m%d" | tr -d '\n' >> ./src/version.h
+-  @echo '"' >> ./src/version.h
++  @echo '#define REVISION "$(REVISION)"' >> ./src/version.h
+   @echo '#define VERSION_STRING "klystrack " VERSION " " REVISION' >> 
./src/version.h
+   @echo '#endif' >> ./src/version.h
+   
--- a/debian/patches/series 1970-01-01 01:00:00.0 +0100
--- b/debian/patches/series 2018-01-02 09:50:15.745957164 +
@@ -0,0 +1 @@
+reproducible-build.patch
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Re: yoshimi_1.5.6-1_amd64.changes REJECTED

2017-12-22 Thread Chris Lamb
Hi Jaromír,

> ​​yoshimi 1.5.6-2 has been uploaded kindly by Mattia to NEW.

ACCEPTed - thanks!

> Apologize for previous spamming you.

You weren't spamming me, don't worry :)


Best wishes,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

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

Re: yoshimi_1.5.6-1_amd64.changes REJECTED

2017-12-20 Thread Chris Lamb
Hi Jaromír et al.,

> […]

Please drop me from CC whilst you work this out. However, do feel free
to ping me once you have reuploaded :)


Best wishes,

-- 
  ,''`.
 : :'  :     Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

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

Re: yoshimi_1.5.6-1_amd64.changes REJECTED

2017-12-20 Thread Chris Lamb
Hi Jaromír Mikeš,

> ​What is a reason for rejecting this upload?

Oh dear, the note got lost. Sorry about that. :/  Um, I thiiink it was to
do with missing some attributions (eg. for Nikita / Jesper Lloyd / Christian
Schoenebeck, etc. etc.)

... but I think there was something else too. (There was another note from
a FTP trainee).

Please fix the above (and other missing references), re-upload and let me
know. :)  Sorry again...


Best wishes,

-- 
  ,''`.
 : :'  :     Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

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

yoshimi_1.5.6-1_amd64.changes REJECTED

2017-12-19 Thread Chris Lamb





===

Please feel free to respond to this email if you don't understand why
your files were rejected, or if you upload new files which address our
concerns.


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


Bug#884402: sonic-pi: please make the documentation build reproducible

2017-12-14 Thread Chris Lamb
forwarded 884402 https://github.com/samaaron/sonic-pi/pull/1778
thanks

I've forwarded this upstream here:

  https://github.com/samaaron/sonic-pi/pull/1778


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

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


Bug#884402: sonic-pi: please make the documentation build reproducible

2017-12-14 Thread Chris Lamb
Source: sonic-pi
Version: 2.10.0~repack-2
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: hashordering
X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org

Hi,

Whilst working on the Reproducible Builds effort [0], we noticed
that sonic-pi could not be built reproducibly.

This is because it iterates over internal data structures (hashes)
in a non-deterministic order. It also sorts a list only concerned
about the length of the fields, rather than (also) considering the
alphanumeric sort, leading to nondeterminstic output.

Patch attached.


 [0] https://reproducible-builds.org/


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
--- a/debian/patches/08-reproducible-build.patch1970-01-01 
01:00:00.0 +0100
--- b/debian/patches/08-reproducible-build.patch2017-12-14 
20:19:58.810609009 +
@@ -0,0 +1,33 @@
+Description: Make the build reproducible
+Author: Chris Lamb <la...@debian.org>
+Last-Update: 2017-12-14
+
+--- sonic-pi-2.10.0~repack.orig/app/server/bin/qt-doc.rb
 sonic-pi-2.10.0~repack/app/server/bin/qt-doc.rb
+@@ -173,7 +173,7 @@ make_tutorial = lambda do |lang|
+ tutorial_html_map[name] = html
+   end
+ 
+-  make_tab.call("tutorial", tutorial_html_map, false, false, false, true, 
true, lang)
++  make_tab.call("tutorial", tutorial_html_map, false, true, false, true, 
true, lang)
+ end
+ 
+ 
+@@ -212,7 +212,7 @@ languages = Dir.
+   select {|f| File.directory? f}.
+   map {|f| File.basename f}.
+   select {|n| n != "en"}.
+-  sort_by {|n| -n.length}
++  sort_by {|n| [-n.length, n] }
+ 
+ docs << "\n  QString systemLocale = QLocale::system().name();\n\n" unless 
languages.empty?
+ 
+@@ -228,7 +228,7 @@ docs << "{\n" unless (languages.empty?)
+ make_tutorial.call("en")
+ docs << "}\n" unless (languages.empty?)
+ 
+-make_tab.call("examples", example_html_map, false, false, false, true)
++make_tab.call("examples", example_html_map, false, true, false, true)
+ make_tab.call("synths", SonicPi::Synths::SynthInfo.synth_doc_html_map, 
:titleize, true, true, true)
+ make_tab.call("fx", SonicPi::Synths::SynthInfo.fx_doc_html_map, :titleize, 
true, true, true)
+ make_tab.call("samples", SonicPi::Synths::SynthInfo.samples_doc_html_map, 
false, true, false, true)
--- a/debian/patches/series 2017-12-14 17:10:24.032228403 +
--- b/debian/patches/series 2017-12-14 17:46:52.167610816 +
@@ -5,3 +5,4 @@
 05-doc-base-index.patch
 06-paths.patch
 07-examples-path.patch
+08-reproducible-build.patch
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#884082: jackd2: Source includes "waf" listed in Files-Excluded header

2017-12-11 Thread Chris Lamb
Source: jackd2
Version: 1.9.10+20150825git1ed50c92~dfsg-5
Severity: important
User: la...@debian.org
Usertags: files-excluded

Dear Maintainer,

jackd2 lists "./waf" in the Files-Excluded field in debian/copyright
but the source tree contains this file.

This might be a DFSG violation, or at least the upstream tarball was
not repacked as intended. Alternatively, the field is simply out of
date.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

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


Bug#883847: cantata: Source includes "support/fontawesome-webfont.ttf" listed in Files-Excluded header

2017-12-08 Thread Chris Lamb
Source: cantata
Version: 2.1.0.ds1-1
Severity: serious
User: la...@debian.org
Usertags: files-excluded

Dear Maintainer,

cantata lists "support/fontawesome-webfont.ttf" in the Files-Excluded field
in debian/copyright but the source tree contains this file.

This is probably a DFSG violation, or at least the upstream tarball was
not repacked as intended. Alternatively, the field is simply out of date.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

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


Bug#881872: ardour: please make the build reproducible

2017-11-15 Thread Chris Lamb
Source: ardour
Version: 1:5.12.0-1
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: randomness
X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org

Hi,

Whilst working on the Reproducible Builds effort [0], we noticed
that ardour could not be built reproducibly as it iterates over
a hash in non-deterministic order.

Patch attached.

 [0] https://reproducible-builds.org/


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
diff --git a/tools/fmt-bindings b/tools/fmt-bindings
index d2dd1ad..4940b04 100755
--- a/tools/fmt-bindings
+++ b/tools/fmt-bindings
@@ -309,7 +309,7 @@ while () {
 if ($make_accelmap) {
 print "\n";
 
-foreach $owner (keys %owner_bindings) {
+foreach $owner (sort keys %owner_bindings) {
print " \n  \n";
$bindings = $owner_bindings{$owner};
shift (@$bindings); # remove initial empty element
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#880717: audacity: New upstream release

2017-11-04 Thread Chris Lamb
Source: audacity
Version: 2.1.2-2
Severity: wishlist

Hi,

New upstream 2.2.0 release is available at:

  http://www.audacityteam.org/audacity-2-2-0-released/


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

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


Comments regarding musescore_2.1.0+dfsg1-1_i386.changes

2017-10-26 Thread Chris Lamb
Did you mean to include, for example:

 363 License: Apache-2.0
 364  Copyright [] [name of copyright owner]

in d/copyright? (Same with the BSD-3-clause section)

 -- Chris Lamb <la...@debian.org>  Thu, 26 Oct 2017 08:02:42 +



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


rtmidi_3.0.0~ds1-1_amd64.changes REJECTED

2017-10-08 Thread Chris Lamb

Sun 08 18:46 < umlaeute> i've uploaded the "rtmidi" package to *unstable*, and 
it landed in NEW due to a soname-change induced rename of a binary package it 
provides.
Sun 08 18:46 < umlaeute> however, it should have gone to *experimental* 
instead. could one of the powers-that-be please REJECT it?



===

Please feel free to respond to this email if you don't understand why
your files were rejected, or if you upload new files which address our
concerns.


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


Comments regarding kodi_17.3+dfsg1-3_amd64.changes

2017-10-05 Thread Chris Lamb
Hi,

Missing attribution for Team KODI; please fix on next upload.

 -- Chris Lamb <la...@debian.org>  Thu, 05 Oct 2017 09:33:50 +



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


Bug#828060: libffado: please make the build reproducible

2017-07-22 Thread Chris Lamb
reopen 828060
found 828060 2.3.0-2
thanks

Hi,

Unfortunately, I think you applied the patch incorrectly so libffado
is not yet reproducible.

By adding the hunk call to the binary-install/ffado-tools:: target,
the filename is never matched as it does not exist under debian/tmp
at this point. The file still remains in the 2.3.0-2 binary packages.

Patch attached that fixes it in binary-install/ffado-tools target.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb, Debian Project Leader
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

--- a/debian/rules  2017-07-22 09:37:46.525012218 +0100
--- b/debian/rules  2017-07-22 09:47:19.637425808 +0100
@@ -84,5 +84,5 @@
dh_python2 -pffado-mixer-qt4
 
 binary-install/ffado-tools::
-   find debian/tmp -type f -name "static_info.txt" -delete
+   find debian/ffado-tools -type f -name "static_info.txt" -delete
dh_python2 -pffado-tools
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#867756: obs-studio: Please remove GPL "click wrapper" on first startup

2017-07-09 Thread Chris Lamb
Source: obs-studio
Version: 19.0.3+dfsg1-1
Severity: wishlist
Tags: patch

Hi,

obs-studio requires you to accept the terms of the GPL when starting
the program for the first time:

  https://i.imgur.com/RzEUuSJ.jpg

This, IMHO, isn't very "Debian".

Patch attached. (If you apply it, you can drop 0001-Use-common-license.patch)


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb, Debian Project Leader
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
diff --git a/UI/obs-app.cpp b/UI/obs-app.cpp
index 01db714..6e4a890 100644
--- a/UI/obs-app.cpp
+++ b/UI/obs-app.cpp
@@ -923,8 +923,7 @@ bool OBSApp::OBSInit()
 {
ProfileScope("OBSApp::OBSInit");
 
-   bool licenseAccepted = config_get_bool(globalConfig, "General",
-   "LicenseAccepted");
+   bool licenseAccepted = true;
OBSLicenseAgreement agreement(nullptr);
 
if (licenseAccepted || agreement.exec() == QDialog::Accepted) {
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#866164: qmidinet: please make the build reproducible

2017-06-27 Thread Chris Lamb
Source: qmidinet
Version: 0.4.2-2
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: timestamps
X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org

Hi,

Whilst working on the Reproducible Builds effort [0], we noticed
that qmidinet could not be built reproducibly.

(Upstream now ships its own manpage, so we might as well use that
one.)

Patch attached.

 [0] https://reproducible-builds.org/


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb, Debian Project Leader
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
--- a/debian/patches/02-reproducible-build.patch1970-01-01 
01:00:00.0 +0100
--- b/debian/patches/02-reproducible-build.patch2017-06-27 
20:51:54.230670623 +0100
@@ -0,0 +1,15 @@
+Description: Make the build reproducible
+Author: Chris Lamb <la...@debian.org>
+Last-Update: 2017-06-27
+
+--- qmidinet-0.4.2.orig/Makefile.in
 qmidinet-0.4.2/Makefile.in
+@@ -51,7 +51,7 @@ install: $(target) $(name).1
+   @$(MAKE) INSTALL_ROOT=$(DESTDIR) -f $(name).mak install
+   @install -d -v -m 0755 $(DESTDIR)$(mandir)/man1
+   @install -v -m 0644 $(name).1 $(DESTDIR)$(mandir)/man1
+-  @gzip -vf $(DESTDIR)$(mandir)/man1/$(name).1
++  @gzip -vnf $(DESTDIR)$(mandir)/man1/$(name).1
+ 
+ uninstall:$(DESTDIR)$(prefix)/bin/$(name)
+   @$(MAKE) INSTALL_ROOT=$(DESTDIR) -f $(name).mak uninstall
--- a/debian/patches/series 2017-06-27 20:48:51.386126412 +0100
--- b/debian/patches/series 2017-06-27 21:00:24.576622872 +0100
@@ -1,3 +1,4 @@
 01-fix_FTBFS.patch
+02-reproducible-build.patch
 03-fix_hardening.patch
 05-qmidinet.patch
--- a/debian/qmidinet.1 2017-06-27 20:48:51.386126412 +0100
--- b/debian/qmidinet.1 1970-01-01 01:00:00.0 +0100
@@ -1,44 +0,0 @@
-.TH QMIDINET "1" "October 2010"
-.SH NAME
-qmidinet \- MIDI Network Gateway via UDP/IP Multicast
-.SH SYNOPSIS
-.B qmidinet
-[\fIoptions\fR]
-.SH DESCRIPTION
-This manual page documents briefly the
-.B qmidinet
-command.
-.PP
-\fBQmidiNet\fP is a MIDI network gateway application that sends and
-receives MIDI data (ALSA Sequencer) over the network, using UDP/IP
-multicast.
-.PP
-It was inspired by multimidicast (http://llg.cubic.org/tools) and
-designed to be compatible with ipMIDI for Windows (http://nerds.de).
-.SH OPTIONS
-.HP
-\fB\-n\fR, \fB\-\-num\-ports\fR=\fI[num\-ports]\fR
-.IP
-Use this number of ports (default=1)
-.HP
-\fB\-i\fR, \fB\-\-interface\fR=\fI[interface]\fR
-.IP
-Use specific network interface (default=all)
-.HP
-\fB\-p\fR, \fB\-\-port\fR=\fI[port]\fR
-.IP
-Use specific network port (default=21928)
-.HP
-\fB\-h\fR, \fB\-\-help\fR
-.IP
-Show help about command line options
-.HP
-\fB\-v\fR, \fB\-\-version\fR
-.IP
-Show version information
-.PP
-.SH AUTHOR
-qmidinet was written by Rui Nuno Capela.
-.PP
-This manual page was written by Alessio Treglia <ales...@debian.org>,
-for the Debian project (but may be used by others).
--- a/debian/qmidinet.manpages  2017-06-27 20:48:51.386126412 +0100
--- b/debian/qmidinet.manpages  1970-01-01 01:00:00.0 +0100
@@ -1 +0,0 @@
-debian/qmidinet.1
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Wheezy update of libquicktime?

2017-06-17 Thread Chris Lamb
Dear maintainer(s),

The Debian LTS team would like to fix the security issues which are
currently open in the Wheezy version of libquicktime:
https://security-tracker.debian.org/tracker/source-package/libquicktime

Would you like to take care of this yourself?

If yes, please follow the workflow we have defined here:
https://wiki.debian.org/LTS/Development

If that workflow is a burden to you, feel free to just prepare an
updated source package and send it to debian-...@lists.debian.org
(via a debdiff, or with an URL pointing to the source package,
or even with a pointer to your packaging repository), and the members
of the LTS team will take care of the rest. Indicate clearly whether you
have tested the updated package or not.

If you don't want to take care of this update, it's not a problem, we
will do our best with your package. Just let us know whether you would
like to review and/or test the updated package before it gets released.

You can also opt-out from receiving future similar emails in your
answer and then the LTS Team will take care of libquicktime updates
for the LTS releases.

Thank you very much.

Chris Lamb,
  on behalf of the Debian LTS team.

PS: A member of the LTS team might start working on this update at
any point in time. You can verify whether someone is registered
on this update in this file:
https://anonscm.debian.org/viewvc/secure-testing/data/dla-needed.txt?view=markup


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

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


Bug#863420: timemachine: segfaults on startup

2017-05-27 Thread Chris Lamb
James Cowgill wrote:

> I tested your fixes, unfortunately timemachine still segfaults on
> startup. This time it occurs in gtk_meterscale_new and it looks like the
> same pointer truncation problem there.

Huh, how did I miss that. Anyway, I've re-uploaded timemachine 0.3.3-2.1 to
DELAYED/5:
  
  timemachine (0.3.3-2.1) unstable; urgency=medium
  
* Non-maintainer upload.
* Fix two segmentation faults in src/gtkmeter.c and gtkmeterscale.c caused
  by passing a truncated pointers using guint instead of a GtkType.
  (Closes: #863420)

The full debdiff is attached.


Regards,

-- 
  ,''`.
 : :'  :     Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
diffstat for timemachine-0.3.3 timemachine-0.3.3

 changelog |9 +
 patches/0002-truncated-pointers.patch |   52 ++
 patches/series|1 
 3 files changed, 62 insertions(+)

diff -Nru timemachine-0.3.3/debian/changelog timemachine-0.3.3/debian/changelog
--- timemachine-0.3.3/debian/changelog  2013-10-06 14:13:24.0 +0100
+++ timemachine-0.3.3/debian/changelog  2017-05-27 09:41:19.0 +0100
@@ -1,3 +1,12 @@
+timemachine (0.3.3-2.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix two segmentation faults in src/gtkmeter.c and gtkmeterscale.c caused
+by passing a truncated pointers using guint instead of a GtkType.
+(Closes: #863420)
+
+ -- Chris Lamb <la...@debian.org>  Sat, 27 May 2017 09:41:19 +0100
+
 timemachine (0.3.3-2) unstable; urgency=low
 
   * Team upload.
diff -Nru timemachine-0.3.3/debian/patches/0002-truncated-pointers.patch 
timemachine-0.3.3/debian/patches/0002-truncated-pointers.patch
--- timemachine-0.3.3/debian/patches/0002-truncated-pointers.patch  
1970-01-01 01:00:00.0 +0100
+++ timemachine-0.3.3/debian/patches/0002-truncated-pointers.patch  
2017-05-27 09:41:19.0 +0100
@@ -0,0 +1,52 @@
+--- timemachine-0.3.3.orig/src/gtkmeter.c
 timemachine-0.3.3/src/gtkmeter.c
+@@ -48,10 +48,10 @@ static float iec_scale(float db);
+ 
+ static GtkWidgetClass *parent_class = NULL;
+ 
+-guint
++GtkType
+ gtk_meter_get_type ()
+ {
+-  static guint meter_type = 0;
++  static GtkType meter_type = 0;
+ 
+   if (!meter_type)
+ {
+--- timemachine-0.3.3.orig/src/gtkmeter.h
 timemachine-0.3.3/src/gtkmeter.h
+@@ -87,7 +87,7 @@ struct _GtkMeterClass
+ GtkWidget* gtk_meter_new(GtkAdjustment *adjustment,
+gint direction);
+ 
+-guint  gtk_meter_get_type   (void);
++GtkTypegtk_meter_get_type   (void);
+ GtkAdjustment* gtk_meter_get_adjustment (GtkMeter *meter);
+ 
+ void   gtk_meter_set_adjustment (GtkMeter *meter,
+--- timemachine-0.3.3.orig/src/gtkmeterscale.c
 timemachine-0.3.3/src/gtkmeterscale.c
+@@ -45,10 +45,10 @@ static void meterscale_draw_notch(GtkMet
+ 
+ static GtkWidgetClass *parent_class = NULL;
+ 
+-guint
++GtkType
+ gtk_meterscale_get_type ()
+ {
+-  static guint meterscale_type = 0;
++  static GtkType meterscale_type = 0;
+ 
+   if (!meterscale_type)
+ {
+--- timemachine-0.3.3.orig/src/gtkmeterscale.h
 timemachine-0.3.3/src/gtkmeterscale.h
+@@ -67,7 +67,7 @@ GtkWidget* gtk_meterscale_new
+gfloat min,
+gfloat max);
+ 
+-guint  gtk_meterscale_get_type  (void);
++GtkTypegtk_meterscale_get_type  (void);
+ 
+ #ifdef __cplusplus
+ }
diff -Nru timemachine-0.3.3/debian/patches/series 
timemachine-0.3.3/debian/patches/series
--- timemachine-0.3.3/debian/patches/series 2013-10-06 14:09:12.0 
+0100
+++ timemachine-0.3.3/debian/patches/series 2017-05-27 09:41:19.0 
+0100
@@ -1 +1,2 @@
 0001-ldflags.patch
+0002-truncated-pointers.patch
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#863420: timemachine: segfaults on startup

2017-05-27 Thread Chris Lamb
tags 863420 + pending patch
thanks

I've uploaded timemachine 0.3.3-2.1 to DELAYED/5:
  
  timemachine (0.3.3-2.1) unstable; urgency=medium
  
* Non-maintainer upload.
* Fix segmentation fault caused by passing a truncated pointer instead of a
  GtkType. (Closes: #863420)

The full debdiff is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
diffstat for timemachine-0.3.3 timemachine-0.3.3

 changelog |8 
 patches/0002-gtkmeter-truncated-pointer.patch |   26 ++
 patches/series|1 +
 3 files changed, 35 insertions(+)

diff -Nru timemachine-0.3.3/debian/changelog timemachine-0.3.3/debian/changelog
--- timemachine-0.3.3/debian/changelog  2013-10-06 14:13:24.0 +0100
+++ timemachine-0.3.3/debian/changelog  2017-05-27 09:41:19.0 +0100
@@ -1,3 +1,11 @@
+timemachine (0.3.3-2.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix segmentation fault caused by passing a truncated pointer instead of a
+GtkType. (Closes: #863420)
+
+ -- Chris Lamb <la...@debian.org>  Sat, 27 May 2017 09:41:19 +0100
+
 timemachine (0.3.3-2) unstable; urgency=low
 
   * Team upload.
diff -Nru 
timemachine-0.3.3/debian/patches/0002-gtkmeter-truncated-pointer.patch 
timemachine-0.3.3/debian/patches/0002-gtkmeter-truncated-pointer.patch
--- timemachine-0.3.3/debian/patches/0002-gtkmeter-truncated-pointer.patch  
1970-01-01 01:00:00.0 +0100
+++ timemachine-0.3.3/debian/patches/0002-gtkmeter-truncated-pointer.patch  
2017-05-27 09:41:19.0 +0100
@@ -0,0 +1,26 @@
+--- timemachine-0.3.3.orig/src/gtkmeter.c
 timemachine-0.3.3/src/gtkmeter.c
+@@ -48,10 +48,10 @@ static float iec_scale(float db);
+ 
+ static GtkWidgetClass *parent_class = NULL;
+ 
+-guint
++GtkType
+ gtk_meter_get_type ()
+ {
+-  static guint meter_type = 0;
++  static GtkType meter_type = 0;
+ 
+   if (!meter_type)
+ {
+--- timemachine-0.3.3.orig/src/gtkmeter.h
 timemachine-0.3.3/src/gtkmeter.h
+@@ -87,7 +87,7 @@ struct _GtkMeterClass
+ GtkWidget* gtk_meter_new(GtkAdjustment *adjustment,
+gint direction);
+ 
+-guint  gtk_meter_get_type   (void);
++GtkTypegtk_meter_get_type   (void);
+ GtkAdjustment* gtk_meter_get_adjustment (GtkMeter *meter);
+ 
+ void   gtk_meter_set_adjustment (GtkMeter *meter,
diff -Nru timemachine-0.3.3/debian/patches/series 
timemachine-0.3.3/debian/patches/series
--- timemachine-0.3.3/debian/patches/series 2013-10-06 14:09:12.0 
+0100
+++ timemachine-0.3.3/debian/patches/series 2017-05-27 09:41:19.0 
+0100
@@ -1 +1,2 @@
 0001-ldflags.patch
+0002-gtkmeter-truncated-pointer.patch
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#863416: jackeq: segmentation fault

2017-05-27 Thread Chris Lamb
tags 863416 + pending patch
thanks

I've uploaded jackeq 0.5.9-2.1 to DELAYED/5:
  
  jackeq (0.5.9-2.1) unstable; urgency=medium
  
* Non-maintainer upload.
* Fix segmentation fault caused by passing a truncated pointer instead of a
  GtkType. (Closes: #863416)

The full debdiff is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
diffstat for jackeq-0.5.9 jackeq-0.5.9

 changelog   |8 
 patches/04-gtkmeter-truncated-pointer.patch |   26 ++
 patches/series  |1 +
 3 files changed, 35 insertions(+)

diff -Nru jackeq-0.5.9/debian/changelog jackeq-0.5.9/debian/changelog
--- jackeq-0.5.9/debian/changelog   2011-02-09 11:33:40.0 +
+++ jackeq-0.5.9/debian/changelog   2017-05-27 09:41:06.0 +0100
@@ -1,3 +1,11 @@
+jackeq (0.5.9-2.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix segmentation fault caused by passing a truncated pointer instead of a
+GtkType. (Closes: #863416)
+
+ -- Chris Lamb <la...@debian.org>  Sat, 27 May 2017 09:41:06 +0100
+
 jackeq (0.5.9-2) unstable; urgency=low
 
   * Upload to unstable.
diff -Nru jackeq-0.5.9/debian/patches/04-gtkmeter-truncated-pointer.patch 
jackeq-0.5.9/debian/patches/04-gtkmeter-truncated-pointer.patch
--- jackeq-0.5.9/debian/patches/04-gtkmeter-truncated-pointer.patch 
1970-01-01 01:00:00.0 +0100
+++ jackeq-0.5.9/debian/patches/04-gtkmeter-truncated-pointer.patch 
2017-05-27 09:41:06.0 +0100
@@ -0,0 +1,26 @@
+--- jackeq-0.5.9.orig/src/gtkmeter.c
 jackeq-0.5.9/src/gtkmeter.c
+@@ -54,10 +54,10 @@ static float iec_scale(float db);
+ 
+ static GtkWidgetClass *parent_class = NULL;
+ 
+-guint
++GtkType
+ gtk_meter_get_type ()
+ {
+-  static guint meter_type = 0;
++  static GtkType meter_type = 0;
+ 
+   if (!meter_type)
+ {
+--- jackeq-0.5.9.orig/src/gtkmeter.h
 jackeq-0.5.9/src/gtkmeter.h
+@@ -104,7 +104,7 @@ GtkWidget* gtk_meter_new
+gfloat min,
+gfloat max);
+ 
+-guint  gtk_meter_get_type   (void);
++GtkTypegtk_meter_get_type   (void);
+ GtkAdjustment* gtk_meter_get_adjustment (GtkMeter *meter);
+ 
+ void   gtk_meter_set_adjustment (GtkMeter *meter,
diff -Nru jackeq-0.5.9/debian/patches/series jackeq-0.5.9/debian/patches/series
--- jackeq-0.5.9/debian/patches/series  2010-11-25 15:46:51.0 +
+++ jackeq-0.5.9/debian/patches/series  2017-05-27 09:41:06.0 +0100
@@ -1,3 +1,4 @@
 01-binutils_gold.patch
 02-l10n.patch
 03-pathmax.patch
+04-gtkmeter-truncated-pointer.patch
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#862676: mp3fs: please make the build reproducible

2017-05-15 Thread Chris Lamb
Source: mp3fs
Version: 0.91-1
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: timestamps
X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org

Hi,

Whilst working on the Reproducible Builds effort [0], we noticed
that mp3fs could not be built reproducibly.

Patch attached.

 [0] https://reproducible-builds.org/


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
--- a/debian/patches/reproducible_build.patch   1970-01-01 01:00:00.0 
+0100
--- b/debian/patches/reproducible_build.patch   2017-05-15 19:06:52.661193324 
+0200
@@ -0,0 +1,15 @@
+Description: Make the build reproducible
+Author: Chris Lamb <la...@debian.org>
+Last-Update: 2017-05-15
+
+--- mp3fs-0.91.orig/Makefile.am
 mp3fs-0.91/Makefile.am
+@@ -8,7 +8,7 @@ EXTRA_DIST = INSTALL.md README.md mp3fs.
+ 
+ mp3fs.1: mp3fs.1.txt
+   $(AM_V_GEN)a2x -a revnumber="$(VERSION)" \
+-  -a revdate="$(shell date +'%B %Y')" -f manpage $<
++  -a revdate="$(shell LC_ALL=C date 
--date=@$${SOURCE_DATE_EPOCH:-$(shell date +%s)} +'%B %Y')" -f manpage $<
+ 
+ # Remove absolutely every generated file
+ .PHONY: squeaky-clean
--- a/debian/patches/series 1970-01-01 01:00:00.0 +0100
--- b/debian/patches/series 2017-05-15 19:06:51.365189454 +0200
@@ -0,0 +1 @@
+reproducible_build.patch
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#861756: pd-pdstring: please make the build reproducible

2017-05-03 Thread Chris Lamb
Source: pd-pdstring
Version: 0.10.2-2
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: environment
X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org

Hi,

Whilst working on the Reproducible Builds effort [0], we noticed
that pd-pdstring could not be built reproducibly as it embeds
the current username.

Patch attached that modifies that patch I previously sent in
#833445.

 [0] https://reproducible-builds.org/


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
--- a/common/m4/ax_pd_external.m4   2017-05-03 17:06:26.820444508 +0100
--- b/common/m4/ax_pd_external.m4   2017-05-03 17:10:13.613304235 +0100
@@ -244,10 +244,11 @@
  ## compiled
  if test -n "$SOURCE_DATE_EPOCH"; then
AC_DEFINE_UNQUOTED(PACKAGE_BUILD_DATE,  "`LC_ALL=C date --utc 
--date="@$SOURCE_DATE_EPOCH"`",   [Date this package was configured])
+   AC_DEFINE_UNQUOTED(PACKAGE_BUILD_USER,  "unknown",[User who configured 
this package])
  else
AC_DEFINE_UNQUOTED(PACKAGE_BUILD_DATE,  "`date`",   [Date this package was 
configured])
+   AC_DEFINE_UNQUOTED(PACKAGE_BUILD_USER,  "$USER",[User who configured 
this package])
  fi
- AC_DEFINE_UNQUOTED(PACKAGE_BUILD_USER,  "$USER",[User who configured this 
package])
  ## /compiled
  ##^^
 
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#860770: qjackctl: please make the build reproducible

2017-04-19 Thread Chris Lamb
Source: qjackctl
Version: 0.4.4-1
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: timestamps
X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org

Hi,

Whilst working on the Reproducible Builds effort [0], we noticed
that qjackctl could not be built reproducibly.

Patch attached.

 [0] https://reproducible-builds.org/


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
--- a/debian/patches/10_reproducible_build.patch1970-01-01 
01:00:00.0 +0100
--- b/debian/patches/10_reproducible_build.patch2017-04-19 
21:53:36.249919428 +0100
@@ -0,0 +1,16 @@
+Description: Make the build reproducible
+Author: Chris Lamb <la...@debian.org>
+Last-Update: 2017-04-19
+
+--- qjackctl-0.4.4.orig/configure.ac
 qjackctl-0.4.4/configure.ac
+@@ -9,6 +9,9 @@ AC_CONFIG_FILES(Makefile qjackctl.spec s
+ AC_CACHE_VAL([ac_cv_build_date],
+[ac_cv_build_date=$(date +"%b %d %Y %H:%M %z")])
+ ac_build_date="$ac_cv_build_date"
++if test -n "$SOURCE_DATE_EPOCH"; then
++  ac_build_date="`LC_ALL=C date --utc --date="@$SOURCE_DATE_EPOCH" +"%b 
%d %Y %H:%M %z"`"
++fi
+ AC_DEFINE_UNQUOTED(CONFIG_BUILD_DATE, ["$ac_build_date"], [Build date and 
time.])
+ 
+ # Build version string.
--- a/debian/patches/series 1970-01-01 01:00:00.0 +0100
--- b/debian/patches/series 2017-04-19 21:53:34.737912684 +0100
@@ -0,0 +1 @@
+10_reproducible_build.patch
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#860213: drumkv1: please make the build reproducible

2017-04-12 Thread Chris Lamb
Source: drumkv1
Version: 0.8.0-2
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: timestamps
X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org

Hi,

Whilst working on the Reproducible Builds effort [0], we noticed
that drumkv1 could not be built reproducibly.

Patch attached.

 [0] https://reproducible-builds.org/


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
diff --git a/configure.ac b/configure.ac
index 791de8d..6a9798f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,6 +9,9 @@ AC_CONFIG_FILES(Makefile drumkv1.spec src/src_core.pri 
src/src_jack.pri src/src_
 AC_CACHE_VAL([ac_cv_build_date],
[ac_cv_build_date=$(date +"%b %d %Y %H:%M %z")])
 ac_build_date="$ac_cv_build_date"
+if test -n "$SOURCE_DATE_EPOCH"; then
+   ac_build_date="`LC_ALL=C date --utc --date=@$SOURCE_DATE_EPOCH +'%b %d %Y 
%H:%M %z`"
+fi
 AC_DEFINE_UNQUOTED(CONFIG_BUILD_DATE, ["$ac_build_date"], [Build date and 
time.])
 
 # Build version string.
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#860211: qtractor: please make the build reproducible

2017-04-12 Thread Chris Lamb
Source: qtractor
Version: 0.8.0-1
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: timestamps
X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org

Hi,

Whilst working on the Reproducible Builds effort [0], we noticed
that qtractor could not be built reproducibly.

Patch attached.

 [0] https://reproducible-builds.org/


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
diff --git a/configure.ac b/configure.ac
index 10d502e..25234b8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10,6 +10,9 @@ AC_CONFIG_FILES(src/qtractor_vst_scan.pri)
 AC_CACHE_VAL([ac_cv_build_date],
[ac_cv_build_date=$(date +"%b %d %Y %H:%M %z")])
 ac_build_date="$ac_cv_build_date"
+if test -n "$SOURCE_DATE_EPOCH"; then
+   ac_build_date="`LC_ALL=C date --utc --date=@$SOURCE_DATE_EPOCH +'%b %d %Y 
%H:%M %z`"
+fi
 AC_DEFINE_UNQUOTED(CONFIG_BUILD_DATE, ["$ac_build_date"], [Build date and 
time.])
 
 # Build version string.
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#860214: synthv1: please make the build reproducible

2017-04-12 Thread Chris Lamb
Source: synthv1
Version: 0.8.0-1
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: timestamps
X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org

Hi,

Whilst working on the Reproducible Builds effort [0], we noticed
that synthv1 could not be built reproducibly.

Patch attached.

 [0] https://reproducible-builds.org/


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
--- a/debian/patches/0005-reproducible_build.patch  1970-01-01 
01:00:00.0 +0100
--- b/debian/patches/0005-reproducible_build.patch  2017-04-12 
22:00:23.018229687 +0100
@@ -0,0 +1,16 @@
+Description: Make the build reproducible
+Author: Chris Lamb <la...@debian.org>
+Last-Update: 2017-04-12
+
+--- synthv1-0.8.0.orig/configure.ac
 synthv1-0.8.0/configure.ac
+@@ -9,6 +9,9 @@ AC_CONFIG_FILES(Makefile synthv1.spec sr
+ AC_CACHE_VAL([ac_cv_build_date],
+[ac_cv_build_date=$(date +"%b %d %Y %H:%M %z")])
+ ac_build_date="$ac_cv_build_date"
++if test -n "$SOURCE_DATE_EPOCH"; then
++   ac_build_date="`LC_ALL=C date --utc --date=@$SOURCE_DATE_EPOCH +'%b %d %Y 
%H:%M %z`"
++fi
+ AC_DEFINE_UNQUOTED(CONFIG_BUILD_DATE, ["$ac_build_date"], [Build date and 
time.])
+ 
+ # Build version string.
--- a/debian/patches/series 2017-04-12 21:53:44.615923863 +0100
--- b/debian/patches/series 2017-04-12 22:00:18.058201513 +0100
@@ -1,2 +1,3 @@
 0002-fix_hardening.patch
 0004-fix_install_path.patch
+0005-reproducible_build.patch
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#860212: samplv1: please make the build reproducible

2017-04-12 Thread Chris Lamb
Source: samplv1
Version: 0.8.0-1
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: timestamps
X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org

Hi,

Whilst working on the Reproducible Builds effort [0], we noticed
that samplv1 could not be built reproducibly.

Patch attached.

 [0] https://reproducible-builds.org/


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
diff --git a/configure.ac b/configure.ac
index 7daf228..999eebf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,6 +9,9 @@ AC_CONFIG_FILES(Makefile samplv1.spec src/src_core.pri 
src/src_jack.pri src/src_
 AC_CACHE_VAL([ac_cv_build_date],
[ac_cv_build_date=$(date +"%b %d %Y %H:%M %z")])
 ac_build_date="$ac_cv_build_date"
+if test -n "$SOURCE_DATE_EPOCH"; then
+   ac_build_date="`LC_ALL=C date --utc --date=@$SOURCE_DATE_EPOCH +'%b %d %Y 
%H:%M %z`"
+fi
 AC_DEFINE_UNQUOTED(CONFIG_BUILD_DATE, ["$ac_build_date"], [Build date and 
time.])
 
 # Build version string.
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#859305: forked-daapd: please make the build reproducible

2017-04-01 Thread Chris Lamb
Source: forked-daapd
Version: 24.2-1
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: timestamps
X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org

Hi,

Whilst working on the Reproducible Builds effort [0], we noticed
that forked-daapd could not be built reproducibly.

Patch attached.

 [0] https://reproducible-builds.org/


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
--- a/debian/patches/reproducible_build.patch   1970-01-01 01:00:00.0 
+0100
--- b/debian/patches/reproducible_build.patch   2017-04-01 22:12:47.871649354 
+0100
@@ -0,0 +1,17 @@
+Description: Make the build reproducible
+Author: Chris Lamb <la...@debian.org>
+Last-Update: 2017-04-01
+
+--- forked-daapd-24.2.orig/configure.ac
 forked-daapd-24.2/configure.ac
+@@ -5,6 +5,10 @@ AC_CONFIG_SRCDIR([config.h.in])
+ AC_CONFIG_MACRO_DIR([m4])
+ AC_CONFIG_HEADERS([config.h])
+ AC_DEFINE_UNQUOTED([BUILDDATE], ["`date -Idate`"], [Build date])
++if test "x$SOURCE_DATE_EPOCH" != x; then
++  AC_DEFINE_UNQUOTED([BUILDDATE], ["`date -Idate --utc 
--date='@$SOURCE_DATE_EPOCH`"], [Build date])
++fi
++
+ AM_INIT_AUTOMAKE([foreign -Wno-portability subdir-objects])
+ 
+ AC_USE_SYSTEM_EXTENSIONS
--- a/debian/patches/series 2017-04-01 22:00:36.360145132 +0100
--- b/debian/patches/series 2017-04-01 22:13:01.359714249 +0100
@@ -1 +1 @@
-
+reproducible_build.patch
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Wheezy update of audiofile?

2017-03-14 Thread Chris Lamb
Hello dear maintainer(s),

the Debian LTS team would like to fix the security issues which are
currently open in the Wheezy version of audiofile:
https://security-tracker.debian.org/tracker/source-package/audiofile

Would you like to take care of this yourself?

If yes, please follow the workflow we have defined here:
https://wiki.debian.org/LTS/Development

If that workflow is a burden to you, feel free to just prepare an
updated source package and send it to debian-...@lists.debian.org
(via a debdiff, or with an URL pointing to the source package,
or even with a pointer to your packaging repository), and the members
of the LTS team will take care of the rest. Indicate clearly whether you
have tested the updated package or not.

If you don't want to take care of this update, it's not a problem, we
will do our best with your package. Just let us know whether you would
like to review and/or test the updated package before it gets released.

You can also opt-out from receiving future similar emails in your
answer and then the LTS Team will take care of audiofile updates
for the LTS releases.

Thank you very much.

Chris Lamb,
  on behalf of the Debian LTS team.

PS: A member of the LTS team might start working on this update at
any point in time. You can verify whether someone is registered
on this update in this file:
https://anonscm.debian.org/viewvc/secure-testing/data/dla-needed.txt?view=markup


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

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


Bug#834192: handbrake: please make the build reproducible

2017-03-05 Thread Chris Lamb
> Would you consider applying this patch and uploading?

Friendly ping on this :)


Best wishes,

-- 
  ,''`.
 : :'  :     Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

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


Bug#831630: idjc: please make the build reproducible

2017-02-18 Thread Chris Lamb
> Would you consider applying this patch and uploading?

Friendly ping on this :)


Best wishes,

-- 
  ,''`.
 : :'  :     Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

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


Bug#797027: zyne: please make the build reproducible

2017-02-18 Thread Chris Lamb
> Would you consider applying this patch and uploading?

Friendly ping on this :)


Best wishes,

-- 
  ,''`.
 : :'  :     Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

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


Bug#855478: x265: Incomplete debian/copyright?

2017-02-18 Thread Chris Lamb
Source: x265
Version: 2.3-1
Severity: serious
Justication: Policy 12.5
X-Debbugs-CC: Sebastian Ramacher <sramac...@debian.org>

Hi,

I just ACCEPTed x265 from NEW but noticed it was missing attribution 
in debian/copyright for at least:

source/cmake/FindNuma.cmake:17:# Copyright (c) 2015 Steve Borho
source/cmake/FindVLD.cmake:26:# Copyright (c) 2012 Sergiu Dotenco
source/cmake/FindVtune.cmake:8:# Copyright (c) 2015 Pradeep Ramachandran

(This is not exhaustive so please check over the entire package 
carefully and address these on your next upload.)


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

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


Bug#855347: libopenshot: Incomplete debian/copyright?

2017-02-16 Thread Chris Lamb
Source: libopenshot
Version: 0.1.3+ds1-1
Severity: serious
Justication: Policy 12.5
X-Debbugs-CC: Ghislain Antony Vaillant <ghisv...@gmail.com>

Hi,

I just ACCEPTed libopenshot from NEW but noticed it was missing 
attribution in debian/copyright for at least:

include/DecklinkInput.h:8: * Copyright (c) 2009 Blackmagic Design
include/DecklinkOutput.h:8: * Copyright (c) 2009 Blackmagic Design
src/DecklinkInput.cpp:8: * Copyright (c) 2009 Blackmagic Design
src/DecklinkOutput.cpp:8: * Copyright (c) 2009 Blackmagic Design


(This is not exhaustive so please check over the entire package 
carefully and address these on your next upload.)


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

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


Bug#855002: samplv1: please make the build reproducible

2017-02-13 Thread Chris Lamb
tags 855002 + fixed-upstream
thanks

Fixed upstream:

> The CONFIG_BUILD_DATE build timestamp has been dropped
> from the configure step already on git head.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

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


Bug#855002: samplv1: please make the build reproducible

2017-02-12 Thread Chris Lamb
Source: samplv1
Version: 0.8.0-1
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: timestamps
X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org

Hi,

Whilst working on the Reproducible Builds effort [0], we noticed
that samplv1 could not be built reproducibly.

Patch attached.

 [0] https://reproducible-builds.org/


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
--- a/debian/patches/0005-reproducible_build.patch  1970-01-01 
12:00:00.0 +1200
--- b/debian/patches/0005-reproducible_build.patch  2017-02-13 
18:11:27.177170815 +1300
@@ -0,0 +1,16 @@
+Description: Make the build reproducible
+Author: Chris Lamb <la...@debian.org>
+Last-Update: 2017-02-13
+
+--- samplv1-0.8.0.orig/configure.ac
 samplv1-0.8.0/configure.ac
+@@ -9,6 +9,9 @@ AC_CONFIG_FILES(Makefile samplv1.spec sr
+ AC_CACHE_VAL([ac_cv_build_date],
+[ac_cv_build_date=$(date +"%b %d %Y %H:%M %z")])
+ ac_build_date="$ac_cv_build_date"
++if test -n "$SOURCE_DATE_EPOCH"; then
++   ac_build_date="`LC_ALL=C date --utc --date="@$SOURCE_DATE_EPOCH" +"%b %d 
%Y %H:%M %z"`"
++fi
+ AC_DEFINE_UNQUOTED(CONFIG_BUILD_DATE, ["$ac_build_date"], [Build date and 
time.])
+ 
+ # Build version string.
--- a/debian/patches/series 2017-02-13 18:00:01.650517919 +1300
--- b/debian/patches/series 2017-02-13 18:08:10.515264800 +1300
@@ -1,2 +1,3 @@
 0002-fix_hardening.patch
 0004-fix_install_path.patch
+0005-reproducible_build.patch
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#849285: kodi-pvr-mythtv: FTBFS: src/client.cpp:1202:6: error: conflicting declaration of C function 'bool SeekTime(int, bool, double*)'

2016-12-24 Thread Chris Lamb
Source: kodi-pvr-mythtv
Version: 4.7.2+git20160820-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org

Dear Maintainer,

kodi-pvr-mythtv fails to build from source in unstable/amd64:

  […]

  dh build
 dh_testdir
 dh_update_autotools_config
 debian/rules override_dh_auto_configure
  make[1]: Entering directory '«BUILDDIR»'
  # USE_LTO breaks build
  dh_auto_configure -- -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=1 
-DCMAKE_INSTALL_LIBDIR=/usr/lib/x86_64-linux-gnu/kodi
cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON 
-DCMAKE_BUILD_TYPE=None -DCMAKE_INSTALL_SYSCONFDIR=/etc 
-DCMAKE_INSTALL_LOCALSTATEDIR=/var -DCMAKE_BUILD_TYPE=Release 
-DBUILD_SHARED_LIBS=1 -DCMAKE_INSTALL_LIBDIR=/usr/lib/x86_64-linux-gnu/kodi
  -- The C compiler identification is GNU 6.2.1
  -- The CXX compiler identification is GNU 6.2.1
  -- Check for working C compiler: /usr/bin/cc
  -- Check for working C compiler: /usr/bin/cc -- works
  -- Detecting C compiler ABI info
  -- Detecting C compiler ABI info - done
  -- Detecting C compile features
  -- Detecting C compile features - done
  -- Check for working CXX compiler: /usr/bin/c++
  -- Check for working CXX compiler: /usr/bin/c++ -- works
  -- Detecting CXX compiler ABI info
  -- Detecting CXX compiler ABI info - done
  -- Detecting CXX compile features
  -- Detecting CXX compile features - done
  -- Checking to see if CXX compiler accepts flag -flto
  -- Checking to see if CXX compiler accepts flag -flto - yes
  -- Looking for __atomic_fetch_add_4 in atomic
  -- Looking for __atomic_fetch_add_4 in atomic - found
  -- Performing Test HAS_BUILTIN_SYNC_ADD_AND_FETCH
  -- Performing Test HAS_BUILTIN_SYNC_ADD_AND_FETCH - Success
  -- Performing Test HAS_BUILTIN_SYNC_SUB_AND_FETCH
  -- Performing Test HAS_BUILTIN_SYNC_SUB_AND_FETCH - Success
  -- Performing Test HAS_BUILTIN_SYNC_VAL_COMPARE_AND_SWAP
  -- Performing Test HAS_BUILTIN_SYNC_VAL_COMPARE_AND_SWAP - Success
  -- Looking for pthread.h
  -- Looking for pthread.h - found
  -- Looking for pthread_create
  -- Looking for pthread_create - not found
  -- Looking for pthread_create in pthreads
  -- Looking for pthread_create in pthreads - not found
  -- Looking for pthread_create in pthread
  -- Looking for pthread_create in pthread - found
  -- Found Threads: TRUE  
  -- Looking for timegm
  -- Looking for timegm - found
  -- Looking for localtime_r
  -- Looking for localtime_r - found
  -- Looking for gmtime_r
  -- Looking for gmtime_r - found
  -- Performing Test HAVE_INLINE
  -- Performing Test HAVE_INLINE - Success
  -- Performing Test HAVE___INLINE
  -- Performing Test HAVE___INLINE - Success
  -- Performing Test HAVE___INLINE__
  -- Performing Test HAVE___INLINE__ - Success
  -- Performing Test COMPILER_SUPPORTS_CXX11
  -- Performing Test COMPILER_SUPPORTS_CXX11 - Success
  -- MYTHTV_VERSION=4.7.2
  -- Configuring done
  -- Generating done
  CMake Warning:
Manually-specified variables were not used by the project:
  
  CMAKE_INSTALL_LOCALSTATEDIR
  CMAKE_INSTALL_SYSCONFDIR
  
  
  -- Build files have been written to: «BUILDDIR»/obj-x86_64-linux-gnu
  make[1]: Leaving directory '«BUILDDIR»'
 dh_auto_build
make -j1
  make[1]: Entering directory '«BUILDDIR»/obj-x86_64-linux-gnu'
  /usr/bin/cmake -H«BUILDDIR» 
-B/home/lamby/temp/cdt.20161224170851.r1weVQvyF1.db.kodi-pvr-mythtv/kodi-pvr-mythtv-4.7.2+git20160820/obj-x86_64-linux-gnu
 --check-build-system CMakeFiles/Makefile.cmake 0
  /usr/bin/cmake -E cmake_progress_start 
«BUILDDIR»/obj-x86_64-linux-gnu/CMakeFiles 
/home/lamby/temp/cdt.20161224170851.r1weVQvyF1.db.kodi-pvr-mythtv/kodi-pvr-mythtv-4.7.2+git20160820/obj-x86_64-linux-gnu/CMakeFiles/progress.marks
  make -f CMakeFiles/Makefile2 all
  make[2]: Entering directory '«BUILDDIR»/obj-x86_64-linux-gnu'
  make -f lib/cppmyth/CMakeFiles/cppmyth.dir/build.make 
lib/cppmyth/CMakeFiles/cppmyth.dir/depend
  make[3]: Entering directory '«BUILDDIR»/obj-x86_64-linux-gnu'
  cd «BUILDDIR»/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix 
Makefiles" 
/home/lamby/temp/cdt.20161224170851.r1weVQvyF1.db.kodi-pvr-mythtv/kodi-pvr-mythtv-4.7.2+git20160820
 
/home/lamby/temp/cdt.20161224170851.r1weVQvyF1.db.kodi-pvr-mythtv/kodi-pvr-mythtv-4.7.2+git20160820/lib/cppmyth
 
/home/lamby/temp/cdt.20161224170851.r1weVQvyF1.db.kodi-pvr-mythtv/kodi-pvr-mythtv-4.7.2+git20160820/obj-x86_64-linux-gnu
 
/home/lamby/temp/cdt.20161224170851.r1weVQvyF1.db.kodi-pvr-mythtv/kodi-pvr-mythtv-4.7.2+git20160820/obj-x86_64-linux-gnu/lib/cppmyth
 
/home/lamby/temp/cdt.20161224170851.r1weVQvyF1.db.kodi-pvr-mythtv/kodi-pvr-mythtv-4.7.2+git20160820/obj-x86_64-linux-gnu/lib/cppmyth/CMakeFiles/cppmyth.dir/DependInfo.cmake
 --color=
  Scanning dependencies of target cppmyth
  make[3]: Leaving directory '«BUILDDIR»/obj-x86_64-linux-gnu'
  make -f 

Bug#844993: qsynth: please make the build reproducible

2016-11-19 Thread Chris Lamb
Source: qsynth
Version: 0.4.3-1
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: timestamps
X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org

Hi,

Whilst working on the Reproducible Builds effort [0], we noticed
that qsynth could not be built reproducibly.

Patch attached.

 [0] https://reproducible-builds.org/


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
--- a/debian/patches/4001-reproducible-build.patch  1970-01-01 
01:00:00.0 +0100
--- b/debian/patches/4001-reproducible-build.patch  2016-11-19 
09:50:50.098167832 +0100
@@ -0,0 +1,21 @@
+Description: Make the build reproducible
+Author: Chris Lamb <la...@debian.org>
+Last-Update: 2016-11-19
+
+--- qsynth-0.4.3.orig/configure.ac
 qsynth-0.4.3/configure.ac
+@@ -6,9 +6,11 @@ AC_CONFIG_HEADERS(src/config.h)
+ AC_CONFIG_FILES(Makefile qsynth.spec src/src.pri src/qsynth.desktop)
+ 
+ # Build date and time.
+-AC_CACHE_VAL([ac_cv_build_date],
+-   [ac_cv_build_date=$(date +"%b %d %Y %H:%M %z")])
+-ac_build_date="$ac_cv_build_date"
++if test x"$SOURCE_DATE_EPOCH" = "x"; then
++   ac_build_date=`date +"%b %d %Y %H:%M %z"`
++else
++   ac_build_date=`LC_ALL=C date --utc --date="@$SOURCE_DATE_EPOCH" +"%b %d %Y 
%H:%M %z"`
++fi
+ AC_DEFINE_UNQUOTED(CONFIG_BUILD_DATE, ["$ac_build_date"], [Build date and 
time.])
+ 
+ # Build version string.
--- a/debian/patches/series 2016-11-19 09:42:00.533805985 +0100
--- b/debian/patches/series 2016-11-19 09:49:59.221747509 +0100
@@ -1,3 +1,4 @@
 1001-soundfont_default_dir.patch
 2001-libx11_underlinkage.patch
 3001-hardening.patch
+4001-reproducible-build.patch
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#844550: mediatomb: FTBFS: g++: error: .specs: No such file or directory

2016-11-16 Thread Chris Lamb
fine ENABLE_SIGHUP 1
  #define EXTEND_PROTOCOLINFO 1
  #define UPNP_VERSION_STRING "0.12.2"
  #define UPNP_VERSION_MAJOR 0
  #define UPNP_VERSION_MINOR 4
  #define UPNP_VERSION_PATCH 1
  #define UPNP_HAVE_DEVICE 1
  #define UPNP_HAVE_WEBSERVER 1
  #define HAVE_DIRENT_H 1
  #define STDC_HEADERS 1
  #define HAVE_SYS_WAIT_H 1
  #define HAVE_SYS_TYPES_H 1
  #define HAVE_SYS_STAT_H 1
  #define HAVE_STDLIB_H 1
  #define HAVE_STRING_H 1
  #define HAVE_MEMORY_H 1
  #define HAVE_STRINGS_H 1
  #define HAVE_INTTYPES_H 1
  #define HAVE_STDINT_H 1
  #define HAVE_UNISTD_H 1
  #define HAVE__BOOL 1
  #define HAVE_STDBOOL_H 1
  #define TIME_WITH_SYS_TIME 1
  #define SIZEOF_OFF_T 8
  #define SIZEOF_SIZE_T 8
  #define SIZEOF_TIME_T 8
  #define SIZEOF_UNSIGNED_INT 4
  #define SIZEOF_UNSIGNED_LONG 8
  #define HAVE_STRTOLL 1
  #define HAVE_NL_LANGINFO 1
  #define HAVE_SETLOCALE 1
  #define HAVE_BACKTRACE 1
  #define HAVE_BACKTRACE_SYMBOLS 1
  #define RETSIGTYPE void
  #define HAVE_TIME_H 1
  #define HAVE_SYSLOG_H 1
  #define HAVE_STDDEF_H 1
  #define HAVE_UNISTD_H 1
  #define HAVE_ARPA_INET_H 1
  #define HAVE_FCNTL_H 1
  #define HAVE_LIMITS_H 1
  #define HAVE_NETDB_H 1
  #define HAVE_NETINET_IN_H 1
  #define HAVE_STDLIB_H 1
  #define HAVE_STRING_H 1
  #define HAVE_SYS_FILE_H 1
  #define HAVE_SYS_IOCTL_H 1
  #define HAVE_SYS_SOCKET_H 1
  #define HAVE_SYS_TIME_H 1
  #define HAVE_SYS_TYPES_H 1
  #define HAVE_SYS_WAIT_H 1
  #define HAVE_LANGINFO_H 1
  #define HAVE_LOCALE_H 1
  #define HAVE_SYS_UTSNAME_H 1
  #define HAVE_SCHED_H 1
  #define HAVE_CTYPE_H 1
  #define HAVE_SCHED_GETPARAM 1
  #define HAVE_SCHED_SETPARAM 1
  #define HAVE_SCHED_GET_PRIORITY_MIN 1
  #define HAVE_SCHED_GET_PRIORITY_MAX 1
  #define HAVE_MKDIR 1
  #define HAVE_GETOPT_H 1
  #define HAVE_GETOPT_LONG 1
  #define HAVE_MKFIFO 1
  #define EXTERNAL_TRANSCODING 1
  #define HAVE_EXECINFO_H 1
  #define HAVE_TIME_T 1
  #define HAVE_FSEEKO 1
  #define HAVE_LONG_MAX 1
  #define MAXLLONG LLONG_MAX
  #define HAVE_ALLOCA_H 1
  #define HAVE_ALLOCA 1
  #define HAVE_FORK 1
  #define HAVE_VFORK 1
  #define HAVE_WORKING_VFORK 1
  #define HAVE_WORKING_FORK 1
  #define HAVE_STDLIB_H 1
  #define HAVE_MALLOC 1
  #define HAVE_STDLIB_H 1
  #define HAVE_REALLOC 1
  #define HAVE_SYS_SELECT_H 1
  #define HAVE_SYS_SOCKET_H 1
  #define SELECT_TYPE_ARG1 int
  #define SELECT_TYPE_ARG234 (fd_set *)
  #define SELECT_TYPE_ARG5 (struct timeval *)
  #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
  #define HAVE_VPRINTF 1
  #define HAVE_DECL_STRERROR_R 1
  #define HAVE_STRERROR_R 1
  #define HAVE_STRFTIME 1
  #define HAVE_GETHOSTNAME 1
  #define HAVE_GETTIMEOFDAY 1
  #define HAVE_LOCALTIME_R 1
  #define HAVE_MEMMOVE 1
  #define HAVE_MEMSET 1
  #define HAVE_REGCOMP 1
  #define HAVE_SELECT 1
  #define HAVE_STRCASECMP 1
  #define HAVE_STRCHR 1
  #define HAVE_STRDUP 1
  #define HAVE_STRERROR 1
  #define HAVE_STRNCASECMP 1
  #define HAVE_STRRCHR 1
  #define HAVE_STRSTR 1
  #define HAVE_STRTOL 1
  #define HAVE_STRTOUL 1
  #define HAVE_UNAME 1
  #define HAVE_SIGACTION 1
  #define HAVE_SIGPROCMASK 1
  #define HAVE_IOCTL 1
  #define HAVE_TOLOWER 1
  #define HAVE_TOUPPER 1
  #define HAVE_INET_NTOA 1
  #define HAVE_SOCKET 1
  #define HAVE_GETHOSTBYNAME 1
  #define HAVE_GETHOSTBYNAME_R 1
  #define HAVE_IF_NAMEINDEX 1
  #define HAVE_IF_FREENAMEINDEX 1
  #define HAVE_PTHREAD 1
  #define HAVE_ZLIB 1
  #define AUTO_CREATE_DATABASE 1
  #define HAVE_SQLITE3 1
  
  configure: exit 1
  dh_auto_configure: ./configure --build=x86_64-linux-gnu --prefix=/usr 
--includedir=${prefix}/include --mandir=${prefix}/share/man 
--infodir=${prefix}/share/info --sysconfdir=/etc --localstatedir=/var 
--disable-silent-rules --libdir=${prefix}/lib/x86_64-linux-gnu 
--libexecdir=${prefix}/lib/x86_64-linux-gnu --disable-maintainer-mode 
--disable-dependency-tracking --enable-sqlite3 --enable-mysql --enable-libjs 
--enable-libmagic --enable-inotify --enable-libexif --enable-taglib 
--enable-ffmpeg --enable-ffmpegthumbnailer --enable-external-transcoding 
--enable-curl --enable-youtube --enable-db-autocreate --disable-id3lib 
--disable-libmp4v2 --disable-lastfm --disable-silent-rules returned exit code 1
  debian/rules:41: recipe for target 'override_dh_auto_configure' failed
  make[1]: *** [override_dh_auto_configure] Error 2
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20161116210630.psKfUnjLkH.db.mediatomb/mediatomb-0.12.1-47-g7ab7616'
  debian/rules:54: recipe for target 'binary' failed
  make: *** [binary] Error 2

  […]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


mediatomb.0.12.1-47-g7ab7616-1.unstable.amd64.log.txt.gz
Description: Binary data
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#844101: suil: FTBFS: qbasicatomic.h:290:14: error: 'Ops' has not been declared

2016-11-12 Thread Chris Lamb
Wnon-virtual-dtor', '-Woverloaded-virtual', '-Wall', '-Wcast-align', 
'-Wextra', '-Wmissing-declarations', '-Wno-unused-parameter', 
'-Wstrict-overflow', '-Wundef', '-Wwrite-strings', '-fstrict-overflow', 
'-Wlogical-op', '-Wsuggest-attribute=noreturn', '-Wunsafe-loop-optimizations', 
'-fshow-column', '-fPIC', '-pthread', '-Wdate-time', '-D_FORTIFY_SOURCE=2', 
'-I/home/lamby/temp/cdt.20161112142403.p5otEpq8AV.db.suil/suil-0.8.4~dfsg0/build',
 '-I/home/lamby/temp/cdt.20161112142403.p5otEpq8AV.db.suil/suil-0.8.4~dfsg0', 
'-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/pixman-1', '-I/usr/include/libpng16', 
'-I/usr/include/gdk-pixbuf-2.0', '-I/usr/include/harfbuzz', 
'-I/usr/include/glib-2.0', '-I/usr/lib/x86_64-linux-gnu/glib-2.0/include', 
'-I/usr/include/freetype2', '-I/usr/include/x86_64-linux-gnu/qt5/QtWidgets', 
'-I/usr/include/x86_64-linux-gnu/qt5', 
'-I/usr/include/x86_64-linux-gnu/qt5/QtGui', 
'-I/usr/include/x86_64-linux-gnu/qt5/QtCore', 
'-I/home/lamby/temp/cdt.20161112142403.p5otEpq8AV.db.suil/suil-0.8.4~dfsg0/build',
 '-DHAVE_LIBDL=1', '-DSUIL_VERSION="0.8.4"', 
'-DSUIL_MODULE_DIR="/usr/lib/x86_64-linux-gnu/suil-0"', '-DSUIL_DIR_SEP="/"', 
'-DSUIL_GTK2_LIB_NAME="libgtk-x11-2.0.so.0"', '-DSUIL_WITH_GTK2_IN_QT4=1', 
'-DSUIL_WITH_QT4_IN_GTK2=1', '-DSUIL_WITH_GTK2_IN_QT5=1', 
'-DSUIL_WITH_X11_IN_GTK2=1', '-DSUIL_WITH_X11_IN_QT4=1', 
'-DSUIL_WITH_X11_IN_QT5=1', '-DSUIL_MODULE_PREFIX="lib"', 
'-DSUIL_MODULE_EXT=".so"', '-DSUIL_SHARED', '-DSUIL_INTERNAL', '-DHAVE_GTK2=1', 
'-DHAVE_QT5=1', '-DHAVE_LV2=1', '../src/gtk2_in_qt5.cpp', '-c', '-o', 
'/home/lamby/temp/cdt.20161112142403.p5otEpq8AV.db.suil/suil-0.8.4~dfsg0/build/src/gtk2_in_qt5.cpp.4.o']
   -> task in 'suil_x11_in_qt5' failed (exit status 1): 
{task 140385136790608: cxx x11_in_qt5.cpp -> x11_in_qt5.cpp.8.o}
  ['/usr/bin/g++', 
'-I/home/lamby/temp/cdt.20161112142403.p5otEpq8AV.db.suil/suil-0.8.4~dfsg0', 
'-g', '-O2', 
'-fdebug-prefix-map=/home/lamby/temp/cdt.20161112142403.p5otEpq8AV.db.suil/suil-0.8.4~dfsg0=.',
 '-fstack-protector-strong', '-Wformat', '-Werror=format-security', '-DNDEBUG', 
'-ansi', '-Wnon-virtual-dtor', '-Woverloaded-virtual', '-Wall', '-Wcast-align', 
'-Wextra', '-Wmissing-declarations', '-Wno-unused-parameter', 
'-Wstrict-overflow', '-Wundef', '-Wwrite-strings', '-fstrict-overflow', 
'-Wlogical-op', '-Wsuggest-attribute=noreturn', '-Wunsafe-loop-optimizations', 
'-fshow-column', '-fPIC', '-Wdate-time', '-D_FORTIFY_SOURCE=2', 
'-I/home/lamby/temp/cdt.20161112142403.p5otEpq8AV.db.suil/suil-0.8.4~dfsg0/build',
 '-I/home/lamby/temp/cdt.20161112142403.p5otEpq8AV.db.suil/suil-0.8.4~dfsg0', 
'-I/usr/include/x86_64-linux-gnu/qt5/QtWidgets', 
'-I/usr/include/x86_64-linux-gnu/qt5', 
'-I/usr/include/x86_64-linux-gnu/qt5/QtGui', 
'-I/usr/include/x86_64-linux-gnu/qt5/QtCore', 
'-I/home/lamby/temp/cdt.20161112142403.p5otEpq8AV.db.suil/suil-0.8.4~dfsg0/build',
 '-DHAVE_LIBDL=1', '-DSUIL_VERSION="0.8.4"', 
'-DSUIL_MODULE_DIR="/usr/lib/x86_64-linux-gnu/suil-0"', '-DSUIL_DIR_SEP="/"', 
'-DSUIL_GTK2_LIB_NAME="libgtk-x11-2.0.so.0"', '-DSUIL_WITH_GTK2_IN_QT4=1', 
'-DSUIL_WITH_QT4_IN_GTK2=1', '-DSUIL_WITH_GTK2_IN_QT5=1', 
'-DSUIL_WITH_X11_IN_GTK2=1', '-DSUIL_WITH_X11_IN_QT4=1', 
'-DSUIL_WITH_X11_IN_QT5=1', '-DSUIL_MODULE_PREFIX="lib"', 
'-DSUIL_MODULE_EXT=".so"', '-DSUIL_SHARED', '-DSUIL_INTERNAL', '-DHAVE_QT5=1', 
'-DHAVE_LV2=1', '../src/x11_in_qt5.cpp', '-c', '-o', 
'/home/lamby/temp/cdt.20161112142403.p5otEpq8AV.db.suil/suil-0.8.4~dfsg0/build/src/x11_in_qt5.cpp.8.o']
  debian/rules:28: recipe for target 'override_dh_auto_build' failed
  make[1]: *** [override_dh_auto_build] Error 1
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20161112142403.p5otEpq8AV.db.suil/suil-0.8.4~dfsg0'
  debian/rules:14: recipe for target 'build' failed
  make: *** [build] Error 2

  […]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


suil.0.8.4~dfsg0-1.unstable.amd64.log.txt.gz
Description: Binary data
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#833445: pd-pdstring: please make the build reproducible

2016-10-10 Thread Chris Lamb
Dear Maintainer,

> Source: pd-pdstring
> Version: 0.10.2-1
> Tags: patch

There hasn't seem to be any update on this bug in 66 days, in which
time the Reproducible Builds effort has come on a long way. :)

Would you consider applying this patch and uploading?


Regards,

-- 
  ,''`.
 : :'  :     Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

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


Bug#838593: easytag: FTBFS: dh_install: Cannot find (any matches for) "usr/lib/nautilus/*/*.so" (tried in "." and "debian/tmp")

2016-09-22 Thread Chris Lamb
dh_install: easytag-nautilus missing files: usr/lib/nautilus/*/*.so
  dh_install: missing files, aborting
  debian/rules:7: recipe for target 'binary' failed
  make: *** [binary] Error 2

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


easytag.2.4.2-1.unstable.amd64.log.txt.gz
Description: Binary data
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#831630: idjc: please make the build reproducible

2016-09-20 Thread Chris Lamb
Dear Maintainer,

> Source: idjc
> Version: 0.8.14-1build3
> Tags: patch

There hasn't seem to be any update on this bug in 64 days, in which
time the Reproducible Builds effort has come on a long way. :)

Would you consider applying this patch and uploading?


Regards,

-- 
  ,''`.
 : :'  :     Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

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


Bug#837468: csoundqt: FTBFS: Project ERROR: A valid csound library was not found.

2016-09-11 Thread Chris Lamb
) ...
  Setting up csoundqt-build-deps (0.9.2.1-3) ...
  Processing triggers for libc-bin (2.24-2) ...
  Processing triggers for systemd (231-5) ...
  
  
**
  ** Environment
  **
  
**
  
  
PATH=/home/lamby/git/projects/dotfiles/dotfiles/..//bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
  HOSTNAME=c6f464bf806f
  TERM=xterm
  PAGER=more
  DISPLAY=:0
  DOCKER_IMAGE=lamby-debian-sid
  DEB_BUILD_OPTIONS=parallel=9
  PIP_DOWNLOAD_CACHE=/home/lamby/.cache/pip
  HOME=/home/lamby
  LOGNAME=lamby
  SHLVL=1
  
PWD=/home/lamby/temp/cdt.20160911204059.Y0PiaUVfkN.db.csoundqt/csoundqt-0.9.2.1
  OLDPWD=/home/lamby/temp/cdt.20160911204059.Y0PiaUVfkN.db.csoundqt
  GPG_TTY=/dev/console
  QUILT_PATCHES=debian/patches
  QUILT_NO_DIFF_INDEX=1
  QUILT_REFRESH_ARGS=-p ab --no-timestamps --no-index
  DEBEMAIL=la...@debian.org
  DEBFULLNAME=Chris Lamb
  EDITOR=vim
  LESS=-cgiFx4M
  GPG_KEY=1E953E27D4311E58
  BLASTER=A220 I5 D1 H5 P330 T6
  _=/usr/bin/env
  
  
**
  ** Building csoundqt 0.9.2.1-3 on amd64   
  **
  
**
  
   dpkg-buildpackage -rfakeroot -D -us -uc -b
  dpkg-buildpackage: info: source package csoundqt
  dpkg-buildpackage: info: source version 0.9.2.1-3
  dpkg-buildpackage: info: source distribution unstable
  dpkg-buildpackage: info: source changed by Felipe Sateler 
<fsate...@debian.org>
   dpkg-source --before-build csoundqt-0.9.2.1
  dpkg-buildpackage: info: host architecture amd64
   fakeroot debian/rules clean
  test -x debian/rules
  rm -f debian/stamp-makefile-build debian/stamp-makefile-install
  /usr/bin/make -C . -j9 -k distclean
  make[1]: Entering directory 
'/home/lamby/temp/cdt.20160911204059.Y0PiaUVfkN.db.csoundqt/csoundqt-0.9.2.1'
  make[1]: *** No rule to make target 'distclean'.
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20160911204059.Y0PiaUVfkN.db.csoundqt/csoundqt-0.9.2.1'
  /usr/share/cdbs/1/class/makefile.mk:91: recipe for target 'makefile-clean' 
failed
  make: [makefile-clean] Error 2 (ignored)
  dh_clean 
  rm -f ./Makefile ./.qmake.internal.cache
   debian/rules build
  test -x debian/rules
  mkdir -p "."
  cd . && qmake -r qcs.pro "DEFAULT_LIBSNDFILE_LIBRARY_DIRS = 
/usr/lib/x86_64-linux-gnu" "CSOUND_INCLUDE_DIR = /usr/include/csound" 
"CSOUND_LIBRARY_DIR = /usr/lib" "CSOUND_SOURCE_TREE = /dev/null " 
INSTALL_DIR=/usr SHARE_DIR=/usr/share 'CONFIG += build64 debugger release' 
'QMAKE_CC = cc' 'QMAKE_CXX = g++' 'QMAKE_CFLAGS_RELEASE = -Wdate-time 
-D_FORTIFY_SOURCE=2 -g -O2 
-fdebug-prefix-map=/home/lamby/temp/cdt.20160911204059.Y0PiaUVfkN.db.csoundqt/csoundqt-0.9.2.1=.
 -fstack-protector-strong -Wformat -Werror=format-security' 
'QMAKE_CXXFLAGS_RELEASE = -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 
-fdebug-prefix-map=/home/lamby/temp/cdt.20160911204059.Y0PiaUVfkN.db.csoundqt/csoundqt-0.9.2.1=.
 -fstack-protector-strong -Wformat -Werror=format-security' 
'QMAKE_LFLAGS_RELEASE = -Wl,-z,relro'
  Project MESSAGE: Building debugger
  Project MESSAGE: Building for Csound 6
  Project MESSAGE: 
  Project MESSAGE: Building CsoundQt for Unix-based system.
  Project MESSAGE: 
  Project MESSAGE: Building CsoundQt for the double precision version of Csound.
  Project MESSAGE: Building release version.
  Project MESSAGE: 
  Project MESSAGE: CONFIG ...
  Project MESSAGE: + lex
  Project MESSAGE: + yacc
  Project MESSAGE: + debug
  Project MESSAGE: + exceptions
  Project MESSAGE: + depend_includepath
  Project MESSAGE: + testcase_targets
  Project MESSAGE: + import_plugins
  Project MESSAGE: + import_qpa_plugin
  Project MESSAGE: + file_copies
  Project MESSAGE: + qt
  Project MESSAGE: + warn_on
  Project MESSAGE: + release
  Project MESSAGE: + link_prl
  Project MESSAGE: + incremental
  Project MESSAGE: + shared
  Project MESSAGE: + qpa
  Project MESSAGE: + no_mocdepend
  Project MESSAGE: + release
  Project MESSAGE: + qt_no_framework
  Project MESSAGE: + linux
  Project MESSAGE: + unix
  Project MESSAGE: + posix
  Project MESSAGE: + gcc
  Project MESSAGE: + build64
  Project MESSAGE: + debugger
  Project MESSAGE: + release
  Project MESSAGE: + csound6
  Project MESSAGE: + QCS_QT5
  Project MESSAGE: + QCS_QT53
  Project MESSAGE: + QCS_QT54
  Project MESSAGE: + build64
  Project MESSAGE: + thread
  Project MESSAGE: 
  Project MESSAGE: Searching /usr/lib/libcsound64.so
  Project MESSAGE: Searching /usr/lib/libcsound64.a
  Project ERROR: A valid csound library was not found.
  /usr/share/cdbs/1/class/qmake.mk:45: recipe for target 'Makefile' failed
  make: *** [Make

Bug#834192: handbrake: please make the build reproducible

2016-09-08 Thread Chris Lamb
forwarded 834192 https://github.com/HandBrake/HandBrake/pull/320
thanks

Sebastian Ramacher wrote:

> Thanks for the patch. Could you please submit upstream [1]ß

Sure; done :)


Regards,

-- 
  ,''`.
 : :'  :     Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

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


Bug#836537: snd: FTBFS: snd-main.c:2162:24: error: macro "g_abort" passed 1 arguments, but takes just 0

2016-09-03 Thread Chris Lamb
urity  
/home/lamby/temp/cdt.20160903204930.AgBYCHkK99.db.snd/snd-16.7/./snd-snd.c
  gcc -c -DSCRIPTS_DIR=\"/usr/share/snd\" -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/libpng16 
-I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 
-I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
-I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 
-I/usr/include/cairo -I/usr/include/glib-2.0 
-I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 
-I/usr/include/freetype2 -I/usr/include/libpng16 -Wdate-time 
-D_FORTIFY_SOURCE=2 -DREPRODUCIBLE_BUILD=1 -O2 -I. -g -O2 
-fdebug-prefix-map=/home/lamby/temp/cdt.20160903204930.AgBYCHkK99.db.snd/snd-16.7=.
 -fstack-protector-strong -Wformat -Werror=format-security  
/home/lamby/temp/cdt.20160903204930.AgBYCHkK99.db.snd/snd-16.7/./snd-help.c
  gcc -c -DSCRIPTS_DIR=\"/usr/share/snd\" -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/libpng16 
-I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 
-I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
-I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 
-I/usr/include/cairo -I/usr/include/glib-2.0 
-I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 
-I/usr/include/freetype2 -I/usr/include/libpng16 -Wdate-time 
-D_FORTIFY_SOURCE=2 -DREPRODUCIBLE_BUILD=1 -O2 -I. -g -O2 
-fdebug-prefix-map=/home/lamby/temp/cdt.20160903204930.AgBYCHkK99.db.snd/snd-16.7=.
 -fstack-protector-strong -Wformat -Werror=format-security  
/home/lamby/temp/cdt.20160903204930.AgBYCHkK99.db.snd/snd-16.7/./snd-main.c
  
/home/lamby/temp/cdt.20160903204930.AgBYCHkK99.db.snd/snd-16.7/./snd-main.c:2162:24:
 error: macro "g_abort" passed 1 arguments, but takes just 0
   static Xen g_abort(void)
  ^
  
/home/lamby/temp/cdt.20160903204930.AgBYCHkK99.db.snd/snd-16.7/./snd-main.c:2163:1:
 error: expected '=', ',', ';', 'asm' or '__attribute__' before '{' token
   {
   ^
  In file included from /usr/include/glib-2.0/glib/gthread.h:34:0,
   from /usr/include/glib-2.0/glib/gasyncqueue.h:32,
   from /usr/include/glib-2.0/glib.h:32,
   from /usr/include/glib-2.0/gobject/gbinding.h:28,
   from /usr/include/glib-2.0/glib-object.h:23,
   from /usr/include/glib-2.0/gio/gioenums.h:28,
   from /usr/include/glib-2.0/gio/giotypes.h:28,
   from /usr/include/glib-2.0/gio/gio.h:26,
   from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
   from /usr/include/gtk-2.0/gdk/gdk.h:32,
   from /usr/include/gtk-2.0/gtk/gtk.h:32,
   from 
/home/lamby/temp/cdt.20160903204930.AgBYCHkK99.db.snd/snd-16.7/./snd-g0.h:4,
   from 
/home/lamby/temp/cdt.20160903204930.AgBYCHkK99.db.snd/snd-16.7/./snd.h:36,
   from 
/home/lamby/temp/cdt.20160903204930.AgBYCHkK99.db.snd/snd-16.7/./snd-main.c:1:
  /home/lamby/temp/cdt.20160903204930.AgBYCHkK99.db.snd/snd-16.7/./snd-main.c: 
In function 'g_abort_w':
  /usr/include/glib-2.0/glib/gutils.h:305:21: error: void value not ignored as 
it ought to be
   #  define g_abort() abort ()

  
/home/lamby/temp/cdt.20160903204930.AgBYCHkK99.db.snd/snd-16.7/./xen.h:1143:106:
 note: in expansion of macro 'g_abort'
   #define XEN_NARGIFY_0(OutName, InName) static s7_pointer OutName(s7_scheme 
*sc, s7_pointer args) {return(InName());}

^~
  
/home/lamby/temp/cdt.20160903204930.AgBYCHkK99.db.snd/snd-16.7/./xen.h:1607:42: 
note: in expansion of macro 'XEN_NARGIFY_0'
   #define Xen_wrap_no_args(a, b)   XEN_NARGIFY_0(a, b)
^
  
/home/lamby/temp/cdt.20160903204930.AgBYCHkK99.db.snd/snd-16.7/./snd-main.c:2261:1:
 note: in expansion of macro 'Xen_wrap_no_args'
   Xen_wrap_no_args(g_abort_w, g_abort)
   ^~~~
  makefile:56: recipe for target 'snd-main.o' failed
  make[1]: *** [snd-main.o] Error 1
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20160903204930.AgBYCHkK99.db.snd/snd-16.7/build/gtk-jack'
  /usr/share/cdbs/1/class/makefile.mk:77: recipe for target 
'debian/stamp-makefile-build/gtk-jack' failed
  make: *** [debian/stamp-makefile-build/gtk-jack] Error 2

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


snd.16.7-1.unstable.amd64.log.txt.gz
Description: Binary data
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#797027: zyne: please make the build reproducible

2016-08-14 Thread Chris Lamb
Dear Maintainer,

> Source: zyne
> Version: 0.1.2-2
> Tags: patch

There hasn't seem to be any update on this bug in 353 days, in which
time the Reproducible Builds effort has come on a long way. :)

Would you consider applying this patch and uploading?


Regards,

-- 
  ,''`.
 : :'  :     Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

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


Bug#834180: bristol: FTBFS: audioEngineJack.c:42:26: fatal error: alsa/iatomic.h: No such file or directory

2016-08-12 Thread Chris Lamb
]
   initAudioDevice2(audioDev, devID, fragSize)
   ^~~~
  audioEngine.c: In function 'setAudioStart2':
  audioEngine.c:119:1: warning: type of 'devID' defaults to 'int' 
[-Wimplicit-int]
   setAudioStart2(audioDev, devID)
   ^~
  audioEngine.c: In function 'setAudioStop2':
  audioEngine.c:163:1: warning: type of 'devID' defaults to 'int' 
[-Wimplicit-int]
   setAudioStop2(audioDev, devID)
   ^
  audioGUI.c: In function 'getControllerName':
  audioGUI.c:162:1: warning: type of 'controller' defaults to 'int' 
[-Wimplicit-int]
   getControllerName(audioDev, controller)
   ^
  audioGUI.c: In function 'setRecordSource':
  audioGUI.c:174:1: warning: type of 'controller' defaults to 'int' 
[-Wimplicit-int]
   setRecordSource(audioDev, controller, position)
   ^~~
  audioGUI.c:174:1: warning: type of 'position' defaults to 'int' 
[-Wimplicit-int]
  audioGUI.c: In function 'getRecordability':
  audioGUI.c:186:1: warning: type of 'controller' defaults to 'int' 
[-Wimplicit-int]
   getRecordability(audioDev, controller)
   ^~~~
  audioGUI.c: In function 'getMutability':
  audioGUI.c:198:1: warning: type of 'controller' defaults to 'int' 
[-Wimplicit-int]
   getMutability(audioDev, controller)
   ^
  audioGUI.c: In function 'getStereoStatus':
  audioGUI.c:212:1: warning: type of 'controller' defaults to 'int' 
[-Wimplicit-int]
   getStereoStatus(audioDev, controller)
   ^~~
  audioGUI.c: In function 'getValue':
  audioGUIOSS.c: In function 'setAudioOSS':
  audioGUIOSS.c:93:1: warning: type of 'fd' defaults to 'int' [-Wimplicit-int]
   setAudioOSS(fd, audioDev, param, valueL, valueR)
   ^~~
  audioGUIOSS.c:93:1: warning: type of 'param' defaults to 'int' 
[-Wimplicit-int]
  audioGUIOSS.c:93:1: warning: type of 'valueL' defaults to 'int' 
[-Wimplicit-int]
  audioGUIOSS.c:93:1: warning: type of 'valueR' defaults to 'int' 
[-Wimplicit-int]
  audioGUI.c:223:1: warning: type of 'controller' defaults to 'int' 
[-Wimplicit-int]
   getValue(audioDev, controller, side)
   ^~~~
  audioGUI.c:223:1: warning: type of 'side' defaults to 'int' [-Wimplicit-int]
  audioGUI.c: In function 'setAudioValue':
  audioGUI.c:234:1: warning: type of 'controller' defaults to 'int' 
[-Wimplicit-int]
   setAudioValue(audioDev, controller, side, value)
   ^
  audioGUI.c:234:1: warning: type of 'side' defaults to 'int' [-Wimplicit-int]
  audioGUI.c:234:1: warning: type of 'value' defaults to 'int' [-Wimplicit-int]
  audioGUI.c: In function 'setAudioMute':
  audioGUI.c:252:1: warning: type of 'controller' defaults to 'int' 
[-Wimplicit-int]
   setAudioMute(audioDev, controller, value)
   ^~~~
  audioGUI.c:252:1: warning: type of 'value' defaults to 'int' [-Wimplicit-int]
  audioGUI.c: In function 'getAudioCapability':
  audioGUI.c:281:1: warning: type of 'controller' defaults to 'int' 
[-Wimplicit-int]
   getAudioCapability(audioDev, controller)
   ^~
  audioGUI.c: In function 'validDev':
  audioGUI.c:297:1: warning: type of 'index' defaults to 'int' [-Wimplicit-int]
   validDev(audioDev, index)
   ^~~~
  audioGUIOSS.c: In function 'getOSSCapability':
  audioGUIOSS.c:260:1: warning: type of 'controller' defaults to 'int' 
[-Wimplicit-int]
   getOSSCapability(audioDev, controller)
   ^~~~
  audioGUIOSS.c: In function 'getOSSRecordability':
  audioGUIOSS.c:269:1: warning: type of 'cont' defaults to 'int' 
[-Wimplicit-int]
   getOSSRecordability(audioDev, cont)
   ^~~
  audioEngineOSS.c: In function 'ossAudioInit':
  audioEngineOSS.c:49:1: warning: type of 'fragSize' defaults to 'int' 
[-Wimplicit-int]
   ossAudioInit(audioDev, devID, fragSize)
   ^~~~
  make[3]: Leaving directory 
'/home/lamby/temp/cdt.20160812211734.6zaizKywgD.db.bristol/bristol-0.60.11/libbristolaudio'
  Makefile:443: recipe for target 'all-recursive' failed
  make[2]: *** [all-recursive] Error 1
  make[2]: Leaving directory 
'/home/lamby/temp/cdt.20160812211734.6zaizKywgD.db.bristol/bristol-0.60.11'
  Makefile:375: recipe for target 'all' failed
  make[1]: *** [all] Error 2
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20160812211734.6zaizKywgD.db.bristol/bristol-0.60.11'
  dh_auto_build: make -j9 returned exit code 2
  debian/rules:14: recipe for target 'build' failed
  make: *** [build] Error 2

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


bristol.0.60.11-2.unstable.amd64.log.txt.gz
Description: Binary data
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#834159: mp4v2: please make the build reproducible

2016-08-12 Thread Chris Lamb
Source: mp4v2
Version: 2.0.0~dfsg0-4
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: timestamps
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Hi,

Whilst working on the "reproducible builds" effort [0], we noticed
that mp4v2 could not be built reproducibly.

Patch attached.

 [0] https://wiki.debian.org/ReproducibleBuilds


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
--- a/debian/patches/0003-Reproducible_build.patch  1970-01-01 
01:00:00.0 +0100
--- b/debian/patches/0003-Reproducible_build.patch  2016-08-12 
16:33:47.428664839 +0100
@@ -0,0 +1,20 @@
+Description: Make the build reproducible
+Author: Chris Lamb <la...@debian.org>
+Last-Update: 2016-08-12
+
+--- mp4v2-2.0.0~dfsg0.orig/configure.ac
 mp4v2-2.0.0~dfsg0/configure.ac
+@@ -137,7 +137,12 @@ PROJECT_repo_uuid="PRJ_repo_uuid"
+ PROJECT_repo_rev="PRJ_repo_rev"
+ PROJECT_repo_date="PRJ_repo_date"
+ PROJECT_repo_type="PRJ_repo_type"
+-PROJECT_build="`date`"
++
++if test -n "$SOURCE_DATE_EPOCH"; then
++  PROJECT_build="`LC_ALL=C date --utc --date="@$SOURCE_DATE_EPOCH"`"
++else
++  PROJECT_build="`date`"
++fi
+ 
+ test -z "$PROJECT_version_hex"   && PROJECT_version_hex="0xLL"
+ test -z "$PROJECT_version_major" && PROJECT_version_major="0"
--- a/debian/patches/series 2016-08-12 16:20:23.488736924 +0100
--- b/debian/patches/series 2016-08-12 16:33:46.368649744 +0100
@@ -1,2 +1,3 @@
 0001-Fix_mp4tags_corruption.patch
 0002-Fix_m4_error.patch
+0003-Reproducible_build.patch
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#834158: lvtk: FTBFS: boost/system/error_code.hpp:221: undefined reference to `boost::system::generic_category()'

2016-08-12 Thread Chris Lamb
Source: lvtk
Version: 1.2.0~dfsg0-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

lvtk fails to build from source in unstable/amd64:

  [..]

  Setting up libharfbuzz-dev:amd64 (1.2.7-1+b1) ...
  Setting up fontconfig (2.11.0-6.5) ...
  Regenerating fonts cache... done.
  Setting up libcups2:amd64 (2.1.4-4) ...
  Setting up libfontconfig1-dev:amd64 (2.11.0-6.5) ...
  Setting up libsm-dev:amd64 (2:1.2.2-1+b1) ...
  Setting up libxext6:amd64 (2:1.3.3-1) ...
  Setting up libxfixes3:amd64 (1:5.0.2-1) ...
  Setting up libatkmm-1.6-dev:amd64 (2.24.2-1) ...
  Setting up x11proto-fixes-dev (1:5.0-2) ...
  Setting up libgdk-pixbuf2.0-0:amd64 (2.34.0-1) ...
  Setting up libxcb-shm0-dev:amd64 (1.11.1-1.1) ...
  Setting up libgd3:amd64 (2.2.3-3+b1) ...
  Setting up gir1.2-gdkpixbuf-2.0:amd64 (2.34.0-1) ...
  Setting up libxrender-dev:amd64 (1:0.9.9-2) ...
  Setting up libxmu6:amd64 (2:1.1.2-2) ...
  Setting up libxcb-render0-dev:amd64 (1.11.1-1.1) ...
  Setting up x11proto-damage-dev (1:1.2.1-2) ...
  Setting up libxft-dev (2.3.2-1) ...
  Setting up gtk-update-icon-cache (3.20.7-1) ...
  Setting up libgdk-pixbuf2.0-dev (2.34.0-1) ...
  Setting up libxcursor1:amd64 (1:1.1.14-1+b1) ...
  Setting up libxext-dev:amd64 (2:1.3.3-1) ...
  Setting up libpango-1.0-0:amd64 (1.40.1-1) ...
  Setting up libxfixes-dev:amd64 (1:5.0.2-1) ...
  Setting up x11proto-composite-dev (1:0.4.2-2) ...
  Setting up libxrandr2:amd64 (2:1.5.0-1) ...
  Setting up libxi6:amd64 (2:1.7.6-1) ...
  Setting up libxaw7:amd64 (2:1.0.13-1) ...
  Setting up libcairo2:amd64 (1.14.6-1+b1) ...
  Setting up libcairomm-1.0-1v5:amd64 (1.12.0-1+b1) ...
  Setting up libxinerama1:amd64 (2:1.1.3-1+b1) ...
  Setting up libxcursor-dev:amd64 (1:1.1.14-1+b1) ...
  Setting up libxdamage1:amd64 (1:1.1.4-2+b1) ...
  Setting up libxrandr-dev:amd64 (2:1.5.0-1) ...
  Setting up libxcomposite-dev (1:0.4.4-1) ...
  Setting up libcairo-script-interpreter2:amd64 (1.14.6-1+b1) ...
  Setting up libcairo-gobject2:amd64 (1.14.6-1+b1) ...
  Setting up libxdamage-dev:amd64 (1:1.1.4-2+b1) ...
  Setting up libpangoft2-1.0-0:amd64 (1.40.1-1) ...
  Setting up libxinerama-dev:amd64 (2:1.1.3-1+b1) ...
  Setting up libxi-dev (2:1.7.6-1) ...
  Setting up libcairo2-dev (1.14.6-1+b1) ...
  Setting up gir1.2-freedesktop:amd64 (1.48.0-3) ...
  Setting up libcairomm-1.0-dev:amd64 (1.12.0-1+b1) ...
  Setting up libpangoxft-1.0-0:amd64 (1.40.1-1) ...
  Setting up libpangocairo-1.0-0:amd64 (1.40.1-1) ...
  Setting up libpangomm-1.4-1v5:amd64 (2.40.0-1) ...
  Setting up gir1.2-pango-1.0:amd64 (1.40.1-1) ...
  Setting up libpango1.0-dev (1.40.1-1) ...
  Setting up libpangomm-1.4-dev:amd64 (2.40.0-1) ...
  Setting up libgvc6 (2.38.0-14) ...
  Setting up librsvg2-2:amd64 (2.40.16-1) ...
  Setting up librsvg2-common:amd64 (2.40.16-1) ...
  Setting up graphviz (2.38.0-14) ...
  Setting up gnome-icon-theme (3.12.0-2) ...
  update-alternatives: using 
/usr/share/icons/gnome/scalable/places/debian-swirl.svg to provide 
/usr/share/icons/gnome/scalable/places/start-here.svg (start-here.svg) in auto 
mode
  Setting up libgtk2.0-0:amd64 (2.24.30-4) ...
  Setting up libgtkmm-2.4-1v5:amd64 (1:2.24.4-2+b1) ...
  Setting up gir1.2-gtk-2.0 (2.24.30-4) ...
  Setting up libgtk2.0-dev (2.24.30-4) ...
  Setting up libgtkmm-2.4-dev:amd64 (1:2.24.4-2+b1) ...
  Setting up lvtk-build-deps (1.2.0~dfsg0-1) ...
  Processing triggers for libc-bin (2.23-4) ...
  Processing triggers for systemd (231-1) ...
  Processing triggers for libgdk-pixbuf2.0-0:amd64 (2.34.0-1) ...
  
  
**
  ** Environment
  **
  
**
  
  
PATH=/home/lamby/git/projects/dotfiles/dotfiles/..//bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
  HOSTNAME=e0a5e1332085
  TERM=xterm
  PAGER=more
  DISPLAY=:0
  DOCKER_IMAGE=lamby-debian-sid
  DEB_BUILD_OPTIONS=parallel=9
  PIP_DOWNLOAD_CACHE=/home/lamby/.cache/pip
  HOME=/home/lamby
  LOGNAME=lamby
  SHLVL=1
  PWD=/home/lamby/temp/cdt.20160812163244.HzCzj4l34J.db.lvtk/lvtk-1.2.0~dfsg0
  OLDPWD=/home/lamby/temp/cdt.20160812163244.HzCzj4l34J.db.lvtk
  GPG_TTY=/dev/console
  QUILT_PATCHES=debian/patches
  QUILT_NO_DIFF_INDEX=1
  QUILT_REFRESH_ARGS=-p ab --no-timestamps --no-index
  DEBEMAIL=la...@debian.org
  DEBFULLNAME=Chris Lamb
  EDITOR=vim
  LESS=-cgiFx4M
  GPG_KEY=1E953E27D4311E58
  BLASTER=A220 I5 D1 H5 P330 T6
  _=/usr/bin/env
  
  
**
  ** Building lvtk 1.2.0~dfsg0-1 on amd64   
  **
  
**
  
   dpkg

Bug#833445: pd-pdstring: please make the build reproducible

2016-08-04 Thread Chris Lamb
Source: pd-pdstring
Version: 0.10.2-1
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: timestamps
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Hi,

Whilst working on the "reproducible builds" effort [0], we noticed
that pd-pdstring could not be built reproducibly.

Patch attached.

 [0] https://wiki.debian.org/ReproducibleBuilds


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
--- a/debian/control2016-08-04 09:31:13.702531292 +0100
--- b/debian/control2016-08-04 09:42:22.731404193 +0100
@@ -3,7 +3,8 @@
 Maintainer: Debian Multimedia Maintainers 
<pkg-multimedia-maintainers@lists.alioth.debian.org>
 Uploaders: Roman Haefeli <reduz...@gmail.com>
 Build-Depends: debhelper (>= 7.0.50~),
- puredata-dev | puredata (<< 0.43)
+ puredata-dev | puredata (<< 0.43),
+ dh-autoreconf
 Standards-Version: 3.9.3
 Section: sound
 Homepage: http://www.ling.uni-potsdam.de/~moocow/projects/pd/
--- a/debian/patches/reproducible-build.patch   1970-01-01 01:00:00.0 
+0100
--- b/debian/patches/reproducible-build.patch   2016-08-04 09:40:32.694594076 
+0100
@@ -0,0 +1,19 @@
+Description: Make the build reproducible
+Author: Chris Lamb <la...@debian.org>
+Last-Update: 2016-08-04
+
+--- pd-pdstring-0.10.2.orig/common/m4/ax_pd_external.m4
 pd-pdstring-0.10.2/common/m4/ax_pd_external.m4
+@@ -242,7 +242,11 @@ AC_DEFUN([AX_PD_EXTERNAL],
+ 
+  ##vv
+  ## compiled
+- AC_DEFINE_UNQUOTED(PACKAGE_BUILD_DATE,  "`date`",   [Date this package was 
configured])
++ if test -n "$SOURCE_DATE_EPOCH"; then
++   AC_DEFINE_UNQUOTED(PACKAGE_BUILD_DATE,  "`LC_ALL=C date --utc 
--date="@$SOURCE_DATE_EPOCH"`",   [Date this package was configured])
++ else
++   AC_DEFINE_UNQUOTED(PACKAGE_BUILD_DATE,  "`date`",   [Date this package was 
configured])
++ fi
+  AC_DEFINE_UNQUOTED(PACKAGE_BUILD_USER,  "$USER",[User who configured 
this package])
+  ## /compiled
+  ##^^
--- a/debian/patches/series 2016-08-04 09:31:13.702531292 +0100
--- b/debian/patches/series 2016-08-04 09:40:31.586585936 +0100
@@ -1 +1,2 @@
 fix-help-files-install-dir.patch
+reproducible-build.patch
--- a/debian/rules  2016-08-04 09:31:13.702531292 +0100
--- b/debian/rules  2016-08-04 09:42:15.107347958 +0100
@@ -1,7 +1,7 @@
 #!/usr/bin/make -f
 
 %:
-   dh $@
+   dh $@ --with=autoreconf
 
 override_dh_auto_configure:
dh_auto_configure -- --with-pd-dir=/usr/lib/pd \
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#833305: jacktrip: FTBFS: RtAudioInterface.h:41:21: fatal error: RtAudio.h: No such file or directory

2016-08-02 Thread Chris Lamb
  HOSTNAME=d6f2292a73f1
  TERM=xterm
  PAGER=more
  DISPLAY=:0
  DOCKER_IMAGE=lamby-debian-sid
  DEB_BUILD_OPTIONS=parallel=9
  PIP_DOWNLOAD_CACHE=/home/lamby/.cache/pip
  HOME=/home/lamby
  LOGNAME=lamby
  SHLVL=1
  
PWD=/home/lamby/temp/cdt.20160802135049.r629LLiR6B.jacktrip/jacktrip-1.1~repack
  OLDPWD=/home/lamby/temp/cdt.20160802135049.r629LLiR6B.jacktrip
  GPG_TTY=/dev/console
  QUILT_PATCHES=debian/patches
  QUILT_NO_DIFF_INDEX=1
  QUILT_REFRESH_ARGS=-p ab --no-timestamps --no-index
  DEBEMAIL=la...@debian.org
  DEBFULLNAME=Chris Lamb
  EDITOR=vim
  LESS=-cgiFx4M
  GPG_KEY=1E953E27D4311E58
  BLASTER=A220 I5 D1 H5 P330 T6
  _=/usr/bin/env
  
  
**
  ** Building jacktrip 1.1~repack-4 on amd64
  **
  
**
  
   dpkg-buildpackage -rfakeroot -D -us -uc -b
  dpkg-buildpackage: info: source package jacktrip
  dpkg-buildpackage: info: source version 1.1~repack-4
  dpkg-buildpackage: info: source distribution unstable
  dpkg-buildpackage: info: source changed by IOhannes m zmlnig (Debian/GNU) 
<umlae...@debian.org>
   dpkg-source --before-build jacktrip-1.1~repack
  dpkg-buildpackage: info: host architecture amd64
   fakeroot debian/rules clean
  dh_listpackages: -s/--same-arch is deprecated; please use -a/--arch instead
  test -x debian/rules
  rm -f debian/stamp-makefile-build debian/stamp-makefile-install
  /usr/bin/make -C src -k distclean
  make[1]: Entering directory 
'/home/lamby/temp/cdt.20160802135049.r629LLiR6B.jacktrip/jacktrip-1.1~repack/src'
  make[1]: *** No rule to make target 'distclean'.
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20160802135049.r629LLiR6B.jacktrip/jacktrip-1.1~repack/src'
  /usr/share/cdbs/1/class/makefile.mk:91: recipe for target 'makefile-clean' 
failed
  make: [makefile-clean] Error 2 (ignored)
  dh_clean 
  rm -f src/Makefile src/.qmake.internal.cache
  rm -f debian/copyright_newhints
  rm -f debian/cdbs-install-list debian/cdbs-package-list 
debian/stamp-copyright-check
  rm -rf "debian/upstream-cruft"
  rm -f debian/stamp-upstream-cruft
  rm -rf WWW
  rm -f jacktrip.1
   debian/rules build
  dh_listpackages: -s/--same-arch is deprecated; please use -a/--arch instead
  test -x debian/rules
  mkdir -p "src"
  CDBS WARNING:DEB_DH_INSTALLCHANGELOGS_ARGS is deprecated since 0.4.85
  CDBS WARNING:DEB_COPYRIGHT_CHECK_IGNORE_REGEX is deprecated since 0.4.133
  CDBS WARNING:  copyright-check disabled - licensecheck (from devscripts 
package) is missing.
  make: licensecheck: Command not found
  
  Scanning upstream source for new/changed copyright notices...
  
  set -e; LC_ALL=C.UTF-8 licensecheck --check '.*' --recursive --copyright 
--ignore 'documentation/img/.*|debian/(changelog|copyright(|_hints|_newhints))' 
--lines 9 * | /usr/lib/cdbs/licensecheck2dep5 > debian/copyright_newhints
  /bin/sh: 1: licensecheck: not found
  0 combinations of copyright and licensing found.
  No new copyright notices found - assuming no news is good news...
  touch debian/stamp-copyright-check
  touch debian/stamp-upstream-cruft
  Package libpulse-simple was not found in the pkg-config search path.
  Perhaps you should add the directory containing `libpulse-simple.pc'
  to the PKG_CONFIG_PATH environment variable
  Package 'libpulse-simple', required by 'rtaudio', not found
  Package libpulse-simple was not found in the pkg-config search path.
  Perhaps you should add the directory containing `libpulse-simple.pc'
  to the PKG_CONFIG_PATH environment variable
  Package 'libpulse-simple', required by 'rtaudio', not found
  cd src && qmake 'QMAKE_CC = cc' 'QMAKE_CXX = g++' 'QMAKE_CFLAGS_RELEASE = 
-Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 
-fdebug-prefix-map=/home/lamby/temp/cdt.20160802135049.r629LLiR6B.jacktrip/jacktrip-1.1~repack=.
 -fstack-protector-strong -Wformat -Werror=format-security' 
'QMAKE_CXXFLAGS_RELEASE = -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 
-fdebug-prefix-map=/home/lamby/temp/cdt.20160802135049.r629LLiR6B.jacktrip/jacktrip-1.1~repack=.
 -fstack-protector-strong -Wformat -Werror=format-security' 
'QMAKE_LFLAGS_RELEASE = -Wl,-z,relro'
  Project MESSAGE: Linux 64bit
  Project MESSAGE: Linux 64bit
  Project MESSAGE: Linux 64bit
  /usr/bin/make -C src 
  make[1]: Entering directory 
'/home/lamby/temp/cdt.20160802135049.r629LLiR6B.jacktrip/jacktrip-1.1~repack/src'
  /usr/bin/make -f Makefile.Release all
  make[2]: Entering directory 
'/home/lamby/temp/cdt.20160802135049.r629LLiR6B.jacktrip/jacktrip-1.1~repack/src'
  g++ -c -m64 -pipe -D__LINUX_ALSA__ -g -O2 -fPIC -D__LINUX_ALSA__ -Wdate-time 
-D_FORTIFY_SOURCE=2 -g -O2 
-fdebug-prefix-map=/home/lamby/temp/cdt.20160802135049.r629LLiR6B.jacktrip/jacktrip-1.1~repack=.
 -fstack-protector-strong -Wformat -Werror=format-security -std=gnu++0x 
-D_REENTRANT -Wall -W -fPIC -D_

Bug#831630: idjc: please make the build reproducible

2016-07-17 Thread Chris Lamb
Source: idjc
Version: 0.8.16-1
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: timestamps
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Hi,

Whilst working on the "reproducible builds" effort [0], we noticed
that idjc could not be built reproducibly.

Patch attached.

 [0] https://wiki.debian.org/ReproducibleBuilds


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
--- a/debian/patches/reproducible-build.patch   1970-01-01 02:00:00.0 
+0200
--- b/debian/patches/reproducible-build.patch   2016-07-17 23:34:10.504082438 
+0200
@@ -0,0 +1,18 @@
+Author: Chris Lamb <la...@debian.org>
+Last-Update: 2016-07-17
+
+--- idjc-0.8.16.orig/Makefile.am
 idjc-0.8.16/Makefile.am
+@@ -43,7 +43,11 @@ if GIT_VERSION_CONTROL
+ else
+   rm buildinfo
+ endif
+-  echo Build date: $$(date -R) >> buildinfo
++  if test -n "$$SOURCE_DATE_EPOCH"; then \
++  echo Build date: $$(date --utc --date="@$${SOURCE_DATE_EPOCH}" 
-R) >> buildinfo; \
++  else \
++  echo Build date: $$(date -R) >> buildinfo; \
++  fi
+ 
+ clean-local:
+   rm -f buildinfo ChangeLog.gz README.gz NEWS.gz AUTHORS.gz 
${PACKAGE_NAME}.desktop ${PACKAGE_NAME}.appdata.xml ${PACKAGE_NAME}
--- a/debian/patches/series 2016-07-17 23:17:28.33879 +0200
--- b/debian/patches/series 2016-07-17 23:31:29.038910996 +0200
@@ -1,2 +1,3 @@
 desktop.patch
 man.patch
+reproducible-build.patch
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#828986: liblrdf: FTBFS: devlibs error: There is no package matching [libraptor1-dev] and noone provides it, please report bug to d-shlibs maintainer

2016-06-29 Thread Chris Lamb
> [...] Sorry, not apt-file but apt-cache.  What d-shlibs rely on is an 
> up-to-date APT cache

Ahhh, this was what I needed - for some reason I didn't have pkgcache.bin & 
srcpkgcache.bin, so the whole d-shlibs machinery was refusing to work.

Closing bug in BCC and apologies for the noise...


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

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


Bug#828986: liblrdf: FTBFS: devlibs error: There is no package matching [libraptor1-dev] and noone provides it, please report bug to d-shlibs maintainer

2016-06-29 Thread Chris Lamb
> this failure is most likely because your build environment is buggy

It's always a fresh, clean container image that I recreate entirely (not 
dist-upgrade) at 07:00 UTC on my laptop from the latest sid. I run build-dep 
and then build with debuild; nothing special. 

Other systems -- including the reproducible builds servers -- can reproduce the 
FTBFS, so I am not convinced at this point that my environment is buggy.

> One way that can happen is if your environment blocks network access not 
> only during build but also during installation of build-dependencies.

I don't block internet access. I really should though!

> apt-file initializes its database when installed, and d-shlibs rely on that.

Ah, smells like the bug is there - d-shlibs does not depend on apt-file and, 
clearly, I should not have to manage that dependency manually or have it 
installed in my minimal chroots. :)


Regards,

-- 
  ,''`.
 : :'  :     Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

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


Bug#828986: liblrdf: FTBFS: devlibs error: There is no package matching [libraptor1-dev] and noone provides it, please report bug to d-shlibs maintainer

2016-06-29 Thread Chris Lamb
mples -pliblrdf0 
  dh_installman -pliblrdf0 
  dh_installinfo -pliblrdf0 
  dh_installmenu -pliblrdf0 
  dh_installcron -pliblrdf0 
  dh_installinit -pliblrdf0 
  dh_installdebconf -pliblrdf0 
  dh_installemacsen -pliblrdf0 
  dh_installcatalogs -pliblrdf0 
  dh_installpam -pliblrdf0 
  dh_installlogrotate -pliblrdf0 
  dh_installlogcheck -pliblrdf0 
  dh_installchangelogs -pliblrdf0 ./ChangeLog
  dh_installudev -pliblrdf0 
  dh_lintian -pliblrdf0 
  dh_bugfiles -pliblrdf0 
  dh_install -pliblrdf0 
  dh_link -pliblrdf0 
  dh_buildinfo -pliblrdf0 
  dh_installmime -pliblrdf0 
  dh_installgsettings -pliblrdf0 
  d-shlibmove --commit \
--movedev "debian/tmp/usr/include/*" usr/include/ \
--movedev "debian/tmp/usr/lib/pkgconfig/*.pc" usr/lib/pkgconfig/ \
--moveshl debian/tmp/usr/share/ladspa/rdf/ladspa.rdfs 
usr/share/ladspa/rdf/ \
debian/tmp/usr/lib/liblrdf.so
  Library package automatic movement utility
  devlibs error: There is no package matching [libraptor1-dev] and noone 
provides it, please report bug to d-shlibs maintainer
  debian/rules:65: recipe for target 'binary-post-install/liblrdf0' failed
  make: *** [binary-post-install/liblrdf0] Error 1

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


liblrdf.0.4.0-7.unstable.amd64.log.txt.gz
Description: Binary data
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Comments regarding obs-studio_0.14.2+dfsg1-1_amd64.changes

2016-06-29 Thread Chris Lamb
Some missing references to Blackmagic.. Please fix on next upload.



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


Bug#828879: dataquay: FTBFS: terminate called after throwing an instance of 'Dataquay::RDFTransactionError'

2016-06-28 Thread Chris Lamb
Source: dataquay
Version: 0.9-3
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

dataquay fails to build from source in unstable/amd64:

  [..]

  Setting up libltdl7:amd64 (2.4.6-0.1) ...
  Setting up libxslt1.1:amd64 (1.1.28-4) ...
  Setting up libyajl2:amd64 (2.1.0-2) ...
  Setting up libraptor2-0:amd64 (2.0.14-1) ...
  Setting up libmhash2:amd64 (0.9.9.9-7) ...
  Setting up librasqal3:amd64 (0.9.32-1) ...
  Setting up librdf0:amd64 (1.0.17-1+b1) ...
  Setting up icu-devtools (55.1-7) ...
  Setting up libicu-dev:amd64 (55.1-7) ...
  Setting up libxml2-dev:amd64 (2.9.3+dfsg1-1.2) ...
  Setting up libcurl4-gnutls-dev:amd64 (7.47.0-1) ...
  Setting up libxslt1-dev:amd64 (1.1.28-4) ...
  Setting up pkg-config (0.29-4) ...
  Setting up libyajl-dev:amd64 (2.1.0-2) ...
  Setting up libraptor2-dev (2.0.14-1) ...
  Setting up libgmpxx4ldbl:amd64 (2:6.1.1+dfsg-1) ...
  Setting up libgmp-dev:amd64 (2:6.1.1+dfsg-1) ...
  Setting up librasqal3-dev (0.9.32-1) ...
  Setting up librdf0-dev (1.0.17-1+b1) ...
  Setting up dataquay-build-deps (0.9-3) ...
  Processing triggers for libc-bin (2.22-13) ...
  Processing triggers for systemd (230-3) ...
  
  
**
  ** Environment
  **
  
**
  
  
PATH=/home/lamby/git/projects/dotfiles/dotfiles/..//bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
  HOSTNAME=ce41d9315156
  TERM=xterm
  PAGER=more
  DISPLAY=:0
  DOCKER_IMAGE=lamby-debian-sid
  DEB_BUILD_OPTIONS=parallel=9
  PIP_DOWNLOAD_CACHE=/home/lamby/.cache/pip
  HOME=/home/lamby
  LOGNAME=lamby
  SHLVL=1
  PWD=/home/lamby/temp/cdt.20160628205323.1yHllk2PFv.dataquay/dataquay-0.9
  OLDPWD=/home/lamby/temp/cdt.20160628205323.1yHllk2PFv.dataquay
  GPG_TTY=/dev/console
  QUILT_PATCHES=debian/patches
  QUILT_NO_DIFF_INDEX=1
  QUILT_REFRESH_ARGS=-p ab --no-timestamps --no-index
  DEBEMAIL=la...@debian.org
  DEBFULLNAME=Chris Lamb
  EDITOR=vim
  LESS=-cgiFx4M
  BLASTER=A220 I5 D1 H5 P330 T6
  _=/usr/bin/env
  
  
**
  ** Building dataquay 0.9-3 on amd64   
  **
  
**
  
   dpkg-buildpackage -rfakeroot -D -us -uc -b
  dpkg-buildpackage: info: source package dataquay
  dpkg-buildpackage: info: source version 0.9-3
  dpkg-buildpackage: info: source distribution unstable
  dpkg-buildpackage: info: source changed by Jaromír Mikeš 
<mira.mi...@seznam.cz>
   dpkg-source --before-build dataquay-0.9
  dpkg-buildpackage: info: host architecture amd64
   fakeroot debian/rules clean
  dh clean --parallel
 dh_testdir -O--parallel
 dh_auto_clean -O--parallel
 dh_clean -O--parallel
   debian/rules build
  dh build --parallel
 dh_testdir -O--parallel
 dh_update_autotools_config -O--parallel
 debian/rules override_dh_auto_configure
  make[1]: Entering directory 
'/home/lamby/temp/cdt.20160628205323.1yHllk2PFv.dataquay/dataquay-0.9'
  qmake dataquay.pro PREFIX=/usr LIBDIR=/usr/lib/x86_64-linux-gnu
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20160628205323.1yHllk2PFv.dataquay/dataquay-0.9'
 dh_auto_build -O--parallel
make -j9
  make[1]: Entering directory 
'/home/lamby/temp/cdt.20160628205323.1yHllk2PFv.dataquay/dataquay-0.9'
  ( test -e Makefile.lib || /usr/lib/x86_64-linux-gnu/qt5/bin/qmake 
/home/lamby/temp/cdt.20160628205323.1yHllk2PFv.dataquay/dataquay-0.9/lib.pro 
PREFIX=/usr LIBDIR=/usr/lib/x86_64-linux-gnu -o Makefile.lib ) && make -f 
Makefile.lib 
  make[2]: Entering directory 
'/home/lamby/temp/cdt.20160628205323.1yHllk2PFv.dataquay/dataquay-0.9'
  g++ -c -m64 -pipe -I/usr/include/rasqal -I/usr/include/raptor2 -O2 
-std=gnu++0x -Wall -W -D_REENTRANT -fPIC -DUSE_REDLAND -DNDEBUG -DQT_NO_DEBUG 
-DQT_CORE_LIB -I. -Idataquay -isystem /usr/include/x86_64-linux-gnu/qt5 
-isystem /usr/include/x86_64-linux-gnu/qt5/QtCore -Io 
-I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++-64 -o o/Connection.o 
src/Connection.cpp
  g++ -c -m64 -pipe -I/usr/include/rasqal -I/usr/include/raptor2 -O2 
-std=gnu++0x -Wall -W -D_REENTRANT -fPIC -DUSE_REDLAND -DNDEBUG -DQT_NO_DEBUG 
-DQT_CORE_LIB -I. -Idataquay -isystem /usr/include/x86_64-linux-gnu/qt5 
-isystem /usr/include/x86_64-linux-gnu/qt5/QtCore -Io 
-I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++-64 -o o/Node.o src/Node.cpp
  g++ -c -m64 -pipe -I/usr/include/rasqal -I/usr/include/raptor2 -O2 
-std=gnu++0x -Wall -W -D_REENTRANT -fPIC -DUSE_REDLAND -DNDEBUG -DQT_NO_DEBUG 
-DQT_CORE_LIB -I. -Idataquay -isystem /usr/include/x86_64-linux-gnu/qt5 

Bug#827516: Fwd: qmidinet is marked for autoremoval from testing

2016-06-27 Thread Chris Lamb
[Adding 827...@bugs.debian.org to CC]

> does this bug still apply with new 0.4.0 release of qmidinet in sid and 
> testing?

I cannot reproduce anymore with 0.4.0-1 on amd64, so closing.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

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


Bug#828060: libffado: please make the build reproducible

2016-06-24 Thread Chris Lamb
Source: libffado
Version: 2.2.1-3
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: randomness
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Hi,

Whilst working on the "reproducible builds" effort [0], we noticed that 
libffado could not be built reproducibly. A file contains (rather useless) 
locale-specific test output.

Patch attached.

 [0] https://wiki.debian.org/ReproducibleBuilds


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
--- a/debian/rules  2016-06-24 10:45:45.783185973 +0200
--- b/debian/rules  2016-06-24 16:01:33.444526839 +0200
@@ -84,4 +84,5 @@
dh_python2 -pffado-mixer-qt4
 
 binary-install/ffado-tools::
+   find debian/tmp -type f -name "static_info.txt" -delete
dh_python2 -pffado-tools
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#826386: calf: FTBFS: mv: cannot stat './config.guess': No such file or directory

2016-06-05 Thread Chris Lamb
 line 
537,  line 13.
  Wide character (U+447) in pattern match (m//) at /usr/bin/licensecheck line 
537,  line 13.
  Wide character (U+435) in pattern match (m//) at /usr/bin/licensecheck line 
537,  line 13.
  Wide character (U+435) in pattern match (m//) at /usr/bin/licensecheck line 
537,  line 13.
  Wide character (U+435) in pattern match (m//) at /usr/bin/licensecheck line 
537,  line 13.
  Wide character (U+435) in pattern match (m//) at /usr/bin/licensecheck line 
537,  line 13.
  Wide character (U+435) in pattern match (m//) at /usr/bin/licensecheck line 
537,  line 13.
  Wide character (U+440) in pattern match (m//) at /usr/bin/licensecheck line 
537,  line 13.
  Wide character (U+440) in pattern match (m//) at /usr/bin/licensecheck line 
537,  line 13.
  Wide character (U+440) in pattern match (m//) at /usr/bin/licensecheck line 
537,  line 13.
  Wide character (U+440) in pattern match (m//) at /usr/bin/licensecheck line 
537,  line 13.
  Wide character (U+440) in pattern match (m//) at /usr/bin/licensecheck line 
537,  line 13.
  Wide character (U+435) in pattern match (m//) at /usr/bin/licensecheck line 
537,  line 13.
  Wide character (U+435) in pattern match (m//) at /usr/bin/licensecheck line 
537,  line 13.
  Wide character (U+435) in pattern match (m//) at /usr/bin/licensecheck line 
537,  line 13.
  Wide character (U+435) in pattern match (m//) at /usr/bin/licensecheck line 
537,  line 13.
  Wide character (U+435) in pattern match (m//) at /usr/bin/licensecheck line 
537,  line 13.
  Wide character (U+437) in pattern match (m//) at /usr/bin/licensecheck line 
537,  line 13.
  Wide character (U+437) in pattern match (m//) at /usr/bin/licensecheck line 
537,  line 13.
  Wide character (U+437) in pattern match (m//) at /usr/bin/licensecheck line 
537,  line 13.
  Wide character (U+437) in pattern match (m//) at /usr/bin/licensecheck line 
537,  line 13.
  Wide character (U+437) in pattern match (m//) at /usr/bin/licensecheck line 
537,  line 13.
  Wide character (U+3C6) in pattern match (m//) at /usr/bin/licensecheck line 
537,  line 140.
  Wide character (U+3C6) in pattern match (m//) at /usr/bin/licensecheck line 
537,  line 140.
  Wide character (U+3C6) in pattern match (m//) at /usr/bin/licensecheck line 
537,  line 140.
  Wide character (U+3C6) in pattern match (m//) at /usr/bin/licensecheck line 
537,  line 140.
  Wide character (U+3C6) in pattern match (m//) at /usr/bin/licensecheck line 
537,  line 140.
  30 combinations of copyright and licensing found.
  No new copyright notices found - assuming no news is good news...
  touch debian/stamp-copyright-check
  mkdir -p "debian/upstream-cruft"
  mv "calf.desktop" "debian/upstream-cruft/calf.desktop";  mv "configure" 
"debian/upstream-cruft/configure";  mv "INSTALL" 
"debian/upstream-cruft/INSTALL";  mv "Makefile.in" 
"debian/upstream-cruft/Makefile.in";  mv "gui/Makefile.in" 
"debian/upstream-cruft/gui/Makefile.in";  mv "gui/icons/LV2/Makefile.in" 
"debian/upstream-cruft/gui/icons/LV2/Makefile.in";  mv "icons/Makefile.in" 
"debian/upstream-cruft/icons/Makefile.in";  mv "src/Makefile.in" 
"debian/upstream-cruft/src/Makefile.in";  mv "src/calf/Makefile.in" 
"debian/upstream-cruft/src/calf/Makefile.in";  mv "aclocal.m4" 
"debian/upstream-cruft/aclocal.m4";  mv "config.guess" 
"debian/upstream-cruft/config.guess";  mv "config.sub" 
"debian/upstream-cruft/config.sub";  mv "compile" 
"debian/upstream-cruft/compile";  mv "config.h.in" 
"debian/upstream-cruft/config.h.in";  mv "depcomp" 
"debian/upstream-cruft/depcomp";  mv "install-sh" 
"debian/upstream-cruft/install-sh";  mv "ltmain.sh" 
"debian/upstream-cruft/ltmain.sh";  mv "missing" 
"debian/upstream-cruft/missing";
  touch debian/stamp-upstream-cruft
  find -type f -name '*.metadata_dump' -delete
  set -e;   mv ./config.guess ./config.guess.cdbs-orig; cp --remove-destination 
/usr/share/misc/config.guess ./config.guess;
  mv: cannot stat './config.guess': No such file or directory
  /usr/share/cdbs/1/rules/buildcore.mk:147: recipe for target 'update-config' 
failed
  make: *** [update-config] Error 1

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


calf.0.0.60-2.unstable.amd64.log.txt.gz
Description: Binary data
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#825370: unicap: FTBFS: mv: cannot stat './config.guess': No such file or directory

2016-05-26 Thread Chris Lamb
unicap-0.9.12'
  /usr/share/cdbs/1/class/makefile.mk:91: recipe for target 'makefile-clean' 
failed
  make: [makefile-clean] Error 2 (ignored)
  rm -f debian/stamp-makefile-check
  rm -f debian/stamp-autotools
  rmdir --ignore-fail-on-non-empty .
  rmdir: failed to remove '.': Invalid argument
  /usr/share/cdbs/1/class/autotools.mk:64: recipe for target 'makefile-clean' 
failed
  make: [makefile-clean] Error 1 (ignored)
  set -e;  
  rm -f debian/copyright_newhints
  rm -f debian/cdbs-install-list debian/cdbs-package-list 
debian/stamp-copyright-check
  rm -rf "debian/upstream-cruft"
  rm -f debian/stamp-upstream-cruft
  rm -f debian/stamp-autotools-files
  dh_clean 
  rm -f debian/install-unicap-stamp
  rm -rf debian/upstream-stuff
  rm -rf m4
   debian/rules build
  test -x debian/rules
  mkdir -p "."
  mkdir -p m4
  CDBS WARNING:DEB_COPYRIGHT_CHECK_IGNORE_REGEX is deprecated since 0.4.133
  CDBS WARNING:DEB_DH_INSTALL_ARGS is deprecated since 0.4.85
  
  Scanning upstream source for new/changed copyright notices...
  
  set -e; licensecheck --check '.*' --recursive --copyright --ignore 
'^(doc/api/html/images/logo_unicap\.gif|examples/c/xv_display/xv_display-0\.0\.7\.tar\.gz|debian/(changelog|copyright(|_hints|_newhints)))'
 --lines 9 --encoding utf8 * | /usr/lib/cdbs/licensecheck2dep5 > 
debian/copyright_newhints
  19 combinations of copyright and licensing found.
  WARNING:  New or changed notices discovered:
  
   po/Makevars
   po/fr.po
  Files: Makefile.in
  Copyright: 1994-2002, 2003-2009, Free Software Foundation,
  Files: aclocal.m4
   config.guess
  Copyright: 1992-1999, 2000-2009, Free Software Foundation, …
1996-1997, 1999-2000, 2002-2006, 2008-2009, Free Software …
1996-2004, 2005-2009, Free Software Foundation, Inc.
  Files: install-sh
  Copyright: 1994, X Consortium
and license
  License: Expat
   FIXME
  
  Files: configure
  Copyright: 1992-1996, 1998-2001, 2002-2009, Free Software Foundation,
  License: GPL-2+ GPL-2 or later
   FIXME
  
  Files: INSTALL
  Copyright: 1994-1996, 1999-2002, 2004-2005, 2006-2009, Free …
  Files: po/Makefile.in.in
  Copyright: 1995-1997, Ulrich Drepper <drep...@gnu.ai.mit.edu…
2004-2008, Rodney Dawes <dobey.p...@gmail.com>
  
  To fix the situation please do the following:
1) Examine debian/copyright_* and referenced files
2) Update debian/copyright as needed
3) Replace debian/copyright_hints with debian/copyright_newhints
  touch debian/stamp-copyright-check
  touch debian/stamp-upstream-cruft
  mkdir -p debian/upstream-stuff
  mv include/unicap_version.h debian/upstream-stuff/include/unicap_version.h
  mv doc/libunicap/html debian/upstream-stuff/doc/libunicap/html
  mv doc/libunicap/tmpl debian/upstream-stuff/doc/libunicap/tmpl
  mv doc/libunicap/xml debian/upstream-stuff/doc/libunicap/xml
  mv ./Makefile.in debian/upstream-stuff/./Makefile.in
  mv common/Makefile.in debian/upstream-stuff/common/Makefile.in
  mv cpi/Makefile.in debian/upstream-stuff/cpi/Makefile.in
  mv cpi/dcam/Makefile.in debian/upstream-stuff/cpi/dcam/Makefile.in
  mv cpi/euvccam/Makefile.in debian/upstream-stuff/cpi/euvccam/Makefile.in
  mv cpi/include/Makefile.in debian/upstream-stuff/cpi/include/Makefile.in
  mv cpi/thing/Makefile.in debian/upstream-stuff/cpi/thing/Makefile.in
  mv cpi/v4l/Makefile.in debian/upstream-stuff/cpi/v4l/Makefile.in
  mv cpi/v4l2cpi/Makefile.in debian/upstream-stuff/cpi/v4l2cpi/Makefile.in
  mv cpi/vid21394/Makefile.in debian/upstream-stuff/cpi/vid21394/Makefile.in
  mv data/Makefile.in debian/upstream-stuff/data/Makefile.in
  mv doc/Makefile.in debian/upstream-stuff/doc/Makefile.in
  mv doc/libunicap/Makefile.in debian/upstream-stuff/doc/libunicap/Makefile.in
  mv include/Makefile.in debian/upstream-stuff/include/Makefile.in
  mv src/Makefile.in debian/upstream-stuff/src/Makefile.in
  mv aclocal.m4 debian/upstream-stuff/aclocal.m4
  mv configure debian/upstream-stuff/configure
  mv config.h.in debian/upstream-stuff/config.h.in
  mv config.guess debian/upstream-stuff/config.guess
  mv config.sub debian/upstream-stuff/config.sub
  mv depcomp debian/upstream-stuff/depcomp
  mv install-sh debian/upstream-stuff/install-sh
  mv missing debian/upstream-stuff/missing
  mv compile debian/upstream-stuff/compile
  mv ltmain.sh debian/upstream-stuff/ltmain.sh
  set -e;   mv ./config.guess ./config.guess.cdbs-orig; cp --remove-destination 
/usr/share/misc/config.guess ./config.guess;
  mv: cannot stat './config.guess': No such file or directory
  /usr/share/cdbs/1/rules/buildcore.mk:147: recipe for target 'update-config' 
failed
  make: *** [update-config] Error 1

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


unicap.0.9.12-2.unstable.amd64.log.txt.gz
Description: Binary data
___
pkg-multimedia-maintainers m

Bug#817879: csound: FTBFS: libmvec_nonshared.a(svml_finite_alias.oS): relocation R_X86_64_PC32 against undefined symbol `_ZGVbN2v_log@@GLIBC_2.22' can not be used when making a shared object; recompil

2016-03-11 Thread Chris Lamb
Source: csound
Version: 1:6.05~dfsg1-7
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

csound fails to build from source in unstable/amd64:

  [..]

CMakeFiles/csound64.dir/InOut/libmpadec/mp3dec.c.o 
CMakeFiles/csound64.dir/csound_orclex.c.o 
CMakeFiles/csound64.dir/csound_orcparse.c.o 
CMakeFiles/csound64.dir/csound_prelex.c.o 
CMakeFiles/csound64.dir/Engine/csound_orc_semantics.c.o 
CMakeFiles/csound64.dir/Engine/csound_orc_expressions.c.o 
CMakeFiles/csound64.dir/Engine/csound_orc_optimize.c.o 
CMakeFiles/csound64.dir/Engine/csound_orc_compile.c.o 
CMakeFiles/csound64.dir/Engine/new_orc_parser.c.o 
CMakeFiles/csound64.dir/Engine/symbtab.c.o 
CMakeFiles/csound64.dir/Engine/cs_new_dispatch.c.o 
CMakeFiles/csound64.dir/Engine/cs_par_base.c.o 
CMakeFiles/csound64.dir/Engine/cs_par_orc_semantic_analysis.c.o 
CMakeFiles/csound64.dir/Engine/cs_par_dispatch.c.o -lsndfile -lpthread -lm -ldl 
  /usr/bin/ld: 
/usr/lib/x86_64-linux-gnu/libmvec_nonshared.a(svml_finite_alias.oS): relocation 
R_X86_64_PC32 against undefined symbol `_ZGVbN2v_log@@GLIBC_2.22' can not be 
used when making a shared object; recompile with -fPIC
  /usr/bin/ld: final link failed: Bad value
  collect2: error: ld returned 1 exit status
  CMakeFiles/csound64.dir/build.make:5910: recipe for target 
'libcsound64.so.6.0' failed
  make[3]: *** [libcsound64.so.6.0] Error 1
  make[3]: Leaving directory 
'/home/lamby/temp/cdt.20160311082752.Nm1qPTY5Ke/csound-6.05~dfsg1/obj-x86_64-linux-gnu'
  CMakeFiles/Makefile2:102: recipe for target 'CMakeFiles/csound64.dir/all' 
failed
  make[2]: *** [CMakeFiles/csound64.dir/all] Error 2
  make[2]: Leaving directory 
'/home/lamby/temp/cdt.20160311082752.Nm1qPTY5Ke/csound-6.05~dfsg1/obj-x86_64-linux-gnu'
  Makefile:163: recipe for target 'all' failed
  make[1]: *** [all] Error 2
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20160311082752.Nm1qPTY5Ke/csound-6.05~dfsg1/obj-x86_64-linux-gnu'
  /usr/share/cdbs/1/class/makefile.mk:47: recipe for target 
'debian/stamp-makefile-build' failed
  make: *** [debian/stamp-makefile-build] Error 2

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


csound.1:6.05~dfsg1-7.unstable.amd64.log.txt.gz
Description: Binary data
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#816583: kodi-pvr-wmc: FTBFS: error: 'PVR_ADDON_CAPABILITIES {aka struct PVR_ADDON_CAPABILITIES}' has no member named 'bSupportsRecordingFolders'

2016-03-03 Thread Chris Lamb
Source: kodi-pvr-wmc
Version: 0.5.8+git20150717-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

kodi-pvr-wmc fails to build from source in unstable/amd64:

  [..]

  [ 14%] Building CXX object CMakeFiles/pvr.wmc.dir/src/client.cpp.o
  /usr/bin/c++   -DBUILD_KODI_ADDON -DTARGET_LINUX -DTARGET_POSIX -DUSE_DEMUX 
-D_LINUX -Dpvr_wmc_EXPORTS -I/usr/include/kodi -I/usr/include/cec-platform  -g 
-O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time 
-D_FORTIFY_SOURCE=2 -std=gnu++11 -flto -O3 -DNDEBUG -fPIC   -o 
CMakeFiles/pvr.wmc.dir/src/client.cpp.o -c 
/home/lamby/temp/cdt.20160303080500.RHbdt4ZGYZ/kodi-pvr-wmc-0.5.8+git20150717/src/client.cpp
  
/home/lamby/temp/cdt.20160303080500.RHbdt4ZGYZ/kodi-pvr-wmc-0.5.8+git20150717/src/client.cpp:
 In function 'PVR_ERROR GetAddonCapabilities(PVR_ADDON_CAPABILITIES*)':
  
/home/lamby/temp/cdt.20160303080500.RHbdt4ZGYZ/kodi-pvr-wmc-0.5.8+git20150717/src/client.cpp:331:18:
 error: 'PVR_ADDON_CAPABILITIES {aka struct PVR_ADDON_CAPABILITIES}' has no 
member named 'bSupportsRecordingFolders'
 pCapabilities->bSupportsRecordingFolders = false;
^
  CMakeFiles/pvr.wmc.dir/build.make:65: recipe for target 
'CMakeFiles/pvr.wmc.dir/src/client.cpp.o' failed
  make[3]: *** [CMakeFiles/pvr.wmc.dir/src/client.cpp.o] Error 1
  make[3]: Leaving directory 
'/home/lamby/temp/cdt.20160303080500.RHbdt4ZGYZ/kodi-pvr-wmc-0.5.8+git20150717/obj-x86_64-linux-gnu'
  CMakeFiles/Makefile2:102: recipe for target 'CMakeFiles/pvr.wmc.dir/all' 
failed
  make[2]: *** [CMakeFiles/pvr.wmc.dir/all] Error 2
  make[2]: Leaving directory 
'/home/lamby/temp/cdt.20160303080500.RHbdt4ZGYZ/kodi-pvr-wmc-0.5.8+git20150717/obj-x86_64-linux-gnu'
  Makefile:152: recipe for target 'all' failed
  make[1]: *** [all] Error 2
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20160303080500.RHbdt4ZGYZ/kodi-pvr-wmc-0.5.8+git20150717/obj-x86_64-linux-gnu'
  dh_auto_build: make -j1 returned exit code 2
  debian/rules:12: recipe for target 'build' failed
  make: *** [build] Error 2

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  :     Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


kodi-pvr-wmc.0.5.8+git20150717-1.unstable.amd64.log.txt.gz
Description: Binary data
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#816581: kodi-pvr-mythtv: FTBFS: error: 'PVR_TIMER {aka struct PVR_TIMER}' has no member named 'bIsRepeating'

2016-03-03 Thread Chris Lamb
Source: kodi-pvr-mythtv
Version: 2.8.0+git20151119-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

kodi-pvr-mythtv fails to build from source in unstable/amd64:

  
/home/lamby/temp/cdt.20160303080359.w2w1oozu0F/kodi-pvr-mythtv-2.8.0+git20151119/src/pvrclient-mythtv.cpp:
 In member function 'PVR_ERROR PVRClientMythTV::GetTimers(ADDON_HANDLE)':
  
/home/lamby/temp/cdt.20160303080359.w2w1oozu0F/kodi-pvr-mythtv-2.8.0+git20151119/src/pvrclient-mythtv.cpp:1523:11:
 error: 'PVR_TIMER {aka struct PVR_TIMER}' has no member named 'bIsRepeating'
 tag.bIsRepeating = meta.isRepeating;
 ^
  
/home/lamby/temp/cdt.20160303080359.w2w1oozu0F/kodi-pvr-mythtv-2.8.0+git20151119/src/pvrclient-mythtv.cpp:1534:11:
 error: 'PVR_TIMER {aka struct PVR_TIMER}' has no member named 'bIsRepeating'
 tag.bIsRepeating = false;
 ^
  
/home/lamby/temp/cdt.20160303080359.w2w1oozu0F/kodi-pvr-mythtv-2.8.0+git20151119/src/pvrclient-mythtv.cpp:1614:9:
 error: 'PVR_TIMER {aka struct PVR_TIMER}' has no member named 'bIsRepeating'
   tag.bIsRepeating = false;
   ^
  
/home/lamby/temp/cdt.20160303080359.w2w1oozu0F/kodi-pvr-mythtv-2.8.0+git20151119/src/pvrclient-mythtv.cpp:
 In member function 'MythRecordingRule 
PVRClientMythTV::PVRtoMythRecordingRule(const PVR_TIMER&)':
  
/home/lamby/temp/cdt.20160303080359.w2w1oozu0F/kodi-pvr-mythtv-2.8.0+git20151119/src/pvrclient-mythtv.cpp:1736:13:
 error: 'const PVR_TIMER {aka const struct PVR_TIMER}' has no member named 
'bIsRepeating'
 if (timer.bIsRepeating)
   ^
  
/home/lamby/temp/cdt.20160303080359.w2w1oozu0F/kodi-pvr-mythtv-2.8.0+git20151119/src/pvrclient-mythtv.cpp:
 In member function 'PVR_ERROR PVRClientMythTV::UpdateTimer(const PVR_TIMER&)':
  
/home/lamby/temp/cdt.20160303080359.w2w1oozu0F/kodi-pvr-mythtv-2.8.0+git20151119/src/pvrclient-mythtv.cpp:1848:20:
 error: 'struct PVR_TIMER' has no member named 'bIsRepeating'
 if (old->second->bIsRepeating && !newTimer.bIsRepeating)
  ^
  
/home/lamby/temp/cdt.20160303080359.w2w1oozu0F/kodi-pvr-mythtv-2.8.0+git20151119/src/pvrclient-mythtv.cpp:1848:46:
 error: 'PVR_TIMER {aka struct PVR_TIMER}' has no member named 'bIsRepeating'
 if (old->second->bIsRepeating && !newTimer.bIsRepeating)
^
  
/home/lamby/temp/cdt.20160303080359.w2w1oozu0F/kodi-pvr-mythtv-2.8.0+git20151119/src/pvrclient-mythtv.cpp:1850:14:
 error: 'PVR_TIMER {aka struct PVR_TIMER}' has no member named 'bIsRepeating'
   newTimer.bIsRepeating = true;
^
  
/home/lamby/temp/cdt.20160303080359.w2w1oozu0F/kodi-pvr-mythtv-2.8.0+git20151119/src/pvrclient-mythtv.cpp:1856:20:
 error: 'struct PVR_TIMER' has no member named 'bIsRepeating'
 if (old->second->bIsRepeating != newTimer.bIsRepeating || 
old->second->iWeekdays != newTimer.iWeekdays)
  ^
  
/home/lamby/temp/cdt.20160303080359.w2w1oozu0F/kodi-pvr-mythtv-2.8.0+git20151119/src/pvrclient-mythtv.cpp:1856:45:
 error: 'PVR_TIMER {aka struct PVR_TIMER}' has no member named 'bIsRepeating'
 if (old->second->bIsRepeating != newTimer.bIsRepeating || 
old->second->iWeekdays != newTimer.iWeekdays)
   ^
  CMakeFiles/pvr.mythtv.dir/build.make:449: recipe for target 
'CMakeFiles/pvr.mythtv.dir/src/pvrclient-mythtv.cpp.o' failed
  make[3]: *** [CMakeFiles/pvr.mythtv.dir/src/pvrclient-mythtv.cpp.o] Error 1
  make[3]: Leaving directory 
'/home/lamby/temp/cdt.20160303080359.w2w1oozu0F/kodi-pvr-mythtv-2.8.0+git20151119/obj-x86_64-linux-gnu'
  CMakeFiles/Makefile2:102: recipe for target 'CMakeFiles/pvr.mythtv.dir/all' 
failed
  make[2]: *** [CMakeFiles/pvr.mythtv.dir/all] Error 2
  make[2]: Leaving directory 
'/home/lamby/temp/cdt.20160303080359.w2w1oozu0F/kodi-pvr-mythtv-2.8.0+git20151119/obj-x86_64-linux-gnu'
  Makefile:152: recipe for target 'all' failed
  make[1]: *** [all] Error 2
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20160303080359.w2w1oozu0F/kodi-pvr-mythtv-2.8.0+git20151119/obj-x86_64-linux-gnu'
  dh_auto_build: make -j1 returned exit code 2
  debian/rules:15: recipe for target 'build' failed
  make: *** [build] Error 2

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


kodi-pvr-mythtv.2.8.0+git20151119-1.unstable.amd64.log.txt.gz
Description: Binary data
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#816582: kodi-pvr-vuplus: FTBFS: client.cpp:339:18: error: 'PVR_ADDON_CAPABILITIES {aka struct PVR_ADDON_CAPABILITIES}' has no member named 'bSupportsRecordingFolders'

2016-03-03 Thread Chris Lamb
Source: kodi-pvr-vuplus
Version: 1.10.7+git20150717-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

kodi-pvr-vuplus fails to build from source in unstable/amd64:

  [..]

  
/home/lamby/temp/cdt.20160303080444.gZ68UazG2P/kodi-pvr-vuplus-1.10.7+git20150717/src/client.cpp:
 In function 'PVR_ERROR GetAddonCapabilities(PVR_ADDON_CAPABILITIES*)':
  
/home/lamby/temp/cdt.20160303080444.gZ68UazG2P/kodi-pvr-vuplus-1.10.7+git20150717/src/client.cpp:339:18:
 error: 'PVR_ADDON_CAPABILITIES {aka struct PVR_ADDON_CAPABILITIES}' has no 
member named 'bSupportsRecordingFolders'
 pCapabilities->bSupportsRecordingFolders   = true;
^
  CMakeFiles/pvr.vuplus.dir/build.make:65: recipe for target 
'CMakeFiles/pvr.vuplus.dir/src/client.cpp.o' failed
  make[3]: *** [CMakeFiles/pvr.vuplus.dir/src/client.cpp.o] Error 1
  make[3]: Leaving directory 
'/home/lamby/temp/cdt.20160303080444.gZ68UazG2P/kodi-pvr-vuplus-1.10.7+git20150717/obj-x86_64-linux-gnu'
  CMakeFiles/Makefile2:102: recipe for target 'CMakeFiles/pvr.vuplus.dir/all' 
failed
  make[2]: *** [CMakeFiles/pvr.vuplus.dir/all] Error 2
  make[2]: Leaving directory 
'/home/lamby/temp/cdt.20160303080444.gZ68UazG2P/kodi-pvr-vuplus-1.10.7+git20150717/obj-x86_64-linux-gnu'
  Makefile:152: recipe for target 'all' failed
  make[1]: *** [all] Error 2
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20160303080444.gZ68UazG2P/kodi-pvr-vuplus-1.10.7+git20150717/obj-x86_64-linux-gnu'
  dh_auto_build: make -j1 returned exit code 2
  debian/rules:12: recipe for target 'build' failed
  make: *** [build] Error 2

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  :     Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


kodi-pvr-vuplus.1.10.7+git20150717-1.unstable.amd64.log.txt.gz
Description: Binary data
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#816580: kodi-pvr-dvbviewer: FTBFS: DvbData.cpp:301:9: error: 'PVR_TIMER {aka struct PVR_TIMER}' has no member named 'bIsRepeating'

2016-03-03 Thread Chris Lamb
Source: kodi-pvr-dvbviewer
Version: 1.10.35+git20150717-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

kodi-pvr-dvbviewer fails to build from source in unstable/amd64:

  
/home/lamby/temp/cdt.20160303080342.kJYepBFIIF/kodi-pvr-dvbviewer-1.10.35+git20150717/src/DvbData.cpp:
 In member function 'bool Dvb::GetTimers(ADDON_HANDLE)':
  
/home/lamby/temp/cdt.20160303080342.kJYepBFIIF/kodi-pvr-dvbviewer-1.10.35+git20150717/src/DvbData.cpp:301:9:
 error: 'PVR_TIMER {aka struct PVR_TIMER}' has no member named 'bIsRepeating'
   tag.bIsRepeating  = (timer->weekdays != 0);
   ^
  CMakeFiles/pvr.dvbviewer.dir/build.make:89: recipe for target 
'CMakeFiles/pvr.dvbviewer.dir/src/DvbData.cpp.o' failed
  make[3]: *** [CMakeFiles/pvr.dvbviewer.dir/src/DvbData.cpp.o] Error 1
  make[3]: Leaving directory 
'/home/lamby/temp/cdt.20160303080342.kJYepBFIIF/kodi-pvr-dvbviewer-1.10.35+git20150717/obj-x86_64-linux-gnu'
  CMakeFiles/Makefile2:102: recipe for target 
'CMakeFiles/pvr.dvbviewer.dir/all' failed
  make[2]: *** [CMakeFiles/pvr.dvbviewer.dir/all] Error 2
  make[2]: Leaving directory 
'/home/lamby/temp/cdt.20160303080342.kJYepBFIIF/kodi-pvr-dvbviewer-1.10.35+git20150717/obj-x86_64-linux-gnu'
  Makefile:152: recipe for target 'all' failed
  make[1]: *** [all] Error 2
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20160303080342.kJYepBFIIF/kodi-pvr-dvbviewer-1.10.35+git20150717/obj-x86_64-linux-gnu'
  dh_auto_build: make -j1 returned exit code 2
  debian/rules:12: recipe for target 'build' failed
  make: *** [build] Error 2

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  :     Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


kodi-pvr-dvbviewer.1.10.35+git20150717-1.unstable.amd64.log.txt.gz
Description: Binary data
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#816251: kodi-pvr-vdr-vnsi: FTBFS: VNSIData.cpp:430:7: error: 'PVR_TIMER {aka struct PVR_TIMER}' has no member named 'bIsRepeating'

2016-02-28 Thread Chris Lamb
ng  = tag.iWeekdays == 0 ? false : true;
 ^
  
/home/lamby/temp/cdt.20160229072316.hm21oP4ZsC/kodi-pvr-vdr-vnsi-1.10.10/src/VNSIData.cpp:
 In member function 'PVR_ERROR cVNSIData::AddTimer(const PVR_TIMER&)':
  
/home/lamby/temp/cdt.20160229072316.hm21oP4ZsC/kodi-pvr-vdr-vnsi-1.10.10/src/VNSIData.cpp:549:30:
 error: 'const PVR_TIMER {aka const struct PVR_TIMER}' has no member named 
'bIsRepeating'
 if (!vrp.add_U32(timerinfo.bIsRepeating ? timerinfo.firstDay : 0))   
return PVR_ERROR_UNKNOWN;
^
  
/home/lamby/temp/cdt.20160229072316.hm21oP4ZsC/kodi-pvr-vdr-vnsi-1.10.10/src/VNSIData.cpp:
 In member function 'PVR_ERROR cVNSIData::UpdateTimer(const PVR_TIMER&)':
  
/home/lamby/temp/cdt.20160229072316.hm21oP4ZsC/kodi-pvr-vdr-vnsi-1.10.10/src/VNSIData.cpp:632:30:
 error: 'const PVR_TIMER {aka const struct PVR_TIMER}' has no member named 
'bIsRepeating'
 if (!vrp.add_U32(timerinfo.bIsRepeating ? timerinfo.firstDay : 0))   
return PVR_ERROR_UNKNOWN;
^
  CMakeFiles/pvr.vdr.vnsi.dir/build.make:233: recipe for target 
'CMakeFiles/pvr.vdr.vnsi.dir/src/VNSIData.cpp.o' failed
  make[3]: *** [CMakeFiles/pvr.vdr.vnsi.dir/src/VNSIData.cpp.o] Error 1
  make[3]: Leaving directory 
'/home/lamby/temp/cdt.20160229072316.hm21oP4ZsC/kodi-pvr-vdr-vnsi-1.10.10/obj-x86_64-linux-gnu'
  CMakeFiles/Makefile2:102: recipe for target 'CMakeFiles/pvr.vdr.vnsi.dir/all' 
failed
  make[2]: *** [CMakeFiles/pvr.vdr.vnsi.dir/all] Error 2
  make[2]: Leaving directory 
'/home/lamby/temp/cdt.20160229072316.hm21oP4ZsC/kodi-pvr-vdr-vnsi-1.10.10/obj-x86_64-linux-gnu'
  Makefile:152: recipe for target 'all' failed
  make[1]: *** [all] Error 2
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20160229072316.hm21oP4ZsC/kodi-pvr-vdr-vnsi-1.10.10/obj-x86_64-linux-gnu'
  dh_auto_build: make -j1 returned exit code 2
  debian/rules:12: recipe for target 'build' failed
  make: *** [build] Error 2

  [..]

The full build log is attached.


Regards,

-- 
      ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


kodi-pvr-vdr-vnsi.1.10.10-2.unstable.amd64.log.txt.gz
Description: Binary data
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#816252: kodi-pvr-hts: FTBFS: client.cpp:314:18: error: 'PVR_ADDON_CAPABILITIES {aka struct PVR_ADDON_CAPABILITIES}' has no member named 'bSupportsRecordingFolders'

2016-02-28 Thread Chris Lamb
t.20160229072257.BSL1Q8V3AJ/kodi-pvr-hts-2.1.18/obj-x86_64-linux-gnu
 
/home/lamby/temp/cdt.20160229072257.BSL1Q8V3AJ/kodi-pvr-hts-2.1.18/obj-x86_64-linux-gnu
 
/home/lamby/temp/cdt.20160229072257.BSL1Q8V3AJ/kodi-pvr-hts-2.1.18/obj-x86_64-linux-gnu/CMakeFiles/pvr.hts.dir/DependInfo.cmake
 --color=
  Scanning dependencies of target pvr.hts
  make[3]: Leaving directory 
'/home/lamby/temp/cdt.20160229072257.BSL1Q8V3AJ/kodi-pvr-hts-2.1.18/obj-x86_64-linux-gnu'
  make -f CMakeFiles/pvr.hts.dir/build.make CMakeFiles/pvr.hts.dir/build
  make[3]: Entering directory 
'/home/lamby/temp/cdt.20160229072257.BSL1Q8V3AJ/kodi-pvr-hts-2.1.18/obj-x86_64-linux-gnu'
  [ 53%] Building CXX object CMakeFiles/pvr.hts.dir/src/AsyncState.cpp.o
  /usr/bin/c++   -DBUILD_KODI_ADDON -DTARGET_LINUX -DTARGET_POSIX -DUSE_DEMUX 
-D_LINUX -Dpvr_hts_EXPORTS -I/usr/include/kodi -I/usr/include/cec-platform 
-I/home/lamby/temp/cdt.20160229072257.BSL1Q8V3AJ/kodi-pvr-hts-2.1.18/lib  -g 
-O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time 
-D_FORTIFY_SOURCE=2 -std=gnu++11 -O3 -DNDEBUG -fPIC   -o 
CMakeFiles/pvr.hts.dir/src/AsyncState.cpp.o -c 
/home/lamby/temp/cdt.20160229072257.BSL1Q8V3AJ/kodi-pvr-hts-2.1.18/src/AsyncState.cpp
  [ 60%] Building CXX object CMakeFiles/pvr.hts.dir/src/client.cpp.o
  /usr/bin/c++   -DBUILD_KODI_ADDON -DTARGET_LINUX -DTARGET_POSIX -DUSE_DEMUX 
-D_LINUX -Dpvr_hts_EXPORTS -I/usr/include/kodi -I/usr/include/cec-platform 
-I/home/lamby/temp/cdt.20160229072257.BSL1Q8V3AJ/kodi-pvr-hts-2.1.18/lib  -g 
-O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time 
-D_FORTIFY_SOURCE=2 -std=gnu++11 -O3 -DNDEBUG -fPIC   -o 
CMakeFiles/pvr.hts.dir/src/client.cpp.o -c 
/home/lamby/temp/cdt.20160229072257.BSL1Q8V3AJ/kodi-pvr-hts-2.1.18/src/client.cpp
  
/home/lamby/temp/cdt.20160229072257.BSL1Q8V3AJ/kodi-pvr-hts-2.1.18/src/client.cpp:
 In function 'PVR_ERROR GetAddonCapabilities(PVR_ADDON_CAPABILITIES*)':
  
/home/lamby/temp/cdt.20160229072257.BSL1Q8V3AJ/kodi-pvr-hts-2.1.18/src/client.cpp:314:18:
 error: 'PVR_ADDON_CAPABILITIES {aka struct PVR_ADDON_CAPABILITIES}' has no 
member named 'bSupportsRecordingFolders'
 pCapabilities->bSupportsRecordingFolders = true;
^
  CMakeFiles/pvr.hts.dir/build.make:89: recipe for target 
'CMakeFiles/pvr.hts.dir/src/client.cpp.o' failed
  make[3]: *** [CMakeFiles/pvr.hts.dir/src/client.cpp.o] Error 1
  make[3]: Leaving directory 
'/home/lamby/temp/cdt.20160229072257.BSL1Q8V3AJ/kodi-pvr-hts-2.1.18/obj-x86_64-linux-gnu'
  CMakeFiles/Makefile2:102: recipe for target 'CMakeFiles/pvr.hts.dir/all' 
failed
  make[2]: *** [CMakeFiles/pvr.hts.dir/all] Error 2
  make[2]: Leaving directory 
'/home/lamby/temp/cdt.20160229072257.BSL1Q8V3AJ/kodi-pvr-hts-2.1.18/obj-x86_64-linux-gnu'
  Makefile:152: recipe for target 'all' failed
  make[1]: *** [all] Error 2
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20160229072257.BSL1Q8V3AJ/kodi-pvr-hts-2.1.18/obj-x86_64-linux-gnu'
  dh_auto_build: make -j1 returned exit code 2
  debian/rules:15: recipe for target 'build' failed
  make: *** [build] Error 2

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


kodi-pvr-hts.2.1.18-1.unstable.amd64.log.txt.gz
Description: Binary data
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#814976: whitedune: FTBFS: dune1.rc.c:1392: syntax error

2016-02-17 Thread Chris Lamb
Source: whitedune
Version: 0.30.10-2
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

whitedune fails to build from source in unstable/amd64:

  [..]

  sed 's../.' < dune.rc > dune1.rc.c
  x86_64-linux-gnu-g++ -E dune1.rc.c > dune2.rc.c 
  grep -v '//' dune2.rc.c > dune3.rc.c
  if swt/rc/rc < dune3.rc.c > resource.c ; then echo > /dev/null; else rm  
resource.c ; exit 1 ; fi
  dune1.rc.c:1392: syntax error
  Makefile:772: recipe for target 'resource.c' failed
  make[3]: *** [resource.c] Error 1
  make[3]: Leaving directory 
'/home/lamby/temp/cdt.20160217094002.tEG6aPBGFU/whitedune-0.30.10/src'
  Makefile:568: recipe for target 'target' failed
  make[2]: *** [target] Error 2
  make[2]: Leaving directory 
'/home/lamby/temp/cdt.20160217094002.tEG6aPBGFU/whitedune-0.30.10/src'
  Makefile:5: recipe for target 'dune' failed
  make[1]: *** [dune] Error 2
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20160217094002.tEG6aPBGFU/whitedune-0.30.10'
  debian/rules:39: recipe for target 'build-stamp' failed
  make: *** [build-stamp] Error 2

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
     : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


whitedune.0.30.10-2.unstable.amd64.log.txt.gz
Description: Binary data
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#814496: liblrdf: FTBFS: make[1]: *** No rule to make target 'distclean'.

2016-02-12 Thread Chris Lamb
al.m4':
  libtoolize:   '/usr/share/aclocal/libtool.m4'
  libtoolize:   '/usr/share/aclocal/ltoptions.m4'
  libtoolize:   '/usr/share/aclocal/ltsugar.m4'
  libtoolize:   '/usr/share/aclocal/ltversion.m4'
  libtoolize:   '/usr/share/aclocal/lt~obsolete.m4'
  libtoolize: Consider adding 'AC_CONFIG_MACRO_DIRS([m4])' to configure.ac,
  libtoolize: and rerunning libtoolize and aclocal.
  libtoolize: Consider adding '-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
  cd . && aclocal-1.11 
  main::scan_file() called too early to check prototype at 
/usr/bin/aclocal-1.11 line 644.
  if [ -e ./configure.ac ] || [ -e ./configure.in ]; then cd . && `which 
autoconf2.65 || which autoconf`; fi
  if [ -e ./configure.ac ] || [ -e ./configure.in ]; then cd . && `which  
autoheader2.65 || which autoheader` ; fi
  if [ -e ./Makefile.am ]; then cd . &&  automake-1.11  ; fi
  Unescaped left brace in regex is deprecated, passed through in regex; marked 
by <-- HERE in m/\${ <-- HERE ([^ \t=:+{}]+)}/ at /usr/bin/automake-1.11 line 
4159.
  configure.ac:4: required file `./missing' not found
  configure.ac:4:   `automake --add-missing' can install `missing'
  examples/Makefile.am: required file `./depcomp' not found
  examples/Makefile.am:   `automake --add-missing' can install `depcomp'
  src/Makefile.am:1: `CFLAGS' is a user variable, you should not override it;
  src/Makefile.am:1: use `AM_CFLAGS' instead.
  /usr/share/cdbs/1/class/autotools-files.mk:62: recipe for target 
'debian/stamp-autotools-files' failed
  make: *** [debian/stamp-autotools-files] Error 1

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


liblrdf.0.4.0-5.unstable.amd64.log.txt.gz
Description: Binary data
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

pd-puremapping_20151113-1_amd64.changes REJECTED

2016-01-28 Thread Chris Lamb

request of maintainer

===

Please feel free to respond to this email if you don't understand why
your files were rejected, or if you upload new files which address our
concerns.


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


Bug#808739: yoshimi: FTBFS: Missing cmGeneratorTarget instance!

2015-12-22 Thread Chris Lamb
Source: yoshimi
Version: 1.3.7.1-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

yoshimi fails to build from source in unstable/amd64:

  [..]

  -- Found FLTK: 
fltk_images;fltk_forms;fltk_gl;/usr/lib/x86_64-linux-gnu/libGL.so;fltk  
  -- Found FLTK
  -- Found Readline: /usr/include  
  -- Readline library found
  -- Building for Release, flags: -O3 -ffast-math -fomit-frame-pointer -ldl
  -- Default audio driver is Jack
  -- Default midi driver is Jack
  -- With jack session support
  -- Performing Test HasJackLatency
  -- Performing Test HasJackLatency - Success
  -- Checking for module 'lv2>=1.0.0'
  --   Found lv2, version 1.12.0
  -- Found lv2 package 1.12.0
  CMake Internal Error (please report a bug):
Missing cmGeneratorTarget instance!
  
  Note: The stack trace will not use advanced capabilities because this is a 
release build.
  0x7547bb : 
cmsys::SystemInformationImplementation::GetProgramStack[abi:cxx11](int, int) 
[(cmake) ???:-1]
  0x75512d : cmsys::SystemInformation::GetProgramStack[abi:cxx11](int, int) 
[(cmake) ???:-1]
  0x54bd7c : displayMessage(cmake::MessageType, 
std::__cxx11::basic_ostringstream<char, std::char_traits, 
std::allocator >&) [(cmake) ???:-1]
  0x55301c : cmake::IssueMessage(cmake::MessageType, 
std::__cxx11::basic_string<char, std::char_traits, std::allocator > 
const&, cmListFileBacktrace const&) [(cmake) ???:-1]
  0x695ee1 : cmGlobalGenerator::GetGeneratorTarget(cmTarget const*) const 
[(cmake) ???:-1]
  0x66ba3f : 
TargetPropertyNode::Evaluate(std::vector<std::__cxx11::basic_string<char, 
std::char_traits, std::allocator >, 
std::allocator<std::__cxx11::basic_string<char, std::char_traits, 
std::allocator > > > const&, cmGeneratorExpressionContext*, 
GeneratorExpressionContent const*, cmGeneratorExpressionDAGChecker*) const 
[(cmake) ???:-1]
  0x65ce95 : 
GeneratorExpressionContent::Evaluate[abi:cxx11](cmGeneratorExpressionContext*, 
cmGeneratorExpressionDAGChecker*) const [(cmake) ???:-1]
  0x66f251 : 
cmCompiledGeneratorExpression::EvaluateWithContext(cmGeneratorExpressionContext&,
 cmGeneratorExpressionDAGChecker*) const [(cmake) ???:-1]
  0x66f5fd : cmCompiledGeneratorExpression::Evaluate(cmMakefile*, 
std::__cxx11::basic_string<char, std::char_traits, std::allocator > 
const&, bool, cmTarget const*, cmTarget const*, 
cmGeneratorExpressionDAGChecker*, std::__cxx11::basic_string<char, 
std::char_traits, std::allocator > const&) const [(cmake) ???:-1]
  0x533477 : ??? [(???) ???:-1]
  0x53d5b1 : 
cmTarget::GetSourceFiles(std::vector<std::__cxx11::basic_string<char, 
std::char_traits, std::allocator >, 
std::allocator<std::__cxx11::basic_string<char, std::char_traits, 
std::allocator > > >&, std::__cxx11::basic_string<char, 
std::char_traits, std::allocator > const&) const [(cmake) ???:-1]
  0x53db14 : cmTarget::GetSourceFiles(std::vector<cmSourceFile*, 
std::allocator<cmSourceFile*> >&, std::__cxx11::basic_string<char, 
std::char_traits, std::allocator > const&) const [(cmake) ???:-1]
  0x60cf8f : cmFLTKWrapUICommand::FinalPass() [(cmake) ???:-1]
  0x4ed451 : cmMakefile::FinalPass() [(cmake) ???:-1]
  0x4ed4de : cmMakefile::ConfigureFinalPass() [(cmake) ???:-1]
  0x69abad : cmGlobalGenerator::CheckTargetProperties() [(cmake) ???:-1]
  0x6a4569 : cmGlobalGenerator::Configure() [(cmake) ???:-1]
  0x6b26b2 : cmGlobalUnixMakefileGenerator3::Configure() [(cmake) ???:-1]
  0x54b0a0 : cmake::ActualConfigure() [(cmake) ???:-1]
  0x54f884 : cmake::Configure() [(cmake) ???:-1]
  0x553a38 : cmake::Run(std::vector<std::__cxx11::basic_string<char, 
std::char_traits, std::allocator >, 
std::allocator<std::__cxx11::basic_string<char, std::char_traits, 
std::allocator > > > const&, bool) [(cmake) ???:-1]
  0x4bc1b4 : do_cmake(int, char const* const*) [(cmake) ???:-1]
  0x4b79d6 : main [(cmake) ???:-1]
  0x7f72d9318870 : __libc_start_main [(libc.so.6) ???:-1]
  0x4baab9 : _start [(cmake) ???:-1]
  
  
  dh_auto_configure: cmake ../src -DCMAKE_INSTALL_PREFIX=/usr 
-DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE=None 
-DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_INSTALL_LOCALSTATEDIR=/var died with 
signal 11
  debian/rules:10: recipe for target 'build' failed
  make: *** [build] Error 2

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


yoshimi.1.3.7.1-1.unstable.amd64.log.txt.gz
Description: Binary data
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#804222: harvid: FTBFS: *** No rule to make target '../libharvid/libharvid.a', needed by 'harvid'. Stop.

2015-11-06 Thread Chris Lamb
Source: harvid
Version: 0.8.0-3
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

harvid fails to build from source in unstable/amd64:

  [..]

  cc -c -o timecode.o -g -O2 -fstack-protector-strong -Wformat
  -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2`pkg-config
  --cflags libavcodec libavformat libavutil libswscale` timecode.c
  export PKG_CONFIG_PATH=;\
  cc -c -o vinfo.o -g -O2 -fstack-protector-strong -Wformat
  -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2`pkg-config
  --cflags libavcodec libavformat libavutil libswscale` vinfo.c
  make[3]: *** No rule to make target '../libharvid/libharvid.a', needed
  by 'harvid'.  Stop.
  make[3]: Leaving directory '/build/harvid-0.8.0/src'
  Makefile:7: recipe for target 'src' failed
  make[2]: *** [src] Error 2
  make[2]: *** Waiting for unfinished jobs
  ar cru libharvid.a decoder_ctrl.o ffdecoder.o frame_cache.o
  image_cache.o timecode.o vinfo.o
  ar: `u' modifier ignored since `D' is the default (see `U')
  ranlib libharvid.a
  make[3]: Leaving directory '/build/harvid-0.8.0/libharvid'
  make[2]: Leaving directory '/build/harvid-0.8.0'
  dh_auto_build: make -j17 CFLAGS=-g -O2 -fstack-protector-strong
  -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2
  LDFLAGS=-Wl,-z,relro -Wl,--as-needed VERSION=0.8.0 returned exit code
  2
  debian/rules:9: recipe for target 'override_dh_auto_build' failed
  make[1]: *** [override_dh_auto_build] Error 2
  make[1]: Leaving directory '/build/harvid-0.8.0'
  debian/rules:6: recipe for target 'build' failed
  make: *** [build] Error 2
  dpkg-buildpackage: error: debian/rules build gave error exit status 2

  [..]

The full build log is attached or can be viewed here:


https://reproducible.debian.net/logs/unstable/amd64/harvid_0.8.0-3.build1.log.gz


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


harvid.0.8.0-3.unstable.amd64.log.txt.gz
Description: application/gzip
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#803757: csoundqt: FTBFS: src/configlists.h:55:2: error: 'QHash' does not name a type

2015-11-02 Thread Chris Lamb
Source: csoundqt
Version: 0.9.0-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

csoundqt fails to build from source in unstable/amd64:

  [..]

  In file included from src/csoundoptions.cpp:24:0:
  src/configlists.h:55:2: error: 'QHash' does not name a type
QHash<QString, QString> getMidiInputDevices(QString module);

  [..]

   ^
  src/csoundengine.cpp:339:42: warning: unused parameter 'csound'
  [-Wunused-parameter]
   int CsoundEngine::midiOutCloseCb(CSOUND *csound, void *ud)
^
  src/csoundengine.cpp:339:56: warning: unused parameter 'ud'
  [-Wunused-parameter]
   int CsoundEngine::midiOutCloseCb(CSOUND *csound, void *ud)
  ^
  src/csoundengine.cpp:364:56: warning: unused parameter 'message'
  [-Wunused-parameter]
   void CsoundEngine::sendMidiOut(QVector )
  ^
  src/csoundengine.cpp:746:54: warning: unused parameter 'delay'
  [-Wunused-parameter]
   void CsoundEngine::queueEvent(QString eventLine, int delay)
^
  src/csoundengine.cpp:1203:47: warning: unused parameter 'csound'
  [-Wunused-parameter]
   void CsoundEngine::breakpointCallback(CSOUND *csound,
   debug_bkpt_info_t *bkpt_info, void *udata)
 ^
  src/documentview.cpp: At global scope:
  src/documentview.cpp:1847:48: warning: unused parameter 'ev'
  [-Wunused-parameter]
   void HoverWidget::mousePressEvent(QMouseEvent *ev)
  ^
  src/documentpage.cpp: In member function 'virtual int
  DocumentPage::setTextString(QString&)':
  src/documentpage.cpp:192:7: warning: unused variable 'visibleEnabled'
  [-Wunused-variable]
 int visibleEnabled = panelElement.attribute("visible","true") ==
 "true";
 ^
  src/documentpage.cpp: At global scope:
  src/documentpage.cpp:558:44: warning: unused parameter 'sheetName'
  [-Wunused-parameter]
   EventSheet* DocumentPage::getSheet(QString sheetName)
  ^
  src/documentpage.cpp:1102:38: warning: unused parameter 'index'
  [-Wunused-parameter]
   void DocumentPage::stopPanelSlot(int index)
^
  src/documentpage.cpp:1119:41: warning: unused parameter 'index'
  [-Wunused-parameter]
   void DocumentPage::setPanelSyncSlot(int index, int mode)
   ^
  src/documentpage.cpp:1119:52: warning: unused parameter 'mode'
  [-Wunused-parameter]
   void DocumentPage::setPanelSyncSlot(int index, int mode)
  ^
  src/documentpage.cpp:1263:30: warning: unused parameter 'format'
  [-Wunused-parameter]
   int DocumentPage::record(int format)
^
  src/documentpage.cpp:1356:53: warning: unused parameter 'widget'
  [-Wunused-parameter]
   void DocumentPage::passUnselectedWidget(QuteWidget *widget)
   ^
  make[1]: Leaving directory '/build/csoundqt-0.9.0'
  /usr/share/cdbs/1/class/makefile.mk:47: recipe for target
  'debian/stamp-makefile-build' failed
  make: *** [debian/stamp-makefile-build] Error 2
  dpkg-buildpackage: error: debian/rules build gave error exit status 2

  [..]

The full build log is attached or (an alternate build) can be viewed
here:


https://reproducible.debian.net/logs/unstable/amd64/csoundqt_0.9.0-1.build1.log.gz


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


csoundqt.0.9.0-1.unstable.amd64.log.txt.gz
Description: application/gzip
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#803478: libmapper: FTBFS: dh_install: python-libmapper missing files (usr/lib/python2.*/*-packages), aborting

2015-10-30 Thread Chris Lamb
Source: libmapper
Version: 0.3~git+20141027-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

libmapper fails to build from source in unstable/amd64:

  [..]

  dh_testdir
  dh_testroot
  dh_install
  dh_install: python-libmapper missing files
  (usr/lib/python2.*/*-packages), aborting
  debian/rules:26: recipe for target 'binary-arch' failed
  make: *** [binary-arch] Error 255
  dpkg-buildpackage: error: fakeroot debian/rules binary gave error exit
  status 2

  [..]

The full build log is attached or (an alternate build) can be viewed
here:


https://reproducible.debian.net/logs/unstable/amd64/libmapper_0.3~git+20141027-1.build1.log.gz


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


libmapper.0.3~git+20141027-1.unstable.amd64.log.txt.gz
Description: application/gzip
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#803037: synfigstudio: FTBFS: uimanager.h:33:27: fatal error: sigc++/object.h: No such file or directory

2015-10-26 Thread Chris Lamb
Source: synfigstudio
Version: 1.0-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

synfigstudio fails to build from source in unstable/amd64:

  [..]

  libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I../.. -I../../src
  -I../../libltdl -Wdate-time -D_FORTIFY_SOURCE=2 -pthread -D_REENTRANT
  -std=c++11 -I/usr/include/synfig-1.0 -I/usr/include/giomm-2.4
  -I/usr/lib/x86_64-linux-gnu/giomm-2.4/include
  -I/usr/include/libxml++-2.6
  -I/usr/lib/x86_64-linux-gnu/libxml++-2.6/include
  -I/usr/include/libxml2 -I/usr/include/glibmm-2.4
  -I/usr/lib/x86_64-linux-gnu/glibmm-2.4/include
  -I/usr/include/pango-1.0 -I/usr/include/harfbuzz
  -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0
  -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1
  -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/mlt++
  -I/usr/include/mlt -I/usr/include/sigc++-2.0
  -I/usr/lib/x86_64-linux-gnu/sigc++-2.0/include
  -DLOCALEDIR=\"/usr/share/locale\" -fstack-protector-strong -Wformat
  -Werror=format-security -DNDEBUG -g -O2 -W -Wall -c
  actions/activepointadd.cpp  -fPIC -DPIC -o
  actions/.libs/libsynfigapp_la-activepointadd.o
  In file included from uimanager.cpp:32:0:
  uimanager.h:33:27: fatal error: sigc++/object.h: No such file or
  directory
  compilation terminated.
  Makefile:2128: recipe for target 'libsynfigapp_la-uimanager.lo' failed
  make[5]: *** [libsynfigapp_la-uimanager.lo] Error 1
  make[5]: *** Waiting for unfinished jobs
  In file included from canvasinterface.cpp:58:0:
  canvasinterface.h:34:27: fatal error: sigc++/object.h: No such file or
  directory
  compilation terminated.
  In file included from action_system.cpp:32:0:
  action_system.h:32:27: fatal error: sigc++/object.h: No such file or
  directory
  compilation terminated.
  Makefile:2058: recipe for target 'libsynfigapp_la-action_system.lo'
  failed
  make[5]: *** [libsynfigapp_la-action_system.lo] Error 1
  Makefile:2079: recipe for target 'libsynfigapp_la-canvasinterface.lo'
  failed
  make[5]: *** [libsynfigapp_la-canvasinterface.lo] Error 1
  In file included from action.cpp:34:0:
  instance.h:39:27: fatal error: sigc++/object.h: No such file or
  directory
  compilation terminated.
  Makefile:2044: recipe for target 'libsynfigapp_la-action.lo' failed
  make[5]: *** [libsynfigapp_la-action.lo] Error 1
  In file included from instance.cpp:34:0:
  instance.h:39:27: fatal error: sigc++/object.h: No such file or
  directory
  compilation terminated.
  Makefile:2100: recipe for target 'libsynfigapp_la-instance.lo' failed
  make[5]: *** [libsynfigapp_la-instance.lo] Error 1
  In file included from actions/activepointremove.cpp:34:0:
  ../../src/synfigapp/canvasinterface.h:34:27: fatal error:
  sigc++/object.h: No such file or directory
  compilation terminated.
  Makefile:1330: recipe for target
  'actions/libsynfigapp_la-activepointremove.lo' failed
  make[5]: *** [actions/libsynfigapp_la-activepointremove.lo] Error 1
  In file included from actions/activepointadd.cpp:34:0:
  ../../src/synfigapp/canvasinterface.h:34:27: fatal error:
  sigc++/object.h: No such file or directory
  compilation terminated.
  In file included from main.cpp:32:0:
  main.h:38:27: fatal error: sigc++/object.h: No such file or directory
  compilation terminated.
  In file included from inputdevice.cpp:37:0:
  main.h:38:27: fatal error: sigc++/object.h: No such file or directory
  compilation terminated.
  In file included from action_param.cpp:34:0:
  canvasinterface.h:34:27: fatal error: sigc++/object.h: No such file or
  directory
  compilation terminated.
  Makefile:1323: recipe for target
  'actions/libsynfigapp_la-activepointadd.lo' failed
  make[5]: *** [actions/libsynfigapp_la-activepointadd.lo] Error 1
  Makefile:2107: recipe for target 'libsynfigapp_la-main.lo' failed
  make[5]: *** [libsynfigapp_la-main.lo] Error 1
  Makefile:2093: recipe for target 'libsynfigapp_la-inputdevice.lo'
  failed
  make[5]: *** [libsynfigapp_la-inputdevice.lo] Error 1
  Makefile:2051: recipe for target 'libsynfigapp_la-action_param.lo'
  failed
  make[5]: *** [libsynfigapp_la-action_param.lo] Error 1
  In file included from pluginmanager.cpp:43:0:
  ../../src/synfigapp/main.h:38:27: fatal error: sigc++/object.h: No
  such file or directory
  compilation terminated.
  Makefile:2114: recipe for target 'libsynfigapp_la-pluginmanager.lo'
  failed

  [..]

The full build log is attached or can be viewed here:


https://reproducible.debian.net/logs/unstable/amd64/synfigstudio_1.0-1.build1.log.gz


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


synfigstudio.1.0-1.unstable.amd64.log.txt.gz
Description: application/gzip
___
pkg-multimedia-maintainers mailing list
pkg-

Bug#800095: vdr-plugin-vnsiserver: FTBFS: sh: 0: Can't open /usr/share/vdr-dev/dependencies.sh

2015-09-26 Thread Chris Lamb
Source: vdr-plugin-vnsiserver
Version: 1.2.0-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

vdr-plugin-vnsiserver fails to build from source in unstable/amd64.
Looks like vdr-dev has a nicer interface for this now, eg.
/usr/bin/dh_vdrplugin_depends?

  [..]

 dh_auto_test -O--parallel
   fakeroot debian/rules binary
  dh binary --parallel
 dh_testroot -O--parallel
 dh_prep -O--parallel
 dh_auto_install -O--parallel
make -j14 install

DESTDIR=/tmp/buildd/vdr-plugin-vnsiserver-1.2.0/debian/vdr-plugin-vnsiserver
AM_UPDATE_INFO_DIR=no
  make[1]: Entering directory '/tmp/buildd/vdr-plugin-vnsiserver-1.2.0'
  install -D libvdr-vnsiserver.so
  
/tmp/buildd/vdr-plugin-vnsiserver-1.2.0/debian/vdr-plugin-vnsiserver/usr/lib/vdr/plugins/libvdr-vnsiserver.so.2.2.0
  make[1]: Leaving directory '/tmp/buildd/vdr-plugin-vnsiserver-1.2.0'
 dh_install -O--parallel
 dh_installdocs -O--parallel
 dh_installchangelogs -O--parallel
 dh_perl -O--parallel
 dh_link -O--parallel
 dh_strip_nondeterminism -O--parallel
 dh_compress -O--parallel
 dh_fixperms -O--parallel
 dh_strip -O--parallel
 dh_makeshlibs -O--parallel
 dh_shlibdeps -O--parallel
 dh_installdeb -O--parallel
 debian/rules override_dh_gencontrol
  make[1]: Entering directory '/tmp/buildd/vdr-plugin-vnsiserver-1.2.0'
  sh /usr/share/vdr-dev/dependencies.sh
  sh: 0: Can't open /usr/share/vdr-dev/dependencies.sh
  debian/rules:13: recipe for target 'override_dh_gencontrol' failed
  make[1]: *** [override_dh_gencontrol] Error 127
  make[1]: Leaving directory '/tmp/buildd/vdr-plugin-vnsiserver-1.2.0'
  debian/rules:10: recipe for target 'binary' failed
  make: *** [binary] Error 2
  dpkg-buildpackage: error: fakeroot debian/rules binary gave error exit
  status 2

  [..]

The full build log is attached or can be viewed here:


https://reproducible.debian.net/logs/unstable/amd64/vdr-plugin-vnsiserver_1.2.0-1.build1.log.gz


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
I: using fakeroot in build.
I: pbuilder: network access will be disabled during build
I: Current time: Sat Sep 26 00:53:33 GMT+12 2015
I: pbuilder-time-stamp: 1443272013
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/unstable-reproducible-base.tgz]
I: creating local configuration
I: copying local configuration
I: mounting /proc filesystem
I: mounting /run/shm filesystem
I: mounting /dev/pts filesystem
I: Mounting /dev/shm
I: Mounting /sys
I: policy-rc.d already exists
I: Installing the build-deps
 -> Attempting to satisfy build-dependencies
 -> Creating pbuilder-satisfydepends-dummy package
Package: pbuilder-satisfydepends-dummy
Version: 0.invalid.0
Architecture: amd64
Maintainer: Debian Pbuilder Team <pbuilder-ma...@lists.alioth.debian.org>
Description: Dummy package to satisfy dependencies with aptitude - created by 
pbuilder
 This package was created automatically by pbuilder to satisfy the
 build-dependencies of the package being currently built.
Depends: debhelper (>= 9), pkg-config, vdr-dev (>= 1.7.17)
dpkg-deb: building package 'pbuilder-satisfydepends-dummy' in 
'/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'.
Selecting previously unselected package pbuilder-satisfydepends-dummy.
(Reading database ... 20290 files and directories currently installed.)
Preparing to unpack .../pbuilder-satisfydepends-dummy.deb ...
Unpacking pbuilder-satisfydepends-dummy (0.invalid.0) ...
dpkg: pbuilder-satisfydepends-dummy: dependency problems, but configuring 
anyway as you requested:
 pbuilder-satisfydepends-dummy depends on pkg-config; however:
  Package pkg-config is not installed.
 pbuilder-satisfydepends-dummy depends on vdr-dev (>= 1.7.17); however:
  Package vdr-dev is not installed.

Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ...
Reading package lists...
Building dependency tree...
Reading state information...
Initializing package states...
Writing extended state information...
Building tag database...
pbuilder-satisfydepends-dummy is already installed at the requested version 
(0.invalid.0)
pbuilder-satisfydepends-dummy is already installed at the requested version 
(0.invalid.0)
The following NEW packages will be installed:
  pkg-config{a} vdr-dev{a} 
0 packages upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 438 kB of archives. After unpacking 1137 kB will be used.
Writing extended state information...
Get: 1 http://ftp.de.debian.org/debian/ unstable/main pkg-config amd64 0.28-1 
[57.5 kB]
Get: 2 http://ftp.de.debian.org/debian/ unstable/main vdr-dev all 2.2.0-2 [380 
kB]
Fetched 438 kB in 0s (2893 kB/s)
debconf: delaying package configuration, since apt-utils is not installed

Bug#799839: python-libdiscid: FTBFS: error: unknown type name 'discid_feature'

2015-09-23 Thread Chris Lamb
Source: python-libdiscid
Version: 0.4.1-3
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

python-libdiscid fails to build from source in unstable/amd64:

  [..]

  creating build/temp.linux-x86_64-2.7/libdiscid
  x86_64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall
  -Wstrict-prototypes -fno-strict-aliasing -g -O2
  -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time
  -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include/python2.7 -c
  libdiscid/_discid.c -o build/temp.linux-x86_64-2.7/libdiscid/_discid.o
  libdiscid/_discid.c:798:64: error: unknown type name 'discid_feature'
   static CYTHON_INLINE PyObject*
   __Pyx_PyInt_From_discid_feature(discid_feature value);
  ^
  libdiscid/_discid.c: In function
  '__pyx_pf_9libdiscid_7_discid_6DiscId_14webservice_url___get__':
  libdiscid/_discid.c:2530:3: warning: 'discid_get_webservice_url' is
  deprecated [-Wdeprecated-declarations]
 __pyx_t_1 =
 
__pyx_f_9libdiscid_7_discid__to_unicode(discid_get_webservice_url(__pyx_v_self->_c_discid));
 if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0];
 __pyx_lineno = 158; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
 ^
  In file included from libdiscid/discid-wrapper.h:25:0,
   from libdiscid/_discid.c:253:
  /usr/include/discid/discid.h:324:42: note: declared here
   LIBDISCID_API LIBDISCID_DEPRECATED char
   *discid_get_webservice_url(DiscId *d);

  [..]

The full build log is attached or can be viewed here:


https://reproducible.debian.net/logs/unstable/amd64/python-libdiscid_0.4.1-3.build1.log.gz


Regards,

-- 
  ,''`.
 : :'  :     Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
I: using fakeroot in build.
I: pbuilder: network access will be disabled during build
I: Current time: Tue Sep 22 17:42:03 GMT+12 2015
I: pbuilder-time-stamp: 1442986923
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/unstable-reproducible-base.tgz]
I: creating local configuration
I: copying local configuration
I: mounting /proc filesystem
I: mounting /run/shm filesystem
I: mounting /dev/pts filesystem
I: Mounting /dev/shm
I: Mounting /sys
I: policy-rc.d already exists
I: Installing the build-deps
 -> Attempting to satisfy build-dependencies
 -> Creating pbuilder-satisfydepends-dummy package
Package: pbuilder-satisfydepends-dummy
Version: 0.invalid.0
Architecture: amd64
Maintainer: Debian Pbuilder Team <pbuilder-ma...@lists.alioth.debian.org>
Description: Dummy package to satisfy dependencies with aptitude - created by 
pbuilder
 This package was created automatically by pbuilder to satisfy the
 build-dependencies of the package being currently built.
Depends: debhelper (>= 9), dh-python, libdiscid-dev (>= 0.6), python-all-dev 
(>= 2.6.3-3~), python-all-dev (>= 2.7.5) | python-unittest2, python-all-dbg, 
python3-all-dev, python3-all-dbg, python-setuptools, python3-setuptools, cython 
(>= 0.15), cython3, cython-dbg, cython3-dbg, python-sphinx (>= 1.0.7+dfsg-1~), 
python-doc
dpkg-deb: building package 'pbuilder-satisfydepends-dummy' in 
'/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'.
Selecting previously unselected package pbuilder-satisfydepends-dummy.
(Reading database ... 20290 files and directories currently installed.)
Preparing to unpack .../pbuilder-satisfydepends-dummy.deb ...
Unpacking pbuilder-satisfydepends-dummy (0.invalid.0) ...
dpkg: pbuilder-satisfydepends-dummy: dependency problems, but configuring 
anyway as you requested:
 pbuilder-satisfydepends-dummy depends on dh-python; however:
  Package dh-python is not installed.
 pbuilder-satisfydepends-dummy depends on libdiscid-dev (>= 0.6); however:
  Package libdiscid-dev is not installed.
 pbuilder-satisfydepends-dummy depends on python-all-dev (>= 2.6.3-3~); however:
  Package python-all-dev is not installed.
 pbuilder-satisfydepends-dummy depends on python-all-dev (>= 2.7.5) | 
python-unittest2; however:
  Package python-all-dev is not installed.
  Package python-unittest2 is not installed.
 pbuilder-satisfydepends-dummy depends on python-all-dbg; however:
  Package python-all-dbg is not installed.
 pbuilder-satisfydepends-dummy depends on python3-all-dev; however:
  Package python3-all-dev is not installed.
 pbuilder-satisfydepends-dummy depends on python3-all-dbg; however:
  Package python3-all-dbg is not installed.
 pbuilder-satisfydepends-dummy depends on python-setuptools; however:

Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ...
Reading package lists...
Building dependency tree...
Reading state information...
Initializing package states...
Writing extended state information...
Building tag database...
pbuilder-satisfydepends-dummy is already installed at the

Bug#796807: jackd2: please make the build reproducible

2015-08-24 Thread Chris Lamb
Source: jackd2
Version: 1.9.10+20140719git3eb0ae6a~dfsg-3
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: timestamps
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Hi,

While working on the reproducible builds effort [1], we have noticed
that jackd2 could not be built reproducibly.

The attached patch removes locale and timezone-varying timestamps from
the build system. Once applied, jackd2 can be built reproducibly in our
reproducible toolchain.

 [1]: https://wiki.debian.org/ReproducibleBuilds


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
--- a/debian/patches/reproducible-build.patch   1970-01-01 01:00:00.0 
+0100
--- b/debian/patches/reproducible-build.patch   2015-08-24 17:40:39.913019601 
+0100
@@ -0,0 +1,9 @@
+--- jackd2-1.9.10+20140719git3eb0ae6a~dfsg.orig/man/fill_template
 jackd2-1.9.10+20140719git3eb0ae6a~dfsg/man/fill_template
+@@ -1,5 +1,5 @@
+ #!/bin/sh
+ 
+ for i in *.0 ; do
+-   sed -e s/!VERSION!/${1}/g -e s/!DATE!/`date '+%B %Y'`/g  ${i}  
${i%%0}1
++   sed -e s/!VERSION!/${1}/g -e s/!DATE!/`LC_ALL=C date --utc 
--date=$(dpkg-parsechangelog -l../debian/changelog -SDate) '+%B %Y'`/g  
${i}  ${i%%0}1
+ done
--- a/debian/patches/series 2015-08-24 17:28:11.290070686 +0100
--- b/debian/patches/series 2015-08-24 17:40:37.376996052 +0100
@@ -1,2 +1,3 @@
 waf.patch
 clang-ftbfs.diff
+reproducible-build.patch
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#792667: jack-audio-connection-kit: please make the build reproducible

2015-07-17 Thread Chris Lamb
Source: jack-audio-connection-kit
Version: 1:0.124.1+20140122git5013bed0-3
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: timestamps
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Hi,

While working on the reproducible builds effort [1], we have noticed
that jack-audio-connection-kit could not be built reproducibly.

The attached patch removes locale and timezone- specific timestamps from
the build system. Once applied, jack-audio-connection-kit can be built
reproducibly in our reproducible toolchain.

 [1]: https://wiki.debian.org/ReproducibleBuilds


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
diff --git a/man/Makefile.am b/man/Makefile.am
index ca68b74..3afe34a 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -1,5 +1,5 @@
 .0.1:
-   @sed -e s/!VERSION!/@JACK_RELEASE@/g -e s/!DATE!/`date '+%B %Y'`/g 
 $*.0  $@
+   @sed -e s/!VERSION!/@JACK_RELEASE@/g -e s/!DATE!/`LANG=C date --utc 
--date=`dpkg-parsechangelog -l../debian/changelog -SDate` '+%B %Y'`/g  $*.0 
 $@
@echo Built $*.1 from template
 
 manpages = $(patsubst %.0,%.1,$(wildcard *.0))
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#792424: swh-plugins: please make the build reproducible

2015-07-14 Thread Chris Lamb
Source: swh-plugins
Version: 0.4.15+1-7
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: fileordering
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Hi,

While working on the reproducible builds effort [1], we have noticed
that swh-plugins could not be built reproducibly.

The attached patch removes non-determinstic ordering from the build
system. Once applied, swh-plugins can be built reproducibly in our
reproducible toolchain.

 [1]: https://wiki.debian.org/ReproducibleBuilds


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
diff --no-dereference -urNad 
swh-plugins.orig/swh-plugins-0.4.15+1/debian/patches/006-reproducible_build.diff
 swh-plugins/swh-plugins-0.4.15+1/debian/patches/006-reproducible_build.diff
--- 
swh-plugins.orig/swh-plugins-0.4.15+1/debian/patches/006-reproducible_build.diff
1970-01-01 01:00:00.0 +0100
+++ swh-plugins/swh-plugins-0.4.15+1/debian/patches/006-reproducible_build.diff 
2015-07-14 17:53:15.729693273 +0100
@@ -0,0 +1,11 @@
+--- swh-plugins-0.4.15+1.orig/metadata/Makefile.am
 swh-plugins-0.4.15+1/metadata/Makefile.am
+@@ -3,7 +3,7 @@ EXTRA_DIST = lxml2rdf.pl txt2scale.pl sc
+ pkgdatadir = $(datadir)/ladspa/rdf
+ 
+ swh-plugins.rdf: @top_srcdir@/*.xml
+-  ./lxml2rdf.pl @top_srcdir@/*.xml  swh-plugins.rdf
++  ./lxml2rdf.pl $(sort $^)  $@
+   xmllint -noout swh-plugins.rdf
+ 
+ swh-scales.rdf: scale-points.txt
diff --no-dereference -urNad 
swh-plugins.orig/swh-plugins-0.4.15+1/debian/patches/series 
swh-plugins/swh-plugins-0.4.15+1/debian/patches/series
--- swh-plugins.orig/swh-plugins-0.4.15+1/debian/patches/series 2015-07-14 
17:27:41.764186804 +0100
+++ swh-plugins/swh-plugins-0.4.15+1/debian/patches/series  2015-07-14 
17:53:09.529399140 +0100
@@ -3,3 +3,4 @@
 03-uptodate-ltmain.diff
 04-nosetlocale.diff
 05-mbeq_crash_fix.diff
+006-reproducible_build.diff
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#673695: Mouse wheel up and down no longer

2012-05-20 Thread Chris Lamb
Package: audacious
Version: 3.2.1-4
Severity: minor

Since upgrading from 2.4.4-1+b2, scrolling the mousewheel up and down on
the Winamp Classic Interface no longer modifies the volume.

I seem to rely on this quite a lot; I've tried clicking and draging the
little volume control but it's a bit too fiddly for quick uses.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org
   `-



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


Bug#639374: New upstream 3.0.1 release

2011-08-26 Thread Chris Lamb
Package: audacious
Version: 2.4.4-1
Severity: wishlist

New upstream 3.0.1 release available at:

  http://audacious-media-player.org/downloads


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org
   `-


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