aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2001-04-12 12:58:42 +0000
committerFrancois Pons <fpons@mandriva.com>2001-04-12 12:58:42 +0000
commit9c5af54de1a51836a6199dc595b944a9acd3e777 (patch)
tree84bea769e1d3c38c78b836f51f093c973c576169
parentdb2545e316e7d1293241a5cd94668234aa1afd51 (diff)
downloadrpmtools-9c5af54de1a51836a6199dc595b944a9acd3e777.tar
rpmtools-9c5af54de1a51836a6199dc595b944a9acd3e777.tar.gz
rpmtools-9c5af54de1a51836a6199dc595b944a9acd3e777.tar.bz2
rpmtools-9c5af54de1a51836a6199dc595b944a9acd3e777.tar.xz
rpmtools-9c5af54de1a51836a6199dc595b944a9acd3e777.zip
*** empty log message ***
-rw-r--r--packdrake.pm17
-rw-r--r--rpmtools.spec5
2 files changed, 15 insertions, 7 deletions
diff --git a/packdrake.pm b/packdrake.pm
index 9db7ee1..5ab0b92 100644
--- a/packdrake.pm
+++ b/packdrake.pm
@@ -288,7 +288,7 @@ sub compute_closure {
#- getting an packer object.
sub new {
- my ($class, $file) = @_;
+ my ($class, $file, %options) = @_;
my $packer = bless {
#- toc trailer data information.
header => 'cz[0',
@@ -307,6 +307,8 @@ sub new {
archive => undef,
files => [],
data => {},
+
+ log => $options{quiet} ? sub {} : sub { printf STDERR "%s\n", $_[0] },
}, $class;
$file and $packer->read_toc($file);
$packer;
@@ -340,7 +342,7 @@ sub list_archive {
my $packer = new packdrake($_);
my $count = scalar keys %{$packer->{data}};
- print STDERR "processing archive \"$_\"\n";
+ $packer->{log}("processing archive \"$_\"");
print "$count files in archive, uncompression method is \"$packer->{uncompress}\"\n";
foreach my $file (@{$packer->{files}}) {
for ($packer->{data}{$file}[0]) {
@@ -361,11 +363,14 @@ sub extract_archive {
foreach my $file (@file) {
#- check for presence of file, but do not abort, continue with others.
- $packer->{data}{$file} or do { print STDERR "packdrake: unable to find file $file in archive $packer->{archive}\n"; next };
+ unless ($packer->{data}{$file}) {
+ $packer->{log}("packdrake: unable to find file $file in archive $packer->{archive}");
+ next;
+ }
my $newfile = "$dir/$file";
- print STDERR "extracting $file\n";
+ $packer->{log}("extracting $file");
for ($packer->{data}{$file}[0]) {
/l/ && do { symlink_ $packer->{data}{$file}[1], $newfile; last; };
/d/ && do { mkdir_ $newfile; last; };
@@ -418,7 +423,7 @@ sub build_archive {
$compress && $uncompress and ($packer->{compress}, $packer->{uncompress}) = ($compress, $uncompress);
$tmpz and $packer->{tmpz} = $tmpz;
- print STDERR "choosing compression method with \"$packer->{compress}\" for archive $packer->{archive}\n";
+ $packer->{log}("choosing compression method with \"$packer->{compress}\" for archive $packer->{archive}");
unlink $packer->{archive};
unlink $packer->{tmpz};
@@ -467,7 +472,7 @@ sub build_archive {
system "$ENV{LD_LOADER} cat '$packer->{tmpz}' >>'$packer->{archive}'";
$off1 += $siz1;
}
- print STDERR "real archive size of $packer->{archive} is $off1\n";
+ $packer->{log}("real archive size of $packer->{archive} is $off1");
#- produce a TOC directly at the end of the file, follow with
#- a trailer with TOC summary and archive summary.
diff --git a/rpmtools.spec b/rpmtools.spec
index 176959e..5829c7c 100644
--- a/rpmtools.spec
+++ b/rpmtools.spec
@@ -1,5 +1,5 @@
%define name rpmtools
-%define release 17mdk
+%define release 18mdk
# do not modify here, see Makefile in the CVS
%define version 2.3
@@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/perl5/man/*/*
%changelog
+* Thu Apr 12 2001 François Pons <fpons@mandrakesoft.com> 2.3-18mdk
+- added quiet support for packdrake module (for DrakX).
+
* Tue Apr 3 2001 François Pons <fpons@mandrakesoft.com> 2.3-17mdk
- fixed error code management for parsehdlist.
- fixed read_hdlists return value.