libpath-iterator-rule-perl 1.014-1 source package in Ubuntu

Changelog

libpath-iterator-rule-perl (1.014-1) unstable; urgency=medium

  * Team upload.

  [ gregor herrmann ]
  * debian/*: update GitHub URLs to use HTTPS.

  [ Laurent Baillet ]
  * add upstream metadata
  * New upstream version 1.014
  * fix lintian wrong-path-for-interpreter error
  * declare compliance with Debian Policy 4.2.0
  * declare test suite

 -- Laurent Baillet <email address hidden>  Tue, 21 Aug 2018 10:15:46 +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
Focal release main misc

Builds

Cosmic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libpath-iterator-rule-perl_1.014-1.dsc 2.4 KiB 1f5e68b920c7dcedad70b6142ca352c4bd205c0581a991d2e9f4a54f2bef6ca1
libpath-iterator-rule-perl_1.014.orig.tar.gz 51.6 KiB 3f7401d8bed43fc9303409ef6d9f34b85a203de6944050bbeb95855d3298b1a6
libpath-iterator-rule-perl_1.014-1.debian.tar.xz 4.6 KiB 5864b1d29c2cb58f305f7116a875147e38a4a3d8b8942378fa199b522923c259

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.