libfile-finder-perl 0.53-4 source package in Ubuntu

Changelog

libfile-finder-perl (0.53-4) unstable; urgency=medium

  [ Debian Janitor ]
  * Apply multi-arch hints. + libfile-finder-perl: Add Multi-Arch: foreign.

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

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe perl
Noble release universe perl
Mantic release universe perl
Lunar release universe perl

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libfile-finder-perl_0.53-4.dsc 2.2 KiB 0734afa864c068de6141be88cf48eb1a8571c556bd2b980d887c9cdeb479244e
libfile-finder-perl_0.53.orig.tar.gz 14.1 KiB 2ecbc19ac67a9e635c872a807a8d3eaaff5babc054f15a191d47cdfc5f176a74
libfile-finder-perl_0.53-4.debian.tar.xz 2.5 KiB 3652ebc2635abff15a51273e86caefffb21045d61ee64e89a9961d2f05af8c21

Available diffs

No changes file available.

Binary packages built by this source

libfile-finder-perl: wrapper for File::Find à la find(1)

 File::Find is great, but constructing the wanted routine can sometimes be a
 pain. File::Finder provides a wanted-writer, using syntax that is directly
 mappable to the find command's syntax.
 .
 A File::Finder object contains a hash of File::Find options, and a series of
 steps that mimic find's predicates. Initially, a File::Finder object has no
 steps. Each step method clones the previous object's options and steps, and
 then adds the new step, returning the new object. In this manner, an object
 can be grown, step by step, by chaining method calls. Furthermore, a partial
 sequence can be created and held, and used as the head of many different
 sequences.