aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Youri/Submit/Check/History.pm
diff options
context:
space:
mode:
authorFlorent Villard <warly@mandriva.com>2006-10-16 11:30:28 +0000
committerFlorent Villard <warly@mandriva.com>2006-10-16 11:30:28 +0000
commit02381cd87e37dc5d6df37e56eef5f1e222a794cd (patch)
treefec5b8db1aba238ca91f5506239dec3ac37d3929 /lib/Youri/Submit/Check/History.pm
parent597e5f1d49cb0cc96a5655aeaa84a6fc4a83b041 (diff)
downloadmga-youri-submit-02381cd87e37dc5d6df37e56eef5f1e222a794cd.tar
mga-youri-submit-02381cd87e37dc5d6df37e56eef5f1e222a794cd.tar.gz
mga-youri-submit-02381cd87e37dc5d6df37e56eef5f1e222a794cd.tar.bz2
mga-youri-submit-02381cd87e37dc5d6df37e56eef5f1e222a794cd.tar.xz
mga-youri-submit-02381cd87e37dc5d6df37e56eef5f1e222a794cd.zip
add new youri subsections (from upstream)
Diffstat (limited to 'lib/Youri/Submit/Check/History.pm')
-rw-r--r--lib/Youri/Submit/Check/History.pm56
1 files changed, 56 insertions, 0 deletions
diff --git a/lib/Youri/Submit/Check/History.pm b/lib/Youri/Submit/Check/History.pm
new file mode 100644
index 0000000..82a1b05
--- /dev/null
+++ b/lib/Youri/Submit/Check/History.pm
@@ -0,0 +1,56 @@
+# $Id$
+package Youri::Upload::Check::History;
+
+=head1 NAME
+
+Youri::Upload::Check::History - Non-linear history check
+
+=head1 DESCRIPTION
+
+This check plugin rejects packages whose history does not include last
+available revision one.
+
+=cut
+
+use warnings;
+use strict;
+use Carp;
+use Youri::Package;
+use base qw/Youri::Upload::Check/;
+
+sub run {
+ my ($self, $package, $repository, $target, $define) = @_;
+ croak "Not a class method" unless ref $self;
+
+ my $last_revision =
+ $repository->get_last_older_revision($package, $target, $define);
+
+ if ($last_revision) {
+ # skip the test if last revision has been produced from another source package, as it occurs during package split/merges
+ return 1
+ if $last_revision->get_canonical_name() ne $package->get_canonical_name();
+
+ my ($last_revision_number) = $last_revision->get_last_change()->[Youri::Package::CHANGE_AUTHOR] =~ /(\S+)\s*$/;
+ my %entries =
+ map { $_ => 1 }
+ map { /(\S+)\s*$/ }
+ map { $_->[Youri::Package::CHANGE_AUTHOR] }
+ $package->get_changes();
+ unless ($entries{$last_revision_number}) {
+ $self->{_error} = "Last changelog entry $last_revision_number from last revision " . $last_revision->get_full_name() . " missing from current changelog";
+ return 0;
+ }
+ }
+
+ return 1;
+}
+
+=head1 COPYRIGHT AND LICENSE
+
+Copyright (C) 2002-2006, YOURI project
+
+This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
+
+=cut
+
+1;