libfile-wildcard-perl 0.11-4 source package in Ubuntu

Changelog

libfile-wildcard-perl (0.11-4) unstable; urgency=medium

  [ Debian Janitor ]
  * Bump debhelper from old 11 to 12.
  * Set debhelper-compat version in Build-Depends.

  [ gregor herrmann ]
  * debian/watch: use uscan version 4.

  [ Debian Janitor ]
  * Bump debhelper from old 12 to 13.

 -- Jelmer Vernooij <email address hidden>  Mon, 12 Dec 2022 21:26:15 +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
Noble release universe perl
Mantic release universe perl
Lunar release universe perl

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libfile-wildcard-perl_0.11-4.dsc 2.1 KiB 91e889acc036a393f5d9d334ecd30464831d949c369672ede26ddf8a4302ee10
libfile-wildcard-perl_0.11.orig.tar.gz 23.4 KiB bdd3f1a1b472e38069d21384edf5a3b36d1572bc17fff8a1c07a97ebb1881ead
libfile-wildcard-perl_0.11-4.debian.tar.xz 2.5 KiB 77d26ddc095a52fbe1df14520c40e615771e896117c2fc6ce39df194af459d4f

Available diffs

No changes file available.

Binary packages built by this source

libfile-wildcard-perl: Enhanced glob processing

 When looking at how various operating systems do filename wildcard expansion
 (globbing), VMS has a nice syntax which allows expansion and searching of
 whole directory trees. It would be nice if other operating systems had
 something like this built in. The best Unix can manage is through the utility
 program find.
 .
 File::Wildcard provides this facility to Perl. Whereas native VMS syntax uses
 the ellipsis "...", this will not fit in with POSIX filenames, as ... is a
 valid (though somewhat strange) filename. Instead, the construct "///" is
 used as this cannot syntactically be part of a filename, as you do not get
 three concurrent filename separators with nothing between (three slashes are
 used to avoid confusion with //node/path/name syntax).
 .
 You don't have to use this syntax, as you can do the splitting yourself and
 pass in an arrayref as your path.