Lintian::Processable::Group -- A group of objects that Lintian can process
use Lintian::Processable::Group; my $group = Lintian::Processable::Group->new('lintian_2.5.0_i386.changes'); foreach my $proc ($group->get_processables){ printf "%s %s (%s)\n", $proc->pkg_name, $proc->pkg_version, $proc->pkg_type; } # etc.
Instances of this perl class are sets of processables. It allows at most one source and one changes or buildinfo package per set, but multiple binary packages (provided that the binary is not already in the set).
Returns or sets the lab used by this pool.
Returns a unique identifier for the group based on source and version.
Returns a hash reference to the binary processables in this group.
Returns the buildinfo processable in this group.
Returns the changes processable in this group.
Returns the source processable in this group.
Returns a hash reference to the udeb processables in this group.
Add all processables from .changes or .buildinfo file FILE.
Unpack this group.
Collection hook.
Process overrides.
Process group.
Removes the lab files to conserve disk space. Global destruction will also get these unless we are keeping the lab.
Adds $proc to $group. At most one source and one changes $proc can be in a $group. There can be multiple binary $proc's, as long as they are all unique. Successive buildinfo $proc's are silently ignored.
This will error out if an additional source or changes $proc is added to the group. Otherwise it will return a truth value if $proc was added.
Returns an array of all processables in $group. The processables are returned in the following order: changes (if any), source (if any), all binaries (if any) and all udebs (if any).
This order is based on the original order that Lintian processed packages in and some parts of the code relies on this order.
Note if $type is given, then only processables of that type is returned.
Removes $proc from $group
Returns all binary (and udeb) processables in $group.
If $group does not have any binary processables then an empty list is returned.
Returns $info element for this group.
Prepare a shared memory cache for all current members of the group. This is solely a memory saving optimization and is not required for correct performance.
Discard the info element of all members of this group, so the memory used by it can be reclaimed. Mostly useful when checking a lot of packages (e.g. on lintian.d.o).
Originally written by Niels Thykier <niels@thykier.net> for Lintian.
lintian(1)