diff -Nru synaptic-0.84.5/debian/changelog synaptic-0.84.5+rpi1/debian/changelog --- synaptic-0.84.5/debian/changelog 2018-11-08 07:50:31.000000000 +0000 +++ synaptic-0.84.5+rpi1/debian/changelog 2018-11-13 05:40:57.000000000 +0000 @@ -1,3 +1,13 @@ +synaptic (0.84.5+rpi1) buster-staging; urgency=medium + + [changes brought forward from 0.81.2+rpi1 by Peter Michael Green at Fri, 01 Aug 2014 01:51:30 +0000] + * Fix build on raspbian (see: #744371). + + [changes introduced in 0.83+rpi1+nmu1 by Peter Michael Green] + * Force build system to apply patches for Debian regardless of system. + + -- Raspbian forward porter Tue, 13 Nov 2018 05:40:57 +0000 + synaptic (0.84.5) unstable; urgency=medium [ Jeremy Bicha ] diff -Nru synaptic-0.84.5/debian/patches/00list synaptic-0.84.5+rpi1/debian/patches/00list --- synaptic-0.84.5/debian/patches/00list 2018-11-08 07:50:31.000000000 +0000 +++ synaptic-0.84.5+rpi1/debian/patches/00list 2018-11-13 05:40:57.000000000 +0000 @@ -1,3 +0,0 @@ -01_ubuntu_changelog -#10_ubuntu_maintenance_gui - diff -Nru synaptic-0.84.5/debian/rules synaptic-0.84.5+rpi1/debian/rules --- synaptic-0.84.5/debian/rules 2018-11-08 07:50:31.000000000 +0000 +++ synaptic-0.84.5+rpi1/debian/rules 2018-11-13 05:40:57.000000000 +0000 @@ -1,7 +1,8 @@ #!/usr/bin/make -f # make the package build on ubuntu and debian -DIST = $(shell lsb_release -i -s) +# DIST = $(shell lsb_release -i -s) +DIST = Debian DHFLAGS=--parallel CONFIGURE_FLAGS= --prefix=/usr \ @@ -48,7 +49,9 @@ # unpatch override_dh_auto_clean: - cp debian/patches/00list.$(DIST) debian/patches/00list - dpatch deapply-all + if [ -e debian/patches/00list.$(DIST) ]; then \ + cp debian/patches/00list.$(DIST) debian/patches/00list;\ + dpatch deapply-all;\ + fi; rm -rf patch-stamp debian/patched dh_auto_clean $(DHFLAGS)