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

NAME

Net::OBS::Client::BuildResults - fetch binarylist and fileinfo

SYNOPSIS

  use Net::OBS::Client::BuildResults;

  my $obj = Net::OBS::Client::BuildResults->new(
    apiurl     => $apiurl,
    project    => $project,
    package    => $package,
    repository => $repo,
    arch       => $arch,
  );

  my $bin = $obj->binarylist;

  my $inf = $obj->fileinfo($filename);

ATTRIBUTES

project

package

repository

arch

METHODS

binarylist - fetch list of binary buildresults

 my $bin = $obj->binarylist();

fileinfo - get detailed information about a specific package

 my $bin = $obj->fileinfo($filename);

AUTHOR

Frank Schreiner, <frank at samaxi.de>

SEE ALSO

You can find some examples in the "" in contrib directory

COPYRIGHT

Copyright 2016 Frank Schreiner <frank@samaxi.de>

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.