From 35d5ababc9c11a82f669ac2343a64a72dec3250d Mon Sep 17 00:00:00 2001 From: Gustavo De Nardin Date: Fri, 30 Nov 2007 19:29:24 +0000 Subject: Youri action to update the Mandriva maintainers database. --- lib/Youri/Submit/Action/UpdateMdvDb.pm | 62 ++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 lib/Youri/Submit/Action/UpdateMdvDb.pm diff --git a/lib/Youri/Submit/Action/UpdateMdvDb.pm b/lib/Youri/Submit/Action/UpdateMdvDb.pm new file mode 100644 index 0000000..7906080 --- /dev/null +++ b/lib/Youri/Submit/Action/UpdateMdvDb.pm @@ -0,0 +1,62 @@ +# $Id$ +package Youri::Submit::Action::UpdateMdvDb; + +=head1 NAME + +Youri::Submit::Action::UpdateMdvDb - Mandriva maintainers database updater + +=head1 DESCRIPTION + +This action plugin calls an external script to update last commit info, as +well as add new packages, in the package maintainers database at +. + +=cut + +use warnings; +use strict; +use Carp; +use base qw/Youri::Submit::Action/; + +sub _init { + my $self = shift; + my %options = ( + @_ + ); + + # path for mdvdb-updaterep script + $self->{_mdvdb_updaterep} = $options{mdvdb_updaterep}; + + return $self; +} + +sub run { + my ($self, $package, $repository, $target, $define) = @_; + croak "Not a class method" unless ref $self; + + # only SRPMs matter + return unless $package->is_source(); + + unless ($self->{_test}) { + my $pkg_name = $package->get_name(); + my $pkg_media = $repository->_get_main_section($package, $target, $define); + $package->get_packager() =~ m/(\w[-_.\w]+\@[-_.\w]+)\W/; + my $pkg_commiter = $1; + + if (system($self->{_mdvdb_updaterep}, "update", $pkg_name, $pkg_media, $pkg_commiter, "youri")) { + print "ERROR: ".$self->{_mdvdb_updaterep}." failed for '$pkg_name', '$pkg_media', '$pkg_commiter'.\n"; + } else { + print "Updated package maintainers DB for '$pkg_name', '$pkg_media', '$pkg_commiter'.\n" if $self->{_verbose}; + } + } +} + +=head1 COPYRIGHT AND LICENSE + +Copyright (C) 2007, Mandriva + +This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. + +=cut + +1; -- cgit v1.2.1