Package: release.debian.org Severity: normal Tags: wheezy User: [email protected] Usertags: pu
live-tools diverts update-initramfs and installs its own implementation (that calls the original update-initramfs). Due to a lack of Depends: initramfs-tools this errors out if the original update-initramfs is not found, breaking all packages that don't depend on update-initramfs, but call update-initramfs only after checking for its existence. So let's add the missing Depends as it was done for jessie+. Andreas
diff -Nru live-tools-3.0.20/debian/changelog live-tools-3.0.20/debian/changelog --- live-tools-3.0.20/debian/changelog 2013-04-25 12:53:59.000000000 +0200 +++ live-tools-3.0.20/debian/changelog 2015-06-06 08:38:31.000000000 +0200 @@ -1,3 +1,10 @@ +live-tools (3.0.20-1+deb7u1) wheezy; urgency=medium + + * Non-maintainer upload. + * Depend on initramfs-tools. (Closes: #779888) + + -- Andreas Beckmann <[email protected]> Sat, 06 Jun 2015 08:37:26 +0200 + live-tools (3.0.20-1) unstable; urgency=low * Detect being run in a live system being built on a live system by diff -Nru live-tools-3.0.20/debian/control live-tools-3.0.20/debian/control --- live-tools-3.0.20/debian/control 2013-04-25 12:47:14.000000000 +0200 +++ live-tools-3.0.20/debian/control 2015-06-06 08:39:10.000000000 +0200 @@ -11,7 +11,7 @@ Package: live-tools Architecture: all -Depends: ${misc:Depends} +Depends: initramfs-tools, ${misc:Depends} Suggests: debian-installer-launcher, perl, rsync Description: Live System Support Scripts live-tools contains additional support scripts for live systems.

