Rename log.sort_deps* to sort_deps*.log for better consistency.
Closes: #571591
This commit is contained in:
parent
67df0a34b0
commit
f5f5b8b4a7
|
@ -1,5 +1,6 @@
|
|||
debian-cd (3.1.4) UNRELEASED; urgency=low
|
||||
|
||||
[ Frans Pop ]
|
||||
* Cleanup of packages included for bootable CDs (generate_d-i+k_list):
|
||||
- libsysfs2 workaround is no longer needed;
|
||||
- discover is no longer used anywhere;
|
||||
|
@ -9,7 +10,11 @@ debian-cd (3.1.4) UNRELEASED; urgency=low
|
|||
* Excluding reiserfs4 udebs is not needed for Squeeze.
|
||||
* Include pciutils on installation CDs.
|
||||
|
||||
-- Frans Pop <fjp@debian.org> Mon, 22 Feb 2010 01:03:33 +0100
|
||||
[ Karl Goetz ]
|
||||
* Rename log.sort_deps* to sort_deps*.log for better consistency.
|
||||
Closes: #571591
|
||||
|
||||
-- Steve McIntyre <93sam@debian.org> Tue, 27 Feb 2010 12:24:29 +0100
|
||||
|
||||
debian-cd (3.1.3) unstable; urgency=low
|
||||
|
||||
|
|
|
@ -34,8 +34,8 @@ my @output;
|
|||
|
||||
$| = 1; # Autoflush for debugging
|
||||
|
||||
open(LOG, ">$dir/log.sort_deps.$arch")
|
||||
|| die "Can't write in $dir/log.sort_deps.$arch !\n";
|
||||
open(LOG, ">$dir/sort_deps.$arch.log")
|
||||
|| die "Can't write in $dir/sort_deps.$arch.log !\n";
|
||||
|
||||
sub msg {
|
||||
my $level = shift;
|
||||
|
|
|
@ -271,13 +271,13 @@ if [ $DISKNUM = 1 ] ; then
|
|||
echo >> $CDDIR/README.excluded
|
||||
fi
|
||||
|
||||
grep "refused because of toobig" $BDIR/log.sort_deps* | sort -u | awk '{print $1}' > $BDIR/toobig
|
||||
grep "refused because of toobig" $BDIR/sort_deps*.log | sort -u | awk '{print $1}' > $BDIR/toobig
|
||||
if [ -s $BDIR/toobig ] ; then
|
||||
echo " Adding README.excluded (some package files were too big)"
|
||||
echo "For size reasons, the following packages were excluded from this disc set:" >> $CDDIR/README.excluded
|
||||
echo >> $CDDIR/README.excluded
|
||||
cat $BDIR/toobig >> $CDDIR/README.excluded
|
||||
grep "Can't add.*toobig" $BDIR/log.sort_deps* | sort -u | awk '{print $3}' > $BDIR/toobig-deps
|
||||
grep "Can't add.*toobig" $BDIR/sort_deps*.log | sort -u | awk '{print $3}' > $BDIR/toobig-deps
|
||||
if [ -s $BDIR/toobig-deps ] ; then
|
||||
echo >> $CDDIR/README.excluded
|
||||
echo "and that caused the following packages to be also excluded because" >> $CDDIR/README.excluded
|
||||
|
|
Loading…
Reference in New Issue