summaryrefslogtreecommitdiff
path: root/devel/p5-File-pushd
AgeCommit message (Collapse)AuthorFilesLines
2019-08-11Bump PKGREVISIONs for perl 5.30.0wiz1-2/+2
2019-06-30Update packages using a search.cpan.org HOMEPAGE to metacpan.org.nia1-2/+2
The former now redirects to the latter. This covers the most simple cases where http://search.cpan.org/dist/name can be changed to https://metacpan.org/release/name. Reviewed by hand to hopefully make sure no unwanted changes sneak in.
2018-08-22Recursive bump for perl5-5.28.0wiz1-1/+2
2018-05-30Update to 1.016wen2-8/+7
Upstream changes: 1.016 2018-05-20 13:31:17-04:00 America/New_York - No changes from 1.015-TRIAL 1.015 2018-05-13 19:26:26-04:00 America/New_York (TRIAL RELEASE) [FIXED] - Directories created with tempd will only be cleaned up by the PID that created them, not by forked children.
2017-06-05Recursive revbump from lang/perl5 5.26.0ryoon1-1/+2
2016-10-12Updated devel/p5-File-pushd to 1.014mef2-8/+7
------------------------------------ 1.014 2016-10-09 23:26:19-04:00 America/New_York - No changes from 1.013-TRIAL. 1.013 2016-10-05 12:57:44-04:00 America/New_York (TRIAL RELEASE) [TESTING] - Fixed test failures on some 5.8 perls. 1.011 2016-10-05 12:35:27-04:00 America/New_York (TRIAL RELEASE) [CHANGED] - pushd/tempd warn if called in void context (GitHub #9 Olivier Mengué)
2016-06-08Bump PKGREVISION for perl-5.24.wiz1-2/+2
2015-11-03Add SHA512 digests for distfiles for devel categoryagc1-1/+2
Issues found with existing distfiles: distfiles/eclipse-sourceBuild-srcIncluded-3.0.1.zip distfiles/fortran-utils-1.1.tar.gz distfiles/ivykis-0.39.tar.gz distfiles/enum-1.11.tar.gz distfiles/pvs-3.2-libraries.tgz distfiles/pvs-3.2-linux.tgz distfiles/pvs-3.2-solaris.tgz distfiles/pvs-3.2-system.tgz No changes made to these distinfo files. Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2015-06-12Recursive PKGREVISION bump for all packages mentioning 'perl',wiz1-1/+2
having a PKGNAME of p5-*, or depending such a package, for perl-5.22.0.
2015-01-31Update 1.005 to 1.009mef2-7/+6
--------------------- 1.009 2014-07-03 13:17:48-04:00 America/New_York [FIXED] - s/0.95/0.96/ in t/File_pushd.t 1.008 2014-07-03 13:03:30-04:00 America/New_York [FIXED] - Require a newer version of Test::More 1.007 2014-05-30 23:59:02-04:00 America/New_York [FIXED] - Fixed a testing edge case on Windows 1.006 2014-03-27 15:29:36-04:00 America/New_York [DOCUMENTED] - Noted that multiple pushd objects in a lexical scope are not destroyed in a predictable order [CHANGED] - Modernized Dist::Zilla configuration and repo support files
2014-05-29Bump for perl-5.20.0.wiz1-1/+2
Do it for all packages that * mention perl, or * have a directory name starting with p5-*, or * depend on a package starting with p5- like last time, for 5.18, where this didn't lead to complaints. Let me know if you have any this time.
2013-09-10Changes 1.005:adam2-7/+6
- Fix failing test for changing to non-existent directory on some older Perls for some platforms
2013-05-31Bump all packages for perl-5.18, thatwiz1-2/+2
a) refer 'perl' in their Makefile, or b) have a directory name of p5-*, or c) have any dependency on any p5-* package Like last time, where this caused no complaints.
2012-10-31Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-10-03Bump all packages that use perl, or depend on a p5-* package, orwiz1-1/+2
are called p5-*. I hope that's all of them.
2012-07-06Updating package for Perl 5 module File::pushd in devel/p5-File-pushd fromsno2-6/+6
1.001 to 1.002. Upstream changes: 1.002 2011-12-07 11:40:26 EST5EDT [BUG FIXES] - Fix failures on cygwin [rt.cpan.org #73072 Reini Urban]
2011-11-16Updating Perl5 module File::pushd in devel/p5-File-pushd from 1.00nb2 tosno2-7/+6
1.001. Upstream changes: 1.001 2011-09-14 22:49:56 America/New_York - updated docs to clarify that pushd() and tempd() croak on errors - if tempd() croaks, error appears at tempd()'s caller, not from within tempd() itself - warnings enabled if perl version >= 5.006 - adds 'untaint_pattern' option with a passable default
2011-08-13Revision bump after updating perl to 5.14.1adam1-13/+12
2010-08-21Bump the PKGREVISION for all packages which depend directly on perl,seb1-1/+2
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=..."), minus the packages updated after the perl package update. sno@ was right after all, obache@ kindly asked and he@ led the way. Thanks!
2009-03-01Adding perl module File::pushd ad dependency for the CPAN::Reporter.sno3-0/+31
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.