- added package list function -r list packages of specified feed -s list the feed names only and their URL - refresh of usage text
-d-This line, and those below, will be ignored-- M feeds SVN-Revision: 10322
This commit is contained in:
parent
1e32e6ddd3
commit
2dd0677c86
1 changed files with 47 additions and 7 deletions
|
@ -142,7 +142,6 @@ sub search_feed {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
sub search {
|
sub search {
|
||||||
my %opts;
|
my %opts;
|
||||||
|
|
||||||
|
@ -152,6 +151,40 @@ sub search {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sub list_feed {
|
||||||
|
my $feed = shift;
|
||||||
|
|
||||||
|
get_feed($feed);
|
||||||
|
foreach my $name (sort { lc($a) cmp lc($b) } keys %package) {
|
||||||
|
my $pkg = $package{$name};
|
||||||
|
if($pkg->{name}) {
|
||||||
|
printf "\%-32s\t\%s\n", $pkg->{name}, $pkg->{title};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub list {
|
||||||
|
my %opts;
|
||||||
|
|
||||||
|
getopts('r:sh', \%opts);
|
||||||
|
if ($opts{h}) {
|
||||||
|
usage();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
if ($opts{s}) {
|
||||||
|
foreach my $feed (@feeds) {
|
||||||
|
printf "\%-32s\tURL: %s\n", $feed->[1], $feed->[2];
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
foreach my $feed (@feeds) {
|
||||||
|
list_feed($feed->[1], @ARGV) if (!defined($opts{r}) or $opts{r} eq $feed->[1]);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
sub install_generic() {
|
sub install_generic() {
|
||||||
my $feed = shift;
|
my $feed = shift;
|
||||||
my $pkg = shift;
|
my $pkg = shift;
|
||||||
|
@ -332,21 +365,27 @@ sub usage() {
|
||||||
Usage: $0 <command> [options]
|
Usage: $0 <command> [options]
|
||||||
|
|
||||||
Commands:
|
Commands:
|
||||||
|
list [options]: List feeds and their content
|
||||||
|
Options:
|
||||||
|
-s : List of feed names and their URL.
|
||||||
|
-r <feedname>: List packages of specified feed.
|
||||||
|
|
||||||
install [options] <package>: Install a package
|
install [options] <package>: Install a package
|
||||||
Options:
|
Options:
|
||||||
-a installs all packages from all feeds or from the specified feed
|
-a : Install all packages from all feeds or from the specified feed using the -p option.
|
||||||
-p <feedname>: Prefer this feed when installing packages
|
-p <feedname>: Prefer this feed when installing packages.
|
||||||
-d <y|m|n>: Set default for newly installed packages
|
-d <y|m|n>: Set default for newly installed packages.
|
||||||
|
|
||||||
search [options] <substring>: Search for a package
|
search [options] <substring>: Search for a package
|
||||||
Options:
|
Options:
|
||||||
-r <feedname>: Only search in this feed
|
-r <feedname>: Only search in this feed
|
||||||
|
|
||||||
uninstall -a|<package>: Uninstall a package
|
uninstall -a|<package>: Uninstall a package
|
||||||
-a uninstalls all packages
|
-a : Uninstalls all packages.
|
||||||
|
|
||||||
update: Update packages and lists of feeds in feeds.list
|
update: Update packages and lists of feeds in feeds.conf .
|
||||||
clean: Remove downloaded/generated files
|
|
||||||
|
clean: Remove downloaded/generated files.
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
exit(1);
|
exit(1);
|
||||||
|
@ -360,6 +399,7 @@ my %update_method = (
|
||||||
);
|
);
|
||||||
|
|
||||||
my %commands = (
|
my %commands = (
|
||||||
|
'list' => \&list,
|
||||||
'update' => sub {
|
'update' => sub {
|
||||||
-d "feeds" or do {
|
-d "feeds" or do {
|
||||||
mkdir "feeds" or die "Unable to create the feeds directory";
|
mkdir "feeds" or die "Unable to create the feeds directory";
|
||||||
|
|
Loading…
Reference in a new issue