Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

perl-Path-Tiny-0.076-1.el7 RPM for noarch

From EPEL 7 for x86_64 / Packages / p

Name: perl-Path-Tiny Distribution: Fedora Project
Version: 0.076 Vendor: Fedora Project
Release: 1.el7 Build date: Sun Feb 7 10:45:42 2016
Group: Development/Libraries Build host: buildppc-01.phx2.fedoraproject.org
Size: 174695 Source RPM: perl-Path-Tiny-0.076-1.el7.src.rpm
Packager: Fedora Project
Url: http://search.cpan.org/dist/Path-Tiny/
Summary: File path utility
This module attempts to provide a small, fast utility for working with file
paths. It is friendlier to use than File::Spec and provides easy access to
functions from several other core file handling modules.

It doesn't attempt to be as full-featured as IO::All or Path::Class, nor does
it try to work for anything except Unix-like and Win32 platforms. Even then, it
might break if you try something particularly obscure or tortuous.

All paths are forced to have Unix-style forward slashes. Stringifying the
object gives you back the path (after some clean up).

File input/output methods flock handles before reading or writing, as
appropriate.

The *_utf8 methods (slurp_utf8, lines_utf8, etc.) operate in raw mode without
CRLF translation.

Provides

Requires

License

ASL 2.0

Changelog

* Mon Nov 16 2015 Paul Howarth <paul@city-fan.org> - 0.076-1
  - Update to 0.076
    - Tilde expansion on Windows was resulting in backslashes; now they are
      correctly normalized to forward slashes
    - Typos fixed
    - Fixed spewing to a symlink that crosses a filesystem boundary
    - Add Test::MockRandom to META as a recommended test prerequisite
* Tue Jul 21 2015 Paul Howarth <paul@city-fan.org> - 0.072-1
  - Update to 0.072
    - Fixed incorrect error argument for File::Path functions (mkpath and
      remove_tree)
* Mon Jul 20 2015 Paul Howarth <paul@city-fan.org> - 0.070-2
  - Fixed incorrect error argument for File::Path functions (mkpath and
    remove_tree) (GH#144)
* Mon Jun 29 2015 Paul Howarth <paul@city-fan.org> - 0.070-1
  - Update to 0.070
    - The 'copy' method now returns the object for the copied file
    - The 'visit' method only dereferences the callback return value for scalar
      refs, avoiding some common bugs
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.068-3
  - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Sat Jun 06 2015 Jitka Plesnikova <jplesnik@redhat.com> - 0.068-2
  - Perl 5.22 rebuild
* Tue Mar 24 2015 Paul Howarth <paul@city-fan.org> - 0.068-1
  - Update to 0.068
    - Added exclusive locking option to filehandle opens; spew now exclusively
      locks tempfile used for atomic writes
* Fri Mar 06 2015 Paul Howarth <paul@city-fan.org> - 0.065-1
  - Update to 0.065
    - Added 'assert' method
    - Added 'visit' method
    - Added support for a negative count for 'lines' to get the last lines of a
      file
    - Fixed tilde expansion if path has spaces
    - Make realpath non-fatal if the parent path exists and only the final path
      component does not (was fatal on Windows and some Unixes)
    - Removed redundant locking on tempfile use for spewing
    - Work around File::Temp bugs on older ActiveState Windows Perls
      https://bugs.activestate.com/show_bug.cgi?id=104767
    - Fixed SYNOPSIS example
* Fri Nov 14 2014 Paul Howarth <paul@city-fan.org> - 0.061-1
  - Update to 0.061
    - Fixed append_utf8 and append_raw with 'truncate' option
* Thu Nov 06 2014 Paul Howarth <paul@city-fan.org> - 0.060-1
  - Update to 0.060
    - Added 'truncate' option to append for in-place replacement of file contents
* Tue Oct 14 2014 Paul Howarth <paul@city-fan.org> - 0.059-1
  - Update to 0.059
    - Fixed precedence bug in the check for Unicode::UTF8
* Thu Sep 25 2014 Paul Howarth <paul@city-fan.org> - 0.058-1
  - Update to 0.058
    - Added a 'sibling' method as a more efficient form of calling
      $path->parent->child(...).
    - Documentation for every method annotated with the version number of the
      last API change
* Tue Sep 23 2014 Paul Howarth <paul@city-fan.org> - 0.057-1
  - Update to 0.057
    - 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
* Fri Aug 29 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.056-2
  - Perl 5.20 rebuild
* Thu Aug 14 2014 Paul Howarth <paul@city-fan.org> - 0.056-1
  - Update to 0.056
    - Fixed problem throwing errors from 'remove'
    - The 'digest' method now takes a 'chunk_size' option to avoid slurping files
      entirely into memory
    - The 'dirname' method is deprecated due to exposing File::Spec
      inconsistencies
  - Use %license
* Tue Jul 01 2014 Paul Howarth <paul@city-fan.org> - 0.055-1
  - Update to 0.055
    - tempfile/tempdir won't warn if used as functions without arguments
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.054-2
  - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Tue May 06 2014 Paul Howarth <paul@city-fan.org> - 0.054-1
  - Update to 0.054
    - The 'is_file' method now does -e && ! -d and not -f because -f is often
      more restrictive than people intend or expect
    - Added 'chmod' method with symbolic chmod support ("a=r,u+rx")
    - The 'basename' method now takes a list of suffixes to remove before
      returning the name
    - Added FREEZE/THAW/TO_JSON serialization helpers
    - When constructing a Path::Tiny object from another, the original is
      returned unless it's a temp dir/file, which significantly speeds up calling
      path($path) if $path is already a Path::Tiny object
    - Constructing any path - e.g. with child() - with undef or zero-length
      parts throws an error instead of constructing an invalid path
* Wed Jan 15 2014 Paul Howarth <paul@city-fan.org> - 0.052-1
  - Update to 0.052
    - Backslash-to-slash conversion now only happens on Windows (since backslash
      is legal on Unix, we must allow it)
* Sat Dec 21 2013 Paul Howarth <paul@city-fan.org> - 0.051-1
  - Update to 0.051
    - Recursive iteration won't throw an exception if a directory is removed or
      unreadable during iteration
* Thu Dec 12 2013 Paul Howarth <paul@city-fan.org> - 0.049-1
  - Update to 0.049
    - Added 'subsumes' method
    - The 'chomp' option for 'lines' will remove any end-of-line sequences fully
      instead of just chomping the last character
    - Fixed locking test on AIX
    - Revised locking tests for portability again: locks are now tested from a
      separate process
    - The 'flock' package will no longer indexed by PAUSE
    - Hides warnings and fixes possible fatal errors from pure-perl Cwd,
      particularly on MSWin32
    - Generates filename for atomic writes independent of thread-ID, which fixes
      crashing bug on Win32 when fork() is called
* Fri Oct 18 2013 Paul Howarth <paul@city-fan.org> - 0.044-1
  - Update to 0.044
    - Fixed child path construction against the root path
    - Fixed path construction when a relative volume is provided as the first
      argument on Windows; e.g. path("C:", "lib") must be like path("C:lib"),
      not path("C:/lib")
    - On AIX, shared locking is replaced by exclusive locking on a R/W
      filehandle, as locking read handles is not supported
* Mon Oct 14 2013 Paul Howarth <paul@city-fan.org> - 0.043-1
  - Update to 0.043
    - Calling 'absolute' on Windows will add the volume if it is missing (e.g.
      "/foo" will become "C:/foo"); this matches the behavior of
      File::Spec->rel2abs
    - Fixed t/00-report-prereqs.t for use with older versions of
      CPAN::Meta::Requirements
* Sun Oct 13 2013 Paul Howarth <paul@city-fan.org> - 0.042-1
  - Update to 0.042
    - When 'realpath' can't be resolved (because intermediate directories don't
      exist), the exception now explains the error clearly instead of complaining
      about path() needing a defined, positive-length argument
    - On Windows, fixed resolution of relative paths with a volume, e.g. "C:foo"
      is now correctly translated into getdcwd on "C:" plus "foo"
* Fri Oct 11 2013 Paul Howarth <paul@city-fan.org> - 0.041-1
  - Update to 0.041
    - Remove duplicate test dependency on File::Spec that triggers a CPAN.pm bug
* Wed Oct 09 2013 Paul Howarth <paul@city-fan.org> - 0.040-1
  - Update to 0.040
    - The 'filehandle' method now offers an option to return locked handles
      based on the file mode
    - The 'filehandle' method now respects default encoding set by the caller's
      open pragma
* Wed Oct 02 2013 Paul Howarth <paul@city-fan.org> - 0.038-1
  - Update to 0.038
    - Added 'is_rootdir' method to simplify testing if a path is the root
      directory
* Thu Sep 26 2013 Paul Howarth <paul@city-fan.org> - 0.037-1
  - Update to 0.037
    - No longer lists 'threads' as a prerequisite; if you have a threaded perl,
      you have it and if you've not, Path::Tiny doesn't care
    - Fixed for v5.8
* Tue Sep 24 2013 Paul Howarth <paul@city-fan.org> - 0.035-1
  - Update to 0.035
    - Fixed flock warning on BSD that was broken with the autodie removal; now
      also applies to all BSD flavors
* Tue Sep 24 2013 Paul Howarth <paul@city-fan.org> - 0.034-1
  - Update to 0.034
    - Exceptions are now Path::Tiny::Error objects, not autodie exceptions; this
      removes the last dependency on autodie, which allows us to support Perls as
      far back as v5.8.1
    - BSD/NFS flock fix was not backwards compatible before v5.14; this fixes it
      harder
    - Lowered ExtUtils::MakeMaker configure_requires version to 6.17
* Thu Sep 12 2013 Paul Howarth <paul@city-fan.org> - 0.033-1
  - Update to 0.033
    - Perl on BSD may not support locking on an NFS filesystem: if this is
      detected, Path::Tiny warns and continues in an unsafe mode (the 'flock'
      warning category may be fatalized to die instead)
    - Added 'iterator' example showing defaults
* Fri Sep 06 2013 Paul Howarth <paul@city-fan.org> - 0.032-1
  - Update to 0.032
    - Removed several test dependencies; Path::Tiny now only needs core modules,
      though some must be upgraded on old Perls
* Tue Sep 03 2013 Paul Howarth <paul@city-fan.org> - 0.031-3
  - BR: perl(Config) for the test suite (#1003660)
* Mon Sep 02 2013 Paul Howarth <paul@city-fan.org> - 0.031-2
  - Sanitize for Fedora submission
* Mon Sep 02 2013 Paul Howarth <paul@city-fan.org> - 0.031-1
  - Initial RPM version

Files

/usr/share/doc/perl-Path-Tiny-0.076
/usr/share/doc/perl-Path-Tiny-0.076/CONTRIBUTING.mkdn
/usr/share/doc/perl-Path-Tiny-0.076/Changes
/usr/share/doc/perl-Path-Tiny-0.076/README
/usr/share/licenses/perl-Path-Tiny-0.076
/usr/share/licenses/perl-Path-Tiny-0.076/LICENSE
/usr/share/man/man3/Path::Tiny.3pm.gz
/usr/share/perl5/vendor_perl/Path
/usr/share/perl5/vendor_perl/Path/Tiny.pm


Generated by rpm2html 1.8.1

Fabrice Bellet, Thu Apr 25 02:24:52 2024