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
ubuntu/precise
Matthias Klose 17 years ago
parent edaf03af7c
commit 939c1b6d0b

10
debian/changelog vendored

@ -1,9 +1,15 @@
livecd-rootfs (0.36) UNRELEASED; urgency=low 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 * Change the names of ia64 kernels to the right (non-SMP since they're
merged) ones. merged) ones.
-- LaMont Jones <lamont@ubuntu.com> Wed, 26 Sep 2007 13:47:15 -0600 -- LaMont Jones <lamont@ubuntu.com> Wed, 26 Sep 2007 13:50:19 -0600
livecd-rootfs (0.35) gutsy; urgency=low livecd-rootfs (0.35) gutsy; urgency=low

2
debian/control vendored

@ -7,7 +7,7 @@ Standards-Version: 3.6.1.0
Package: livecd-rootfs Package: livecd-rootfs
Architecture: all 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 Suggests: partimage
Description: construction script for the livecd rootfs Description: construction script for the livecd rootfs
livecd-rootfs provides the script used to create the root filesystem 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: # And now that we're done messing with debconf, destroy the backup files:
rm -f ${ROOT}/var/cache/debconf/*-old 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 # Dirty hack to mark langpack stuff as manually installed
perl -i -nle 'print unless /^Package: language-(pack|support)/ .. /^$/;' \ perl -i -nle 'print unless /^Package: language-(pack|support)/ .. /^$/;' \
${ROOT}/var/lib/apt/extended_states ${ROOT}/var/lib/apt/extended_states

Loading…
Cancel
Save