libpath-iterator-rule-perl 1.015-2 source package in Ubuntu

Changelog

libpath-iterator-rule-perl (1.015-2) unstable; urgency=medium

  [ Debian Janitor ]
  * Update lintian override info to new format on line 4-5.
  * Update standards version to 4.6.1, no changes needed.
  * Update lintian override info format in d/source/lintian-overrides on line
    2-3.

  [ Jelmer Vernooij ]
  * Fix lintian overrides.

 -- Jelmer Vernooij <email address hidden>  Sat, 19 Nov 2022 15:37:52 +0000

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release main misc
Noble release main misc
Mantic release main misc
Lunar release main misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libpath-iterator-rule-perl_1.015-2.dsc 2.4 KiB 01dfa6b988a42ed9e42db32960b7c772ff70dca262b62b22ef0de3f9afedd44b
libpath-iterator-rule-perl_1.015.orig.tar.gz 51.8 KiB f3b062c68e07c76f68de5bc33877cfe9e078b6351a61ba1650e33e09f51ecb29
libpath-iterator-rule-perl_1.015-2.debian.tar.xz 4.3 KiB 36f47ec7620920381c9a64eb2a4ae849c7c9b3db090e9c87603ee27a1fec558b

Available diffs

No changes file available.

Binary packages built by this source

libpath-iterator-rule-perl: iterative, recursive file finder

 Path::Iterator::Rule iterates over files and directories
 to identify ones matching a user-defined set of rules.
 The API is based heavily on File::Find::Rule,
 but with more explicit distinction between matching rules
 and options that influence how directories are searched.
 A Path::Iterator::Rule object is a collection of rules (match criteria)
 with methods to add additional criteria.
 Options that control directory traversal are given as arguments
 to the method that generates an iterator.
 .
 Here is a summary of features
 for comparison to other file finding modules:
  * provides many "helper" methods for specifying rules
  * offers (lazy) iterator and flattened list interfaces
  * custom rules implemented with callbacks
  * breadth-first (default) or pre- or post-order depth-first searching
  * follows symlinks (by default, but can be disabled)
  * directories visited only once (no infinite loop; can be disabled)
  * doesn't chdir during operation
  * provides an API for extensions
 .
 As a convenience, the PIR module is an empty subclass of this one
 that is less arduous to type for one-liners.