Package: colord Version: 1.4.4-1 Severity: minor Tags: patch User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu focal ubuntu-patch
Hi Chris, In Ubuntu, we are in the process (as you may know) of moving the i386 architecture to a compatibility-only layer on amd64. We are keeping colord on i386 because it's a build-dependency of gtk+3.0, but the colord-sensor-argyll binary package built from this source has dependencies on other packages that are not being kept as part of the compatibility library set (argyll). We would like to drop this binary package rather than keeping it around in the Ubuntu archive and uninstallable. Would you please consider applying the attached patch, or something like it, to omit building theis binary package on Ubuntu? Thanks for considering, -- Steve Langasek Give me a lever long enough and a Free OS Debian Developer to set it on, and I can move the world. Ubuntu Developer https://www.debian.org/ slanga...@ubuntu.com vor...@debian.org
diff -Nru colord-1.4.4/debian/rules colord-1.4.4/debian/rules --- colord-1.4.4/debian/rules 2019-08-13 22:41:01.000000000 -0700 +++ colord-1.4.4/debian/rules 2020-01-09 15:15:23.000000000 -0800 @@ -34,6 +34,10 @@ indep_flags = -Dprint_profiles=false endif +ifeq ($(shell dpkg-vendor --is Ubuntu && echo yes) $(DEB_HOST_ARCH), yes i386) + BUILD_PACKAGES += -Ncolord-sensor-argyll +endif + debian/stamps/generate_meson_build_system: mkdir -p debian/stamps touch debian/stamps/generate_meson_build_system @@ -58,4 +62,4 @@ dh_makeshlibs -Xcolord-sensors -Xcolord-plugins -- -c4 %: - dh $@ --builddirectory=$(BUILD_DIR) --with gir + dh $@ --builddirectory=$(BUILD_DIR) --with gir $(BUILD_PACKAGES)