Source: gnome-color-manager Version: 3.30.0-1 Tags: ftbfs patch User: [email protected] Usertags: rebootstrap
gnome-color-manager fails to build from source when enabling the nocheck build profile: | make[1]: Entering directory '/<<PKGBUILDDIR>>' | xvfb-run dh_auto_test | make[1]: xvfb-run: Command not found | make[1]: *** [debian/rules:13: override_dh_auto_test] Error 127 | make[1]: Leaving directory '/<<PKGBUILDDIR>>' | make: *** [debian/rules:7: build-arch] Error 2 | dpkg-buildpackage: error: debian/rules build-arch subprocess returned exit status 2 The xvfb dependency is tagged <!nocheck> yet used. The attached patch fixes that. Helmut
diff --minimal -Nru gnome-color-manager-3.30.0/debian/changelog gnome-color-manager-3.30.0/debian/changelog --- gnome-color-manager-3.30.0/debian/changelog 2018-09-05 02:31:39.000000000 +0200 +++ gnome-color-manager-3.30.0/debian/changelog 2018-11-27 20:45:44.000000000 +0100 @@ -1,3 +1,10 @@ +gnome-color-manager (3.30.0-1.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Fix FTBFS with nocheck profile. (Closes: #-1) + + -- Helmut Grohne <[email protected]> Tue, 27 Nov 2018 20:45:44 +0100 + gnome-color-manager (3.30.0-1) unstable; urgency=medium * New upstream release diff --minimal -Nru gnome-color-manager-3.30.0/debian/rules gnome-color-manager-3.30.0/debian/rules --- gnome-color-manager-3.30.0/debian/rules 2018-09-05 02:31:39.000000000 +0200 +++ gnome-color-manager-3.30.0/debian/rules 2018-11-27 20:45:42.000000000 +0100 @@ -9,8 +9,10 @@ override_dh_auto_configure: dh_auto_configure -- --libexecdir=/usr/lib/gnome-color-manager +ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) override_dh_auto_test: xvfb-run dh_auto_test +endif override_dh_installdocs: dh_installdocs

