[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[SCM] Debian package checker branch, infra-513663, updated. 2.5.0-rc2-122-g12888e8



The following commit has been merged in the infra-513663 branch:
commit 3f18b3fbd099f46efd5ae0d52753c721871381cf
Author: Niels Thykier <niels@thykier.net>
Date:   Tue Apr 12 13:06:22 2011 +0200

    Removed Lintian::Schedule - it was not longer used

diff --git a/debian/changelog b/debian/changelog
index 7e18551..00e5039 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -85,6 +85,8 @@ lintian (2.5.0~rc3) UNRELEASED; urgency=low
   * lib/Lintian/Collect.pm,lib/Lintian/Collect/*.pm:
     + [NT] Removed assumption that all the information handled by
       these are available in the current directory.
+  *  lib/Lintian/Schedule.pm:
+    + [NT] Removed file, replaced by Lintian::ProcessablePool.
 
   * private/runtests:
     + [NT] Added support for dumping build logs if a test fails.
diff --git a/lib/Lintian/Schedule.pm b/lib/Lintian/Schedule.pm
deleted file mode 100644
index db3d9c2..0000000
--- a/lib/Lintian/Schedule.pm
+++ /dev/null
@@ -1,168 +0,0 @@
-# Copyright (C) 2008 Frank Lichtenheld <frank@lichtenheld.de>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program.  If not, you can find it on the World Wide
-# Web at http://www.gnu.org/copyleft/gpl.html, or write to the Free
-# Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
-# MA 02110-1301, USA.
-
-package Lintian::Schedule;
-
-use strict;
-use warnings;
-
-use Util;
-use Lintian::Output qw(warning);
-
-sub new {
-    my ($class, %options) = @_;
-    my $self = {};
-
-    bless($self, $class);
-
-    $self->{opts} = \%options;
-    $self->{schedule} = [];
-    $self->{unique} = {};
-
-    return $self;
-}
-
-# schedule a package for processing
-sub add_file {
-    my ($self, $type, $file, %pkg_info) = @_;
-
-    my %long_types = ('b' => 'binary', 'c' => 'changes',
-                      's' => 'source', 'u' =>'udeb');
-    my ($pkg, $ver, $arch);
-    if ($type eq 's') {
-	($pkg, $ver, $arch) =
-	    (@pkg_info{qw(source version)}, 'source');
-    } elsif ($type eq 'c') {
-	my ($filename) = $file =~ m,.*/([^/]+)\.changes$,;
-	($pkg, $ver, $arch) =
-	    ($filename, @pkg_info{qw(version architecture)});
-    } else {
-	($pkg, $ver, $arch) =
-	    @pkg_info{qw(package version architecture)};
-    }
-    $pkg  ||= '';
-    # "0" is a valid version, so we can't use || here
-    $ver  = '' unless defined $ver and length $ver;
-    $arch ||= '';
-
-    if ( $pkg =~ m,/, ) {
-	warn(sprintf("warning: bad name for %2\$s package '%1\$s', skipping\n",
-	    $pkg, $long_types{$type}));
-	return 1;
-    }
-
-    my $s = "$type $pkg $ver $arch $file";
-    my %h = ( type => $type, package => $pkg, version => $ver,
-	      architecture => $arch, file => $file );
-
-    if ( $self->{unique}{$s}++ ) {
-	if ($self->{opts}{verbose}) {
-	    printf "N: Ignoring duplicate %s package %s (version %s)\n",
-		$long_types{$type},
-		$pkg, $ver;
-	}
-	return 1;
-    }
-
-    push(@{$self->{schedule}}, \%h);
-    return 1;
-}
-
-sub add_deb {
-    my ($self, $type, $file) = @_;
-
-    my $info = get_deb_info($file);
-    return unless defined $info;
-    return $self->add_file($type, $file, %$info);
-}
-
-sub add_dsc {
-    my ($self, $file) = @_;
-
-    my $info = get_dsc_info($file);
-    return unless defined $info;
-    return $self->add_file('s', $file, %$info);
-}
-
-sub add_pkg_list {
-    my ($self, $packages_file) = @_;
-
-    open(IN, '<', $packages_file)
-	or die("cannot open packages file $packages_file for reading: $!");
-    while (<IN>) {
-	chomp;
-	my ($type, $pkg, $ver, $file) = split(/\s+/, $_, 4);
-	if ($type eq 's') {
-	    $self->add_file($type, $file, source => $pkg, version => $ver);
-	} else {
-	    $self->add_file($type, $file, package => $pkg, version => $ver);
-	}
-    }
-    close(IN);
-}
-
-sub add_changes {
-    my ($self, $changes_file) = @_;
-
-    my $info = get_dsc_info($changes_file);
-    return unless defined $info;
-
-    my $status = $self->add_file('c', $changes_file, %$info);
-    # get directory and filename part of $changes_file
-    my ($arg_dir, $arg_name) = $changes_file =~ m,(.*)/([^/]+)$,;
-    my $file_list = $info->{files} || '';
-    for (split /\n/, $file_list) {
-	chomp;
-	s/^\s+//o;
-	next if $_ eq '';
-
-	my ($md5sum,$size,$section,$priority,$file) = split(/\s+/o, $_);
-
-	next if $file =~ m,/,;
-
-	if (not -f "$arg_dir/$file") {
-	    warning("$file does not exist, exiting");
-	    exit 2;
-	}
-
-	if ($file =~ /\.deb$/) {
-	    $status += $self->add_deb('b', "$arg_dir/$file");
-	} elsif ($file =~ /\.udeb$/) {
-	    $status += $self->add_deb('u', "$arg_dir/$file");
-	} elsif ($file =~ /\.dsc$/) {
-	    $status += $self->add_dsc("$arg_dir/$file");
-	}
-    }
-
-    return ($status ? 0 : 1);
-}
-
-# for each package (the sort is to make sure that source packages are
-# before the corresponding binary packages--this has the advantage that binary
-# can use information from the source packages if these are unpacked)
-my %type_sort = ('b' => 1, 'u' => 1, 's' => 2, 'c' => 3 );
-sub get_all {
-    return sort({$type_sort{$b->{type}} <=> $type_sort{$a->{type}}}
-		@{$_[0]->{schedule}});
-}
-
-sub count {
-    return scalar @{$_[0]->{schedule}};
-}
-
-1;

-- 
Debian package checker


Reply to: