aboutsummaryrefslogtreecommitdiffstats
path: root/genhdlist
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2005-09-30 15:14:43 +0000
committerRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2005-09-30 15:14:43 +0000
commitaed4e4c6e7f10448d7fe06b47cef9c048a457c14 (patch)
treebe3238c4d2bcc66b327c819df8980a06e034a39e /genhdlist
parent8225e7d80f816140883ea565847505b2baace466 (diff)
downloadrpmtools-aed4e4c6e7f10448d7fe06b47cef9c048a457c14.tar
rpmtools-aed4e4c6e7f10448d7fe06b47cef9c048a457c14.tar.gz
rpmtools-aed4e4c6e7f10448d7fe06b47cef9c048a457c14.tar.bz2
rpmtools-aed4e4c6e7f10448d7fe06b47cef9c048a457c14.tar.xz
rpmtools-aed4e4c6e7f10448d7fe06b47cef9c048a457c14.zip
Don't create a list file, unless explicitly told so (with --list)
Diffstat (limited to 'genhdlist')
-rw-r--r--genhdlist28
1 files changed, 19 insertions, 9 deletions
diff --git a/genhdlist b/genhdlist
index 70dd275..bbfaa6d 100644
--- a/genhdlist
+++ b/genhdlist
@@ -37,6 +37,7 @@ GetOptions(
'dest=s' => \$dest,
'headersdir=s' => \$tmpdir,
'help|h' => sub { usage(); exit 0 },
+ list => \my $list,
nobadrpm => \$nobadrpm,
noclean => \$noclean,
md5sum => \$md5sum,
@@ -62,8 +63,10 @@ if ($subdir && !-e $subdir) {
mkdir $subdir
or die "Can't mkdir $subdir: $!n";
}
-$subdir && -d $subdir && -w _ && -x _
- or die "$subdir isn't a writable directory, bailing out\n";
+if ($subdir) {
+ -d $subdir && -w _ && -x _
+ or die "$subdir isn't a writable directory, bailing out\n";
+}
!-e $tmpdir or -o _
or die "$tmpdir is not owned by you, bailing out\n";
rmtree($tmpdir) unless $noclean;
@@ -73,8 +76,11 @@ my @rpms;
my %rpmslist;
# get rpm list
-open my $list, ">", "${subdir}list$suffix"
- or die "Can't create list file [${subdir}list$suffix]: $!\n";
+my $listfh;
+if ($list) {
+ open $listfh, ">", "${subdir}list$suffix"
+ or die "Can't create list file [${subdir}list$suffix]: $!\n";
+}
foreach my $dir (@dir) {
print "parsing $dir\n" unless $nooutput;
@rpms = ();
@@ -103,10 +109,10 @@ foreach my $dir (@dir) {
# This code will become useless... see above
foreach my $rpm (@rpms) {
$rpmslist{($rpm =~ m!.*/(.*)\z!)[0]} or next;
- print $list "$rpm\n";
+ print $listfh "$rpm\n" if $list;
}
}
-close $list;
+close $listfh if $listfh;
# create hdlist file
# No rpms, exit !
@@ -158,6 +164,10 @@ before operation).
Put temporary files in directory.
+=item --list
+
+Creates a list file.
+
=item --md5sum
Generates an MD5SUM file.
@@ -191,9 +201,9 @@ of RPM packages found in the directories passed on the command-line. By
default it will put the hdlist and synthesis files in the current
directory.
-It will also generate a F<list> file containing the relative paths to all
-RPMs. Consequently, the paths to the directories passed to F<genhdlist> must
-be relative ones.
+If the option B<--list> is given, it will also generate a F<list> file containing
+the relative paths to all RPMs. Consequently, the paths to the directories
+passed to F<genhdlist> must be relative ones.
The temporary header directory (overriden by B<--headersdir>) defaults to
F<~/tmp/.build_hdlist>, then F<$TMPDIR/.build_hdlist> and