Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
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.
|
|
|
|
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.
|
|
|
|
------------------------------------
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é)
|
|
|
|
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.
|
|
having a PKGNAME of p5-*, or depending such a package,
for perl-5.22.0.
|
|
---------------------
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
|
|
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.
|
|
- Fix failing test for changing to non-existent directory on some
older Perls for some platforms
|
|
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.
|
|
|
|
are called p5-*.
I hope that's all of them.
|
|
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]
|
|
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
|
|
|
|
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!
|
|
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.
|