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

[SCM] Debian package checker branch, master, updated. 2.5.9-8-ge7028dc



The following commit has been merged in the master branch:
commit 3cba5ba5a0b53d35c829a86396b1f6151821a260
Author: Niels Thykier <niels@thykier.net>
Date:   Sun Jun 17 17:12:46 2012 +0200

    L::CollScript: collection script variant of L::CheckScript
    
    Signed-off-by: Niels Thykier <niels@thykier.net>

diff --git a/lib/Lintian/CollScript.pm b/lib/Lintian/CollScript.pm
new file mode 100644
index 0000000..7521abc
--- /dev/null
+++ b/lib/Lintian/CollScript.pm
@@ -0,0 +1,173 @@
+# Copyright (C) 2012 Niels Thykier <niels@thykier.net>
+#
+# 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::CollScript;
+
+use strict;
+use warnings;
+
+use base 'Class::Accessor';
+
+use Carp qw(croak);
+use File::Basename qw(dirname);
+
+use Lintian::Util qw(get_dsc_info);
+
+=head1 NAME
+
+Lintian::CollScript - Collection script handle
+
+=head1 SYNOPSIS
+
+ use Lintian::CollScript;
+
+ my $cs = Lintian::CollScript->new ("$ENV{'LINTIAN_ROOT'}/collection/index.desc");
+ my $name = $cs->name;
+ foreach my $needs (@{ $cs->needs_info }) {
+    print "$name needs $needs\n";
+ }
+ if ($cs->is_check_type ('binary') && $cs->is_check_type ('source')) {
+    # Check applies to binary pkgs AND source pkgs
+ }
+
+=head1 DESCRIPTION
+
+Instances of this class represents the data in the collection ".desc"
+files.  It allows access to the common meta data of the collection
+(such as Needs-Info).
+
+=head1 CLASS METHODS
+
+=over 4
+
+=item new (FILE)
+
+Parse FILE as a collection desc file.
+
+=cut
+
+sub new {
+    my ($class, $file) = @_;
+    my $header = get_dsc_info ($file);
+    my $self;
+    foreach my $field (qw(collector-script type version)) {
+        if (($header->{$field}//'') eq '') {
+            croak "Required field \"$field\" is missing (or empty) in $file";
+        }
+    }
+
+    $self = {
+        'name' => $header->{'collector-script'},
+        'type' => $header->{'type'},
+        'version' => $header->{'version'},
+        'type-table' => {},
+        'needs_info' => [split /\s*,\s*/, $header->{'needs-info'}//''],
+        'auto_remove' => 0,
+    };
+    $self->{'script_path'} =  dirname ($file) . '/' . $self->{'name'};
+    $self->{'auto_remove'} = 1
+        if lc ($header->{'auto-remove'}//'') eq 'yes';
+    for my $t (split /\s*,\s*/o, $self->{'type'}) {
+        $self->{'type-table'}->{$t} = 1;
+    }
+
+    bless $self, $class;
+
+    return $self;
+}
+
+=back
+
+=head1 INSTANCE METHODS
+
+=over 4
+
+=item name
+
+Returns the "name" of the collection script.  This is the value in the
+Collector-Script field in the file.
+
+=item type
+
+Returns the value stored in the "Type" field of the file.  For the
+purpose of testing if the collection applies to a given package type,
+the L</is_type> method can be used instead.
+
+
+=item version
+
+Returns the value of the "Version" field of the file.  This should be
+an integer describing the version of the collector script.
+
+=item auto_remove
+
+Returns a truth value if the collection has the "auto-remove" flag.
+
+=item script_path
+
+Returns the absolute path to the collection script.
+
+=cut
+
+Lintian::CollScript->mk_ro_accessors (qw(name type version auto_remove
+    script_path
+));
+
+=item needs_info
+
+Returns a list of all items listed in the Needs-Info field.  Neither
+the list nor its contents should be modified.
+
+=cut
+
+sub needs_info {
+    my ($self) = @_;
+    return @{ $self->{'needs_info'} };
+}
+
+=item is_type (TYPE)
+
+Returns a truth value if this collection can be applied to a TYPE package.
+
+=cut
+
+sub is_type {
+    my ($self, $type) = @_;
+    return $self->{'type-table'}->{$type};
+}
+
+=back
+
+=head1 AUTHOR
+
+Originally written by Niels Thykier <niels@thykier.net> for Lintian.
+
+=head1 SEE ALSO
+
+lintian(1), Lintian::Profile(3), Lintian::Tag::Info(3)
+
+=cut
+
+1;
+__END__
+
+# Local Variables:
+# indent-tabs-mode: nil
+# cperl-indent-level: 4
+# End:
+# vim: syntax=perl sw=4 sts=4 sr et

-- 
Debian package checker


Reply to: