The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

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.

Parameters
$NAME

The name of the maintainer.

%PATH_PARAMS

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
Returns
$MNAME

The name of the maintainer as given to the constructor.

packages

  @PKGOBJS = $OBJ->packages
Returns
@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

WWW::AUR

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.