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

Changelog

libfile-chdir-perl (0.1008-1.2) unstable; urgency=medium

  * Non-maintainer upload
  * Convert to source format 3.0 (closes: #1007046)
  * d/copyright: Convert to machine-readable format
  * d/watch: Update version so that upstream is scanned again

 -- Bastian Germann <email address hidden>  Thu, 18 Apr 2024 20:49:01 +0200

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

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libfile-chdir-perl_0.1008-1.2.dsc 1.6 KiB 1538bcb297cd5cc22152d74b11904d6696985fa794ae10b05f9758026360d6dc
libfile-chdir-perl_0.1008.orig.tar.gz 21.1 KiB 993af084c4bd02369169e6dac20c414d5b589c53247b66bb837acce700fa0d59
libfile-chdir-perl_0.1008-1.2.debian.tar.xz 2.8 KiB 1194ac90d53d96bc2509d9b71ce55201404c702a2eee76b512b2b5d7c31dbe0a

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.