NAME
WWW::AUR::Maintainer - List packages owned by a given maintainer.
SYNOPSIS
my $maint = $aurobj->maintainer( 'juster' );
# or ...
my $maint = WWW::AUR::Maintainer->new( 'juster' );
my $name = $maint->name;
my @pkgs = $maint->packages;
CONSTRUCTOR
$OBJ = WWW::AUR::Maintainer->new( $NAME, %PATH_PARAMS? );
If the maintainer matching the given name does not exist, it is hard to tell. Currently if a bad maintainer name is given, the results of "packages" in METHODS will return an empty list.
$NAME
-
The name of the maintainer.
%PATH_PARAMS
(Optional)-
These are propogated to the WWW::AUR::Package objects created by "packages" in METHODS. See "PATH PARAMETERS" in WWW::AUR for more info.
METHODS
name
$MNAME = $OBJ->name
packages
@PKGOBJS = $OBJ->packages
@PKGOBJS
-
A list of WWW::AUR::Package objects. These represent the packages that are owned by the given maintainer. The list can be empty. If the maintainer named does not exist, the list will be empty.
SEE ALSO
AUTHOR
Justin Davis, <juster at cpan dot org>
BUGS
Please report any bugs or feature requests to bug-www-aur at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=WWW-AUR. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
Read the manual first. Send me an email if you still need help.
LICENSE AND COPYRIGHT
Copyright 2010 Justin Davis.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.