libfile-pushd-perl 1.016-2 source package in Ubuntu

Changelog

libfile-pushd-perl (1.016-2) unstable; urgency=medium

  [ Xavier Guimard ]
  * Email change: Xavier Guimard -> <email address hidden>

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

  [ Debian Janitor ]
  * Bump debhelper from old 10 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Set upstream metadata fields: Bug-Submit.
  * Remove obsolete fields Contact, Name from debian/upstream/metadata
    (already present in machine-readable debian/copyright).
  * Bump debhelper from old 12 to 13.
  * Update standards version to 4.1.5, no changes needed.

 -- Jelmer Vernooij <email address hidden>  Tue, 06 Dec 2022 17:25:27 +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
Oracular release universe perl
Noble release universe perl
Mantic release universe perl
Lunar release universe perl

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libfile-pushd-perl_1.016-2.dsc 2.1 KiB d03111212c40ad902c1a62c33d82f15fbdcecf44483e4c27c8e581ec9c17fc3f
libfile-pushd-perl_1.016.orig.tar.gz 19.3 KiB d73a7f09442983b098260df3df7a832a5f660773a313ca273fa8b56665f97cdc
libfile-pushd-perl_1.016-2.debian.tar.xz 3.2 KiB 87da1fe23f8be916a7c4a79bc080d41b33d4a0495ea0874c0904c3bc1ed4d7a4

Available diffs

No changes file available.

Binary packages built by this source

libfile-pushd-perl: module for changing directory temporarily for a limited scope

 File::pushd does a temporary chdir that is easily and automatically reverted,
 similar to pushd in some Unix command shells. It works by creating an object
 that caches the original working directory. When the object is destroyed, the
 destructor calls chdir to revert to the original working directory. By
 storing the object in a lexical variable with a limited scope, this happens
 automatically at the end of the scope.
 .
 This is very handy when working with temporary directories for tasks like
 testing; a function is provided to streamline getting a temporary directory
 from File::Temp.