diff -Nru jnoise-0.6.0/debian/changelog jnoise-0.6.0/debian/changelog --- jnoise-0.6.0/debian/changelog 2016-12-22 20:35:30.000000000 +0000 +++ jnoise-0.6.0/debian/changelog 2017-08-30 21:19:27.000000000 +0000 @@ -1,3 +1,14 @@ +jnoise (0.6.0-6) unstable; urgency=medium + + * Team upload. + * Bump Standards-Version to 4.1.0. + + Use HTTPS in the Format field of d/copyright. + * Fix cross build failure. + + Drop implicitly satisfied build dependency on binutils. + + Make g++ substitutable in source/Makefile. + + -- Mattia Rizzolo Wed, 30 Aug 2017 23:19:27 +0200 + jnoise (0.6.0-5) unstable; urgency=medium * Set dh 10. diff -Nru jnoise-0.6.0/debian/control jnoise-0.6.0/debian/control --- jnoise-0.6.0/debian/control 2016-12-22 20:34:06.000000000 +0000 +++ jnoise-0.6.0/debian/control 2017-08-29 16:58:26.000000000 +0000 @@ -7,19 +7,19 @@ Jaromír Mikeš Build-Depends: debhelper (>= 10), - binutils, libjack-dev | libjack-jackd2-dev -Standards-Version: 3.9.8 +Standards-Version: 4.1.0 Vcs-Git: https://anonscm.debian.org/git/pkg-multimedia/jnoise.git -Vcs-Browser: https://anonscm.debian.org/cgit/pkg-multimedia/jnoise.git +Vcs-Browser: https://anonscm.debian.org/git/pkg-multimedia/jnoise.git Homepage: http://kokkinizita.linuxaudio.org/linuxaudio/index.html Package: jnoise Architecture: any -Depends: ${shlibs:Depends}, - ${misc:Depends} +Depends: + ${misc:Depends}, + ${shlibs:Depends} Description: white and pink noise generator - Jnoise is a small command line JACK app + Jnoise is a small command line JACK app generating both white and pink noise. Both noise sources produce have a Gaussion amplitude distribution, and output a signal diff -Nru jnoise-0.6.0/debian/copyright jnoise-0.6.0/debian/copyright --- jnoise-0.6.0/debian/copyright 2016-12-22 20:32:39.000000000 +0000 +++ jnoise-0.6.0/debian/copyright 2017-08-29 17:00:26.000000000 +0000 @@ -1,12 +1,12 @@ -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Jnoise -Upstream-Contact: Fons Adriaensen +Upstream-Contact: Fons Adriaensen Source: http://kokkinizita.linuxaudio.org/linuxaudio/downloads/index.html -Copyright: 2003-2008 Fons Adriaensen +Copyright: 2003-2008 Fons Adriaensen Files: * Copyright: - 2003-2008 Fons Adriaensen + 2003-2008 Fons Adriaensen License: GPL-2+ Files: debian/* diff -Nru jnoise-0.6.0/debian/patches/02-makefile.patch jnoise-0.6.0/debian/patches/02-makefile.patch --- jnoise-0.6.0/debian/patches/02-makefile.patch 1970-01-01 00:00:00.000000000 +0000 +++ jnoise-0.6.0/debian/patches/02-makefile.patch 2017-08-29 17:01:27.000000000 +0000 @@ -0,0 +1,17 @@ +Description: use $(CXX) instead of hardcoding g++ + This fixes cross building, where the compiler used is prefixed by the host architecture +Author: Mattia Rizzolo +Last-Update: 2017-08-29 +Forwarded: Fons Adriaensen + +--- a/source/Makefile ++++ b/source/Makefile +@@ -37,7 +37,7 @@ + jnoise: CPPFLAGS += -ffast-math + jnoise: LDLIBS += -ljack -lrt + jnoise: $(JNOISE_O) +- g++ $(LDFLAGS) -o $@ $(JNOISE_O) $(LDLIBS) ++ $(CXX) $(LDFLAGS) -o $@ $(JNOISE_O) $(LDLIBS) + + $(JNOISE_O): + -include $(JNOISE_O:%.o=%.d) diff -Nru jnoise-0.6.0/debian/patches/series jnoise-0.6.0/debian/patches/series --- jnoise-0.6.0/debian/patches/series 2016-12-22 20:30:31.000000000 +0000 +++ jnoise-0.6.0/debian/patches/series 2017-08-29 17:00:33.000000000 +0000 @@ -1 +1,2 @@ makefile.patch +02-makefile.patch