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

Changelog

libfile-pushd-perl (1.00-1) unstable; urgency=low

  * Initial Release. (Closes: #511580)

 -- Ubuntu Archive Auto-Sync <email address hidden>   Wed,  29 Apr 2009 16:15:10 +0100

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Karmic
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Karmic: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libfile-pushd-perl_1.00.orig.tar.gz 11.0 KiB bf2716418b587eeb4f38abc00a7d5fa92217d6db75b31ee56ee5be5efeff0c92
libfile-pushd-perl_1.00-1.diff.gz 1.8 KiB b8a4a4021aa0001f3c815d73f504d2b6676b8d868409d88846be5abe51322218
libfile-pushd-perl_1.00-1.dsc 1.3 KiB 48bdc7eb4ea5d56ef1658ebb2f81fcb00c02eaea4e3c8c22b99064c8e87a99f9

View changes file

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.