libfile-find-wanted-perl 1.00-1.1 source package in Ubuntu

Changelog

libfile-find-wanted-perl (1.00-1.1) unstable; urgency=medium

  * Non maintainer upload by the Reproducible Builds team.
  * No source change upload to rebuild on buildd with .buildinfo files.

 -- Holger Levsen <email address hidden>  Tue, 05 Jan 2021 23:46:39 +0100

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
Jammy release universe perl

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libfile-find-wanted-perl_1.00-1.1.dsc 2.1 KiB abcf7bd286874b31b8ac40d617737dea503d78ecbec31a9eab66e5cd5e5c1bf3
libfile-find-wanted-perl_1.00.orig.tar.gz 2.8 KiB 3d41caadd1d4df785ef3eb269c667c656d864df79a490137f9cab33b8d244886
libfile-find-wanted-perl_1.00-1.1.debian.tar.xz 4.2 KiB c8defd86f239e069cbe9328be943cbe2362ebd6db143647c3da35ac731f05fa4

Available diffs

No changes file available.

Binary packages built by this source

libfile-find-wanted-perl: more obvious wrapper around File::Find

 File::Find::Wanted provides a find_wanted() function, which does what
 File::Find's find() does but in a more obvious way: To get a list of all
 files ending in .jpg, simply call
 .
    @files = find_wanted( sub { -f && /\.jpg$/ }, $dir );