libfile-chdir-perl 0.1008-1.1 source package in Ubuntu

Changelog

libfile-chdir-perl (0.1008-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>  Sun, 27 Dec 2020 16:17:20 +0100

Upload details

Uploaded by:
James Bromberger
Uploaded to:
Sid
Original maintainer:
James Bromberger
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release main perl
Noble release main perl
Mantic release main perl
Lunar release main perl
Jammy release main perl

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libfile-chdir-perl_0.1008-1.1.dsc 1.7 KiB e04884783cdca27d0896800af6c671a36c5ef5528714a300e1d61873af84d02a
libfile-chdir-perl_0.1008.orig.tar.gz 21.1 KiB 993af084c4bd02369169e6dac20c414d5b589c53247b66bb837acce700fa0d59
libfile-chdir-perl_0.1008-1.1.diff.gz 15.4 KiB ab1727a76b841d0b5ac2b654cd7c03dd53d8a0c3f1d52ba936834796ab3d687d

Available diffs

No changes file available.

Binary packages built by this source

libfile-chdir-perl: more sensible way to change directories

 Perl's chdir() has the unfortunate problem of being very, very, very
 global. If any part of your program calls chdir() or if any library you
 use calls chdir(), it changes the current working directory for the
 whole program.
 .
 This sucks.
 .
 File::chdir gives you an alternative, $CWD and @CWD. These two variables
 combine all the power of chdir(), File::Spec and Cwd.