aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Youri/Submit/Check/Section.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2007-06-29 13:36:22 +0000
committerPascal Rigaux <pixel@mandriva.com>2007-06-29 13:36:22 +0000
commitf36deffb742a8d801280606006807f2ad95f3849 (patch)
tree06502c46a3112662abdac58a855abaa900e4c122 /lib/Youri/Submit/Check/Section.pm
parent30e5f11dbc78f154d8a8a4d4dd93af39fd223cd0 (diff)
downloadmga-youri-submit-f36deffb742a8d801280606006807f2ad95f3849.tar
mga-youri-submit-f36deffb742a8d801280606006807f2ad95f3849.tar.gz
mga-youri-submit-f36deffb742a8d801280606006807f2ad95f3849.tar.bz2
mga-youri-submit-f36deffb742a8d801280606006807f2ad95f3849.tar.xz
mga-youri-submit-f36deffb742a8d801280606006807f2ad95f3849.zip
prepare mergetopic/mdv-to-merge
Diffstat (limited to 'lib/Youri/Submit/Check/Section.pm')
-rw-r--r--lib/Youri/Submit/Check/Section.pm58
1 files changed, 0 insertions, 58 deletions
diff --git a/lib/Youri/Submit/Check/Section.pm b/lib/Youri/Submit/Check/Section.pm
deleted file mode 100644
index 4ff1675..0000000
--- a/lib/Youri/Submit/Check/Section.pm
+++ /dev/null
@@ -1,58 +0,0 @@
-# $Id: Precedence.pm 1707 2006-10-16 16:26:42Z warly $
-package Youri::Submit::Check::Section;
-
-=head1 NAME
-
-Youri::Submit::Check::Section - Check if package was submitted to the right section
-
-=head1 DESCRIPTION
-
-This check plugin rejects packages which were submitted to a section
-different than the one where an older version already exists.
-
-=cut
-
-use warnings;
-use strict;
-use Carp;
-use base qw/Youri::Submit::Check/;
-
-sub run {
- my ($self, $package, $repository, $target, $define) = @_;
- croak "Not a class method" unless ref $self;
-
- my @errors;
-
- my $submitted_main_section = $repository->_get_main_section($package, $target, $define);
-
- # undefine section, so that Repository::_get_section() of Mandriva_upload.pm
- # finds the section from existing packages
- my $defined_section = $define->{section};
- undef $define->{section};
-
- my $old_main_section = $repository->_get_main_section($package, $target, $define);
- my @older_revisions = $repository->get_older_revisions($package, $target, $define);
-
- # restore defined section
- $define->{section} = $defined_section;
-
- if (@older_revisions && $submitted_main_section ne $old_main_section) {
- push(
- @errors,
- "Section should be $old_main_section, not $submitted_main_section."
- );
- }
-
-
- return @errors;
-}
-
-=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;