diff -Nru umockdev-0.8.8/debian/changelog umockdev-0.8.8/debian/changelog --- umockdev-0.8.8/debian/changelog 2014-09-22 07:41:46.000000000 +0000 +++ umockdev-0.8.8/debian/changelog 2014-11-12 09:21:56.000000000 +0000 @@ -1,3 +1,13 @@ +umockdev (0.8.8-2) unstable; urgency=medium + + * Add 00git_ignore_udev_debug.patch: Ignore stderr from udevadm info, to + avoid udev debug message spew on stderr if udev debugging is enabled. In + particular, this works around #769228 which causes an FTBFS on ARM. + (Closes: #767909) + * Bump Standards-Version to 3.9.6 (no changes necessary). + + -- Martin Pitt Wed, 12 Nov 2014 10:21:52 +0100 + umockdev (0.8.8-1) unstable; urgency=medium * New upstream bug fix release which fixes test failures. diff -Nru umockdev-0.8.8/debian/control umockdev-0.8.8/debian/control --- umockdev-0.8.8/debian/control 2014-09-22 07:41:46.000000000 +0000 +++ umockdev-0.8.8/debian/control 2014-11-12 09:21:56.000000000 +0000 @@ -23,7 +23,7 @@ Homepage: https://github.com/martinpitt/umockdev/ Vcs-Git: git://git.debian.org/git/collab-maint/umockdev.git Vcs-Browser: http://git.debian.org/?p=collab-maint/umockdev.git -Standards-Version: 3.9.5 +Standards-Version: 3.9.6 Package: umockdev Architecture: any diff -Nru umockdev-0.8.8/debian/patches/00git_ignore_udev_debug.patch umockdev-0.8.8/debian/patches/00git_ignore_udev_debug.patch --- umockdev-0.8.8/debian/patches/00git_ignore_udev_debug.patch 1970-01-01 00:00:00.000000000 +0000 +++ umockdev-0.8.8/debian/patches/00git_ignore_udev_debug.patch 2014-11-12 09:21:56.000000000 +0000 @@ -0,0 +1,41 @@ +From b6219cd671bb1b7e8f8a48a0547164d4dbaffc41 Mon Sep 17 00:00:00 2001 +From: Martin Pitt +Date: Wed, 12 Nov 2014 10:13:06 +0100 +Subject: [PATCH] umockdev-record: Ignore stderr from udevadm info + +This avoids udev debug message spew on stderr if udev debugging is enabled. + +https://bugs.debian.org/767909 +--- + src/umockdev-record.vala | 6 +++--- + 2 files changed, 8 insertions(+), 3 deletions(-) + +diff --git a/src/umockdev-record.vala b/src/umockdev-record.vala +index ccb4337..421932e 100644 +--- a/src/umockdev-record.vala ++++ b/src/umockdev-record.vala +@@ -222,7 +222,7 @@ record_device(string dev) + debug("recording device %s", dev); + + // we start with udevadm dump of this device, which will include all udev properties +- string u_out; ++ string u_out, u_err; + int exitcode; + try { + Process.spawn_sync(null, +@@ -231,10 +231,10 @@ record_device(string dev) + SpawnFlags.SEARCH_PATH, + null, + out u_out, +- null, ++ out u_err, + out exitcode); + if (exitcode != 0) +- throw new SpawnError.FAILED("udevadm exited with code %i".printf(exitcode)); ++ throw new SpawnError.FAILED("udevadm exited with code %i\n%s".printf(exitcode, u_err)); + } catch (Error e) { + exit_error("Cannot call udevadm: %s", e.message); + } +-- +2.1.3 + diff -Nru umockdev-0.8.8/debian/patches/series umockdev-0.8.8/debian/patches/series --- umockdev-0.8.8/debian/patches/series 2014-09-22 07:41:46.000000000 +0000 +++ umockdev-0.8.8/debian/patches/series 2014-11-12 09:21:56.000000000 +0000 @@ -0,0 +1 @@ +00git_ignore_udev_debug.patch