libfile-pushd-perl 1.009-1 source package in Ubuntu

Changelog

libfile-pushd-perl (1.009-1) unstable; urgency=medium


  * New upstream releases 1.007, 1.009.
  * Build-depend on Test::More 0.96.

 -- gregor herrmann <email address hidden>  Fri, 04 Jul 2014 20:33:16 +0200

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
Xenial release universe perl

Builds

Utopic: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libfile-pushd-perl_1.009-1.dsc 2.2 KiB af15fdc7e858ae518bce911144d9179a66d365ff43781f058c4feaa31464f95b
libfile-pushd-perl_1.009.orig.tar.gz 18.5 KiB 0bee63a6fc34ec6b33e95ae38dc664db6a98173a17e37ca00e67459f1d165277
libfile-pushd-perl_1.009-1.debian.tar.xz 2.7 KiB 196cba2722c38abed87104dfb42e1468f978a2419a4b3f98eb43a038fa43117c

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.