aboutsummaryrefslogtreecommitdiffstats
path: root/gendistrib
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2005-09-28 10:32:25 +0000
committerRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2005-09-28 10:32:25 +0000
commit6378a14b26a7aa40327e2f44e238540c47858e5c (patch)
tree032f2a79217837692540fad24a981721a93b7e75 /gendistrib
parentdee5a0fbc3b052e20b3646b02d85c2678c483387 (diff)
downloadrpmtools-6378a14b26a7aa40327e2f44e238540c47858e5c.tar
rpmtools-6378a14b26a7aa40327e2f44e238540c47858e5c.tar.gz
rpmtools-6378a14b26a7aa40327e2f44e238540c47858e5c.tar.bz2
rpmtools-6378a14b26a7aa40327e2f44e238540c47858e5c.tar.xz
rpmtools-6378a14b26a7aa40327e2f44e238540c47858e5c.zip
First POD draft.
Diffstat (limited to 'gendistrib')
-rwxr-xr-xgendistrib97
1 files changed, 96 insertions, 1 deletions
diff --git a/gendistrib b/gendistrib
index 4189502..ed98c2b 100755
--- a/gendistrib
+++ b/gendistrib
@@ -32,7 +32,7 @@ my $urpm = new URPM;
my $tempdir = -d $ENV{TMPDIR} ? $ENV{TMPDIR} : -d "$ENV{HOME}/tmp" ? "$ENV{HOME}/tmp" : "/tmp";
my $headers_dir = $tempdir . "/.build_hdlist";
-sub usage {
+sub usage () {
print STDERR <<EOF;
Usage: $0 [options] dir
dir should be the top level of distro
@@ -433,3 +433,98 @@ if ($nooutput || !$nochkdep) {
}
}
}
+
+__END__
+
+=head1 NAME
+
+gendistrib - generates a mirror tree for a distribution
+
+=head1 SYNOPSIS
+
+ gendistrib [options] directory
+
+=head1 DESCRIPTION
+
+=head1 OPTIONS
+
+=over 4
+
+=item --compss I<file>
+
+Path of compss file (defaults to F<media/media_info/compss>).
+
+=item --depslist I<file>
+
+Path of depslist file (defaults to F<media/media_info/depslist.ordered>).
+
+=item --provides I<file> Path of provides file (defaults to F<media/media_info/provides>)
+
+=item --mediacfg I<file>
+
+Use the specified F<media.cfg> file (defaults to F<media/media_info/media.cfg>).
+
+=item --hdlists I<file>
+
+Path of the F<hdlists> file (defaults to F<media/media_info/hdlists>)
+
+=item --destdir I<dir>
+
+Create all new files in the specified directory. All subdirectories should
+exist. This option is mostly useful for testing, or while using a read-only
+repository.
+
+=item --headersdir I<dir>
+
+Put temporary files in this directory (defaults to TMPDIR).
+
+=item --nobadrpm
+
+Don't abort when encountering bad rpms.
+
+=item --skipmissingdir
+
+If a media dir is missing, ignore instead of aborting.
+
+=item --noemptymedia
+
+Stop and abort if an empty media is found.
+
+=item --nochkdep
+
+Don't search for missing dependencies.
+
+=item --blind
+
+Always rebuild indexes, without checking whether it's needed.
+
+=item --noclean
+
+Keep cache files.
+
+=item --nomediainfo
+
+Don't create per-media F<media_info> subdirectories.
+
+=item --nomd5sum
+
+Don't generate MD5SUM files.
+
+=item -s
+
+Silent mode.
+
+=back
+
+=head1 SEE ALSO
+
+=head1 COPYRIGHT
+
+Copyright (C) 1999-2005 Mandrakesoft
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+=cut