Import patches-unapplied version 0.37 to ubuntu/gutsy

Imported using git-ubuntu import.

Changelog parent: ce983b02a7

New changelog entries:
  * Run fdupes on ${ROOT}/usr.
impish 0.37
Matthias Klose 18 years ago committed by usd-importer
parent ce983b02a7
commit 17935684f6

6
debian/changelog vendored

@ -1,3 +1,9 @@
livecd-rootfs (0.37) gutsy; urgency=low
* Run fdupes on ${ROOT}/usr.
-- Matthias Klose <doko@ubuntu.com> Wed, 03 Oct 2007 16:46:14 +0200
livecd-rootfs (0.36) gutsy; urgency=low
* Change the names of ia64 kernels to the right (non-SMP since they're

2
debian/control vendored

@ -7,7 +7,7 @@ Standards-Version: 3.6.1.0
Package: livecd-rootfs
Architecture: all
Depends: debootstrap, rsync, python-minimal | python, procps, squashfs-tools, grep-dctrl
Depends: debootstrap, rsync, python-minimal | python, procps, squashfs-tools, grep-dctrl, fdupes
Suggests: partimage
Description: construction script for the livecd rootfs
livecd-rootfs provides the script used to create the root filesystem

@ -381,6 +381,13 @@ deb-src ${SECSRCMIRROR} ${STE}-security ${COMP}
# And now that we're done messing with debconf, destroy the backup files:
rm -f ${ROOT}/var/cache/debconf/*-old
# search for duplicate files, write the summary to stdout,
if which fdupes >/dev/null 2>&1; then
echo BEGIN fdupes
fdupes --recurse --noempty --sameline --size --quiet ${ROOT}/usr
echo END fdupes
fi
# Dirty hack to mark langpack stuff as manually installed
perl -i -nle 'print unless /^Package: language-(pack|support)/ .. /^$/;' \
${ROOT}/var/lib/apt/extended_states

Loading…
Cancel
Save