diff -Nru xenwatch-0.5.4/debian/changelog xenwatch-0.5.4/debian/changelog --- xenwatch-0.5.4/debian/changelog 2011-09-04 08:10:29.000000000 +0000 +++ xenwatch-0.5.4/debian/changelog 2015-07-19 15:11:02.000000000 +0000 @@ -1,21 +1,10 @@ -xenwatch (0.5.4-3ubuntu3) oneiric; urgency=low +xenwatch (0.5.4-4) unstable; urgency=medium - * No-change upload to force a build on amd64. + * QA upload. + * Use /bin/echo if the -e flag is needed. Fixes FTBFS if the shell builtin + does not implement this. (Closes: 750298) - -- Colin Watson Sun, 04 Sep 2011 09:10:28 +0100 - -xenwatch (0.5.4-3ubuntu2) oneiric; urgency=low - - * Build with libxen-deb. - - -- Chuck Short Fri, 02 Sep 2011 12:04:27 -0400 - -xenwatch (0.5.4-3ubuntu1) oneiric; urgency=low - - * Merge from debian unstable. Remaining changes: - - Replace libxen-dev with libxen3-dev in Build-Depends. - - -- Angel Abad Thu, 16 Jun 2011 11:59:29 +0200 + -- Andreas Beckmann Sun, 19 Jul 2015 17:11:02 +0200 xenwatch (0.5.4-3) unstable; urgency=low @@ -29,13 +18,6 @@ -- Ralf Treinen Wed, 15 Jun 2011 21:18:19 +0200 -xenwatch (0.5.4-2ubuntu1) maverick; urgency=low - - * Merge from debian unstable. (LP: #606261) Remaining changes: - - Replace libxen-dev with libxen3-dev in Build-Depends. - - -- Angel Abad Wed, 14 Jul 2010 18:36:53 +0100 - xenwatch (0.5.4-2) unstable; urgency=low * Wrapping build-depends. @@ -45,13 +27,6 @@ -- Daniel Baumann Sun, 09 Aug 2009 00:52:00 +0200 -xenwatch (0.5.4-1ubuntu1) jaunty; urgency=low - - * debian/control: - + Replace libxen-dev with libxen3-dev in Build-Depends. - - -- Michael Bienia Sat, 14 Feb 2009 11:45:19 +0100 - xenwatch (0.5.4-1) unstable; urgency=low * Correcting clean target of rules. diff -Nru xenwatch-0.5.4/debian/control xenwatch-0.5.4/debian/control --- xenwatch-0.5.4/debian/control 2011-09-02 16:04:21.000000000 +0000 +++ xenwatch-0.5.4/debian/control 2011-06-15 19:19:35.000000000 +0000 @@ -1,8 +1,7 @@ Source: xenwatch Section: admin Priority: optional -Maintainer: Ubuntu Developers -XSBC-Original-Maintainer: Debian QA Group +Maintainer: Debian QA Group Build-Depends: debhelper (>= 7.0.50~), libavahi-client-dev, libavahi-glib-dev, libgtk2.0-dev, libgtk-vnc-1.0-dev, libvirt-dev, libxen-dev, libxml2-dev diff -Nru xenwatch-0.5.4/debian/patches/series xenwatch-0.5.4/debian/patches/series --- xenwatch-0.5.4/debian/patches/series 2011-06-16 05:12:12.000000000 +0000 +++ xenwatch-0.5.4/debian/patches/series 2015-07-19 15:04:32.000000000 +0000 @@ -1,2 +1,3 @@ 01-shell.patch 02-binutils-gold.patch +use-bin-echo.patch diff -Nru xenwatch-0.5.4/debian/patches/use-bin-echo.patch xenwatch-0.5.4/debian/patches/use-bin-echo.patch --- xenwatch-0.5.4/debian/patches/use-bin-echo.patch 1970-01-01 00:00:00.000000000 +0000 +++ xenwatch-0.5.4/debian/patches/use-bin-echo.patch 2015-07-19 15:14:21.000000000 +0000 @@ -0,0 +1,14 @@ +Author: Andreas Beckmann +Description: only /bin/echo is guaranteed to have the -e flag + +--- a/mk/Autoconf.mk ++++ b/mk/Autoconf.mk +@@ -161,7 +161,7 @@ config: Make.config + @true + + Make.config: $(srcdir)/GNUmakefile +- @echo -e "$(make-config-q)" > $@ ++ @/bin/echo -e "$(make-config-q)" > $@ + @echo + @echo "Make.config written, edit if needed" + @echo