Browse Source

Changed the package check to query -i, and check to see whether the status

has deinstall|purge, as well as to check whether the package actually exists.
master
freesource 23 years ago
parent
commit
1a84688f59
  1. 31
      add-ons/yard/make-debian-X11/make_debian-X11
  2. 31
      yard/scripts/make_debian

31
add-ons/yard/make-debian-X11/make_debian-X11

@ -291,18 +291,14 @@ return $stuff;
# the information is taken directly from the system. But it is fun
# to test for anyways, weirder things have been known to happen.
my $required_packages_check = "swim -q @required_packages|";
open (CHECK,$required_packages_check)
or die "Couldn't find any required packages: $?\n";
my @rpc;
while (<CHECK>) {
if (/^package/) {
my $rpc = (split(/\s/))[1];
push(@rpc,$rpc);
}
foreach my $p (@required_packages) {
$p =~ s/\+/\\+/g if $p !~ /\\+/g;
if ( grep(/Status: deinstall|Status: purge|package $p is not installed/,
`swim -qi $p`) == 1 ) {
push(@rpc,$p);
}
}
close (CHECK);
if (@rpc) {
print STDERR "These are the required packages which were specified:\n\n";
@ -313,17 +309,14 @@ if (@rpc) {
$, = "";
}
my $extra_packages_check = "swim -q @extra_packages|";
open (CHECK,$extra_packages_check)
or die "Couldn't find any required packages: $?\n";
my @epc;
while (<CHECK>) {
if (/^package/) {
my $epc = (split(/\s/))[1];
push(@epc,$epc);
}
foreach my $p (@extra_packages) {
$p =~ s/\+/\\+/g if $p !~ /\\+/g;
if ( grep(/Status: deinstall|Status: purge|package $p is not installed/,
`swim -qi $p`) == 1 ) {
push(@epc,$p);
}
}
close (CHECK);
if (@epc) {
print STDERR "These are the extra packages which were specified:\n\n";

31
yard/scripts/make_debian

@ -264,18 +264,14 @@ return $stuff;
# the information is taken directly from the system. But it is fun
# to test for anyways, weirder things have been known to happen.
my $required_packages_check = "swim -q @required_packages|";
open (CHECK,$required_packages_check)
or die "Couldn't find any required packages: $?\n";
my @rpc;
while (<CHECK>) {
if (/^package/) {
my $rpc = (split(/\s/))[1];
push(@rpc,$rpc);
}
foreach my $p (@required_packages) {
$p =~ s/\+/\\+/g if $p !~ /\\+/g;
if ( grep(/Status: deinstall|Status: purge|package $p is not installed/,
`swim -qi $p`) == 1 ) {
push(@rpc,$p);
}
}
close (CHECK);
if (@rpc) {
print STDERR "These are the required packages which were specified:\n\n";
@ -286,17 +282,14 @@ if (@rpc) {
$, = "";
}
my $extra_packages_check = "swim -q @extra_packages|";
open (CHECK,$extra_packages_check)
or die "Couldn't find any required packages: $?\n";
my @epc;
while (<CHECK>) {
if (/^package/) {
my $epc = (split(/\s/))[1];
push(@epc,$epc);
}
foreach my $p (@extra_packages) {
$p =~ s/\+/\\+/g if $p !~ /\\+/g;
if ( grep(/Status: deinstall|Status: purge|package $p is not installed/,
`swim -qi $p`) == 1 ) {
push(@epc,$p);
}
}
close (CHECK);
if (@epc) {
print STDERR "These are the extra packages which were specified:\n\n";

Loading…
Cancel
Save