diff options
author | wen <wen@pkgsrc.org> | 2014-11-06 02:28:11 +0000 |
---|---|---|
committer | wen <wen@pkgsrc.org> | 2014-11-06 02:28:11 +0000 |
commit | 7a2246e75f6d8e4c57477548c3c9928c910628a1 (patch) | |
tree | 68202ad0cfee9c7c12e8f5622490bf32c396b964 /filesystems | |
parent | b20a3962c9f775638c35647ae8aa281e07c84012 (diff) | |
download | pkgsrc-7a2246e75f6d8e4c57477548c3c9928c910628a1.tar.gz |
Update to 0.60
Upstream changes:
0.060 2014-11-04 17:33:39-05:00 America/New_York
[ADDED]
- Added 'truncate' option to append for in-place replacement of
file contents.
0.059 2014-10-14 12:45:46-04:00 America/New_York
[FIXED]
- Fixed precedence bug in the check for Unicode::UTF8
0.058 2014-09-23 11:00:24-04:00 America/New_York
[ADDED]
- Added a 'sibling' method as a more efficient form of
calling $path->parent->child(...).
[DOCUMENTED]
- Every method annotated with the version number of the
last API change.
0.057 2014-09-19 11:23:05-04:00 America/New_York
[FIXED]
- On AIX, reads that default to locking would fail without
write permissions, because locking needs write permissions.
The fix is only to lock reads if write permissions exist;
otherwise locking is skipped.
0.056 2014-08-07 15:08:41-04:00 America/New_York
[*** DEPRECATIONS ***]
- The 'dirname' method is deprecated due to exposing File::Spec
inconsistencies
[ADDED]
- The 'digest' method now takes a 'chunk_size' option to avoid
slurping files entirely into memory.
[FIXED]
- Fixed problem throwing errors from 'remove'
0.055 2014-06-30 10:29:28-04:00 America/New_York
[FIXED]
- tempfile/tempdir won't warn if used as functions without arguments
0.054 2014-05-04 13:56:11-04:00 America/New_York
[ADDED]
- The 'basename' method now takes a list of suffixes to remove before
returning the name
- FREEZE/THAW/TO_JSON serialization helpers
[CHANGED]
- When constructing a Path::Tiny object from another, the original
is returned unless it's a temp dir/file. This significantly
speeds up calling path($path) if $path is already a Path::Tiny
object. (Thanks to Michael Schwern for prompting such benchmarking.)
[FIXED]
- Constructing any path -- e.g. with child() -- with undef or
zero-length parts throws an error instead of constructing an
invalid path
0.053 2014-03-24 09:25:51-04:00 America/New_York (TRIAL RELEASE)
[INCOMPATIBLE CHANGES]
- The 'is_file' method now does -e && ! -d and not -f because -f
is often more restrictive than people intend or expect.
[ADDED]
- Added 'chmod' method with symbolic chmod support ("a=r,u+rx")
0.052 2014-01-14 15:58:03-05:00 America/New_York
[FIXED]
- Backslash-to-slash conversion now only happens on Windows
(since backslash is legal on Unix, we must allow it)
Diffstat (limited to 'filesystems')
-rw-r--r-- | filesystems/p5-Path-Tiny/Makefile | 5 | ||||
-rw-r--r-- | filesystems/p5-Path-Tiny/distinfo | 8 |
2 files changed, 6 insertions, 7 deletions
diff --git a/filesystems/p5-Path-Tiny/Makefile b/filesystems/p5-Path-Tiny/Makefile index 3c55d0e5de2..a8728970fd3 100644 --- a/filesystems/p5-Path-Tiny/Makefile +++ b/filesystems/p5-Path-Tiny/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.9 2014/10/09 14:06:32 wiz Exp $ +# $NetBSD: Makefile,v 1.10 2014/11/06 02:28:11 wen Exp $ -DISTNAME= Path-Tiny-0.051 +DISTNAME= Path-Tiny-0.060 PKGNAME= p5-${DISTNAME} -PKGREVISION= 1 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=../../authors/id/D/DA/DAGOLDEN/} diff --git a/filesystems/p5-Path-Tiny/distinfo b/filesystems/p5-Path-Tiny/distinfo index 9030c82872f..7015d26e5f0 100644 --- a/filesystems/p5-Path-Tiny/distinfo +++ b/filesystems/p5-Path-Tiny/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.6 2014/01/12 10:20:12 wen Exp $ +$NetBSD: distinfo,v 1.7 2014/11/06 02:28:11 wen Exp $ -SHA1 (Path-Tiny-0.051.tar.gz) = 9eadcc9437f2c207a37a74e9680531d9091fbbb1 -RMD160 (Path-Tiny-0.051.tar.gz) = f7e325b711243248708f7e6c5518546ec1ac8b64 -Size (Path-Tiny-0.051.tar.gz) = 51376 bytes +SHA1 (Path-Tiny-0.060.tar.gz) = 1956690ee045ec5ffabeb84ed941129ef98fc00e +RMD160 (Path-Tiny-0.060.tar.gz) = c772f7197ac63b659c4ea465fc8c52b9c5fa8bda +Size (Path-Tiny-0.060.tar.gz) = 71847 bytes |