diff -Nru abgate-1.1.9/debian/changelog abgate-1.1.9/debian/changelog --- abgate-1.1.9/debian/changelog 2017-11-01 11:38:10.000000000 +0000 +++ abgate-1.1.9/debian/changelog 2020-03-23 06:09:14.000000000 +0000 @@ -1,3 +1,34 @@ +abgate (1.1.9-2build1) focal; urgency=medium + + * No-change rebuild for libgcc-s1 package name change. + + -- Matthias Klose Mon, 23 Mar 2020 07:09:14 +0100 + +abgate (1.1.9-2) unstable; urgency=medium + + [ Ondřej Nový ] + * Team upload. + * d/copyright: Use https protocol in Format field + * d/control: Set Vcs-* to salsa.debian.org + + [ Felipe Sateler ] + * Change maintainer address to debian-multimedia@lists.debian.org + + [ Ondřej Nový ] + * Use debhelper-compat instead of debian/compat + + [ Helmut Grohne ] + * Fix FTCBFS: (Closes: #912196) + + Build abGateQt directly via dh_auto_* before the Makefile can do it. + + cross.patch: Honour cross tools. + + [ Sebastian Ramacher ] + * debian/control: + - Bump Standards-Version + - Bump debhelper compat to 12 + + -- Sebastian Ramacher Sun, 13 Oct 2019 20:48:01 +0200 + abgate (1.1.9-1) unstable; urgency=medium * New upstream version 1.1.9 diff -Nru abgate-1.1.9/debian/compat abgate-1.1.9/debian/compat --- abgate-1.1.9/debian/compat 2017-10-11 14:19:02.000000000 +0000 +++ abgate-1.1.9/debian/compat 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -10 diff -Nru abgate-1.1.9/debian/control abgate-1.1.9/debian/control --- abgate-1.1.9/debian/control 2017-11-01 11:31:49.000000000 +0000 +++ abgate-1.1.9/debian/control 2019-10-13 18:45:52.000000000 +0000 @@ -1,19 +1,19 @@ Source: abgate Priority: optional Section: sound -Maintainer: Debian Multimedia Maintainers +Maintainer: Debian Multimedia Maintainers Uploaders: Jaromír Mikeš Build-Depends: - debhelper (>= 10~), + debhelper-compat (= 12), pkg-config, qtbase5-dev, qttools5-dev-tools, libgtkmm-2.4-dev, lv2-dev, -Standards-Version: 4.1.1 -Vcs-Git: https://anonscm.debian.org/git/pkg-multimedia/abgate.git -Vcs-Browser: https://anonscm.debian.org/git/pkg-multimedia/abgate.git +Standards-Version: 4.4.1 +Vcs-Git: https://salsa.debian.org/multimedia-team/abgate.git +Vcs-Browser: https://salsa.debian.org/multimedia-team/abgate Homepage: http://abgate.sourceforge.net Package: abgate diff -Nru abgate-1.1.9/debian/copyright abgate-1.1.9/debian/copyright --- abgate-1.1.9/debian/copyright 2017-11-01 11:32:59.000000000 +0000 +++ abgate-1.1.9/debian/copyright 2019-10-13 18:45:13.000000000 +0000 @@ -1,4 +1,4 @@ -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: abGate Upstream-Contact: Antanas Bružas Source: http://sourceforge.net/projects/abgate/files/ diff -Nru abgate-1.1.9/debian/patches/cross.patch abgate-1.1.9/debian/patches/cross.patch --- abgate-1.1.9/debian/patches/cross.patch 1970-01-01 00:00:00.000000000 +0000 +++ abgate-1.1.9/debian/patches/cross.patch 2019-10-13 18:46:29.000000000 +0000 @@ -0,0 +1,23 @@ +--- abgate-1.1.9.orig/Makefile ++++ abgate-1.1.9/Makefile +@@ -3,6 +3,7 @@ + BUNDLE = abGate.lv2 + PREFIX = /usr + INSTALL_DIR = $(DESTDIR)$(PREFIX)/lib/lv2 ++PKG_CONFIG ?= pkg-config + + $(BUNDLE): manifest.ttl gate.ttl gate.so gate_gui.so bypass_on.png bypass_off.png knob.png background.png abGateQt/libabGateQt.so + rm -rf $(BUNDLE) +@@ -13,10 +14,10 @@ + cd abGateQt; qmake; make + + gate.so: gate.cpp +- g++ $(LDFLAGS) $(CPPFLAGS) $(CFLAGS) -g -O3 -shared -fPIC -DPIC -Wl,--as-needed gate.cpp `pkg-config --cflags --libs lv2` -o gate.so ++ $(CXX) $(LDFLAGS) $(CPPFLAGS) $(CFLAGS) -g -O3 -shared -fPIC -DPIC -Wl,--as-needed gate.cpp `$(PKG_CONFIG) --cflags --libs lv2` -o gate.so + + gate_gui.so: gate_gui.cpp main_window.cpp main_window.h knob.cpp knob.h toggle.cpp toggle.h preset_widget.cpp preset_widget.h presets.cpp presets.h preset.cpp preset.h gate_const.h plugin_configuration.h +- g++ $(LDFLAGS) $(CPPFLAGS) $(CFLAGS) -g -O3 -shared -fPIC -DPIC -Wl,--as-needed gate_gui.cpp main_window.cpp knob.cpp toggle.cpp preset_widget.cpp presets.cpp preset.cpp `pkg-config --cflags gtkmm-2.4 --libs lv2 gthread-2.0` -o gate_gui.so ++ $(CXX) $(LDFLAGS) $(CPPFLAGS) $(CFLAGS) -g -O3 -shared -fPIC -DPIC -Wl,--as-needed gate_gui.cpp main_window.cpp knob.cpp toggle.cpp preset_widget.cpp presets.cpp preset.cpp `$(PKG_CONFIG) --cflags gtkmm-2.4 --libs lv2 gthread-2.0` -o gate_gui.so + + all: $(BUNDLE) + diff -Nru abgate-1.1.9/debian/patches/series abgate-1.1.9/debian/patches/series --- abgate-1.1.9/debian/patches/series 2017-10-11 14:19:02.000000000 +0000 +++ abgate-1.1.9/debian/patches/series 2019-10-13 18:46:29.000000000 +0000 @@ -1 +1,2 @@ 0002-flags.patch +cross.patch diff -Nru abgate-1.1.9/debian/rules abgate-1.1.9/debian/rules --- abgate-1.1.9/debian/rules 2017-11-01 11:25:19.000000000 +0000 +++ abgate-1.1.9/debian/rules 2019-10-13 18:46:29.000000000 +0000 @@ -8,3 +8,10 @@ %: dh $@ + +override_dh_auto_configure: + dh_auto_configure --sourcedirectory=abGateQt + +override_dh_auto_build: + dh_auto_build --sourcedirectory=abGateQt + dh_auto_build