- 1 line patch to fix a nasty (5 year old) bug. Closes: #285382
- Changed maintainer to debian-cd@lists.debian.org.
This commit is contained in:
parent
24d88a2b04
commit
e088707860
|
@ -1,5 +1,12 @@
|
||||||
debian-cd (2.2.21) UNRELEASED; urgency=low
|
debian-cd (2.2.21) UNRELEASED; urgency=low
|
||||||
|
|
||||||
|
* Raphael Hertzog
|
||||||
|
- One line patch to correct a five year old bug that nobody noticed !
|
||||||
|
Closes: #285382
|
||||||
|
- Change maintainer to "Debian CD Group <debian-cd@lists.debian.org>" and
|
||||||
|
put myself into Uploaders (as well as Santiago Garcia Mantinan & Steve
|
||||||
|
McIntyre). That's because I'm not keeping up well enough with debian-cd
|
||||||
|
and I need more people involved in managing bugs.
|
||||||
* Joey Hess
|
* Joey Hess
|
||||||
- Exclude all the new amd64 kernel images from cd #1, no space.
|
- Exclude all the new amd64 kernel images from cd #1, no space.
|
||||||
- Forgot to exclude old kernel-image-2.6.7-1-686-smp from cd #1.
|
- Forgot to exclude old kernel-image-2.6.7-1-686-smp from cd #1.
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
Source: debian-cd
|
Source: debian-cd
|
||||||
Section: admin
|
Section: admin
|
||||||
Priority: extra
|
Priority: extra
|
||||||
Maintainer: Raphael Hertzog <hertzog@debian.org>
|
Maintainer: Debian CD Group <debian-cd@lists.debian.org>
|
||||||
Uploaders: Steve McIntyre <93sam@debian.org>
|
Uploaders: Raphael Hertzog <hertzog@debian.org>, Santiago Garcia Mantinan <manty@debian.org>, Steve McIntyre <93sam@debian.org>
|
||||||
Build-Depends-Indep: debhelper (>= 4), sysutils
|
Build-Depends-Indep: debhelper (>= 4), sysutils
|
||||||
Standards-Version: 3.6.1.0
|
Standards-Version: 3.6.1.0
|
||||||
|
|
||||||
|
|
|
@ -138,6 +138,7 @@ msg(0, "-- Generating dependencies tree with apt-cache depends...\n");
|
||||||
my (@list) = keys %packages;
|
my (@list) = keys %packages;
|
||||||
while (@list) {
|
while (@list) {
|
||||||
my (@pkg) = splice(@list,0,200);
|
my (@pkg) = splice(@list,0,200);
|
||||||
|
$ENV{'LC_ALL'} = 'C'; # Required since apt is now translated
|
||||||
open (APT, "$apt cache depends @pkg |") || die "Can't fork : $!\n";
|
open (APT, "$apt cache depends @pkg |") || die "Can't fork : $!\n";
|
||||||
my (@res) = (<APT>);
|
my (@res) = (<APT>);
|
||||||
close APT or die "« apt-cache depends » failed ... \n" .
|
close APT or die "« apt-cache depends » failed ... \n" .
|
||||||
|
@ -359,7 +360,7 @@ sub dep_satisfied {
|
||||||
my $p = shift;
|
my $p = shift;
|
||||||
if (ref $p) {
|
if (ref $p) {
|
||||||
foreach (@{$p}) {
|
foreach (@{$p}) {
|
||||||
return 1 if $included{$p};
|
return 1 if $included{$_};
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return $included{$p};
|
return $included{$p};
|
||||||
|
|
Loading…
Reference in New Issue