# ex:ts=8 sw=4: # $OpenBSD: PackageRepositoryList.pm,v 1.17 2009/04/19 14:58:32 espie Exp $ # # Copyright (c) 2003-2006 Marc Espie # # Permission to use, copy, modify, and distribute this software for any # purpose with or without fee is hereby granted, provided that the above # copyright notice and this permission notice appear in all copies. # # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. use strict; use warnings; package OpenBSD::PackageRepositoryList; sub new { my $class = shift; return bless [], $class; } sub add { my $self = shift; push @$self, @_; } sub find { my ($self, $pkgname, $arch) = @_; for my $repo (@$self) { my $pkg = $repo->find($pkgname, $arch); return $pkg if defined $pkg; } return; } sub grabPlist { my ($self, $pkgname, $arch, $code) = @_; for my $repo (@$self) { my $plist = $repo->grabPlist($pkgname, $arch, $code); return $plist if defined $plist; } return; } sub match { my ($self, @search) = @_; for my $repo (@$self) { my @l = $repo->match(@search); if (@l > 0) { return @l; } } return (); } sub match_locations { my ($self, @search) = @_; for my $repo (@$self) { my $l = $repo->match_locations(@search); if (@$l > 0) { return $l; } } return []; } sub cleanup { my $self = shift; for my $repo (@$self) { $repo->cleanup; } } sub print_without_src { my $self = shift; my @l = (); for my $repo (@$self) { next if $repo->isa("OpenBSD::PackageRepository::Source"); push(@l, $repo->url); } return join(':', @l); } 1;