diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2009-10-11 13:54:42 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2009-10-11 13:54:42 +0000 |
commit | 056cf4eabcf8f637818ea45d6292b01e30f9cf60 (patch) | |
tree | 37447450b3a3e40beea5355eb3d09c0d44a24ca9 /usr.sbin | |
parent | 09003ad47b337807cd1bd122f75ca5c47e10fe3e (diff) |
get really_add to deal with lists of newer packages in updateset
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/pkg_add/pkg_add | 126 |
1 files changed, 70 insertions, 56 deletions
diff --git a/usr.sbin/pkg_add/pkg_add b/usr.sbin/pkg_add/pkg_add index 8478c5b7965..061d90ad8de 100644 --- a/usr.sbin/pkg_add/pkg_add +++ b/usr.sbin/pkg_add/pkg_add @@ -1,7 +1,7 @@ #! /usr/bin/perl # ex:ts=8 sw=4: -# $OpenBSD: pkg_add,v 1.340 2009/10/11 12:56:13 espie Exp $ +# $OpenBSD: pkg_add,v 1.341 2009/10/11 13:54:41 espie Exp $ # # Copyright (c) 2003-2009 Marc Espie <espie@openbsd.org> # @@ -389,26 +389,28 @@ sub really_add $set->validate_plists($state); - my $handle = $set->handle; - my $plist = $handle->{plist}; - my $pkgname = $handle->{pkgname}; my $errors = 0; - $state->set_name_from_handle($handle); - if ($plist->is_signed) { - if ($state->{defines}->{nosig}) { - print STDERR "NOT CHECKING DIGITAL SIGNATURE FOR ", - $plist->pkgname, "\n"; - $state->{check_digest} = 0; - } else { - require OpenBSD::x509; + $state->set_name_from_handle($set->handle); + for my $handle ($set->newer) { + my $plist = $handle->{plist}; + if ($plist->is_signed) { + if ($state->{defines}->{nosig}) { + print STDERR + "NOT CHECKING DIGITAL SIGNATURE FOR ", + $plist->pkgname, "\n"; + $state->{check_digest} = 0; + } else { + require OpenBSD::x509; - if (!OpenBSD::x509::check_signature($plist, $state)) { - Fatal "fatal issues in ", $set->print; + if (!OpenBSD::x509::check_signature($plist, + $state)) { + Fatal "fatal issues in ", $set->print; + } + $state->{check_digest} = 1; } - $state->{check_digest} = 1; + } else { + $state->{check_digest} = 0; } - } else { - $state->{check_digest} = 0; } $set->setup_header($state); @@ -444,20 +446,24 @@ sub really_add $set->compute_size; if ($replacing) { - $state->progress->set_header("$pkgname (extracting)"); + for my $handle ($set->newer) { + my $pkgname = $handle->{pkgname}; + $state->progress->set_header("$pkgname (extracting)"); - try { - OpenBSD::Replace::perform_extraction($handle, $state); - } catchall { - unless ($state->{interrupted}) { - Warn $_; - $errors++; + try { + OpenBSD::Replace::perform_extraction($handle, + $state); + } catchall { + unless ($state->{interrupted}) { + Warn $_; + $errors++; + } + }; + $state->progress->clear; + if ($state->{interrupted} || $errors) { + Fatal partial_install("Installation of $pkgname failed", + $set, $state); } - }; - $state->progress->clear; - if ($state->{interrupted} || $errors) { - Fatal partial_install("Installation of $pkgname failed", - $set, $state); } $set->{solver}->record_old_dependencies($state); @@ -482,39 +488,47 @@ sub really_add $state->progress->clear; } # Here there should be code to handle old libs + } + for my $handle ($set->newer) { + my $pkgname = $handle->{pkgname}; + my $plist = $handle->{plist}; $state->progress->set_header("$pkgname (installing)"); $state->set_name_from_handle($handle); - } - try { - OpenBSD::Add::perform_installation($handle, $state); - if (!$state->{interrupted} && $plist->has(INSTALL)) { - $plist->get(INSTALL)->run($state, 'POST-INSTALL'); + try { + OpenBSD::Add::perform_installation($handle, $state); + if (!$state->{interrupted} && $plist->has(INSTALL)) { + $plist->get(INSTALL)->run($state, 'POST-INSTALL'); + } + } catchall { + unless ($state->{interrupted}) { + Warn $_; + $errors++; + } + }; + $state->progress->next; + + unlink($plist->infodir.CONTENTS); + if ($state->{interrupted} || $errors) { + Fatal partial_install("Installation of $pkgname failed", + $set, $state); } - } catchall { - unless ($state->{interrupted}) { - Warn $_; - $errors++; + } + for my $handle ($set->newer) { + my $pkgname = $handle->{pkgname}; + my $plist = $handle->{plist}; + OpenBSD::SharedLibs::add_libs_from_plist($plist); + OpenBSD::Add::tweak_plist_status($plist, $state); + $plist->to_cache; + OpenBSD::Add::register_installation($plist); + $set->{solver}->register_dependencies($state); + add_installed($pkgname); + delete $handle->{partial}; + OpenBSD::PkgCfl::register($plist, $state); + if ($plist->has(DISPLAY)) { + $plist->get(DISPLAY)->prepare($state); } - }; - $state->progress->next; - - unlink($plist->infodir.CONTENTS); - if ($state->{interrupted} || $errors) { - Fatal partial_install("Installation of $pkgname failed", - $set, $state); - } - OpenBSD::SharedLibs::add_libs_from_plist($plist); - OpenBSD::Add::tweak_plist_status($plist, $state); - $plist->to_cache; - OpenBSD::Add::register_installation($plist); - $set->{solver}->register_dependencies($state); - add_installed($pkgname); - delete $handle->{partial}; - OpenBSD::PkgCfl::register($plist, $state); - if ($plist->has(DISPLAY)) { - $plist->get(DISPLAY)->prepare($state); } $set->{solver}->adjust_old_dependencies($state); if ($state->{repairdependencies}) { |