libfile-findlib-perl 0.001004-3 source package in Ubuntu

Changelog

libfile-findlib-perl (0.001004-3) unstable; urgency=medium

  * Team upload.
  * Remove generated test file via debian/clean. (Closes: #1046438)

 -- gregor herrmann <email address hidden>  Tue, 05 Mar 2024 14:03:09 +0100

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 universe misc
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libfile-findlib-perl_0.001004-3.dsc 2.3 KiB 917f9c26cb2f7290f5ec676b21775d323493e82d437d4a1ff54db08458908eac
libfile-findlib-perl_0.001004.orig.tar.gz 7.6 KiB c047e5bfac1bb05ff31b207f2b2510fcaca4f11e134a915db046248b01f4e5e5
libfile-findlib-perl_0.001004-3.debian.tar.xz 2.6 KiB f8e50253db463592f328767cc024dd4837efe1f01ac2b17b4d7f4094a354787e

Available diffs

No changes file available.

Binary packages built by this source

libfile-findlib-perl: module to find and use a file/dir from a directory above your script file

 File::FindLib starts in the directory where your script (or library) is
 located and looks for the file or directory whose name you pass in. If it
 isn't found, then FindLib looks in the parent directory and continues moving
 up parent directories until it finds it or until there is not another parent
 directory.
 .
 If it finds the named path and it is a directory, then it prepends it to
 @INC. That is,
 .
   use File::FindLib 'lib';
 .
 is roughly equivalent to:
 .
   use File::Basename qw< dirname >;
   use lib dirname(__FILE__) . '/../../../lib';