Blame SPECS/perl-Path-Tiny.spec

c75d1e
# Run optional test
c75d1e
%if ! (0%{?rhel})
c75d1e
%bcond_without perl_Path_Tiny_enables_optional_test
c75d1e
%else
c75d1e
%bcond_with perl_Path_Tiny_enables_optional_test
c75d1e
%endif
c75d1e
c75d1e
Name:		perl-Path-Tiny
c75d1e
Version:	0.118
c75d1e
Release:	3%{?dist}
c75d1e
Summary:	File path utility
c75d1e
License:	ASL 2.0
c75d1e
URL:		https://metacpan.org/release/Path-Tiny
c75d1e
Source0:	https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/Path-Tiny-%{version}.tar.gz
c75d1e
BuildArch:	noarch
c75d1e
# Module Build
c75d1e
BuildRequires:	coreutils
c75d1e
BuildRequires:	findutils
c75d1e
BuildRequires:	make
c75d1e
BuildRequires:	perl-generators
c75d1e
BuildRequires:	perl-interpreter
c75d1e
BuildRequires:	perl(ExtUtils::MakeMaker)
c75d1e
# Module Runtime
c75d1e
BuildRequires:	perl(Carp)
c75d1e
BuildRequires:	perl(Config)
c75d1e
BuildRequires:	perl(constant)
c75d1e
BuildRequires:	perl(Cwd)
c75d1e
BuildRequires:	perl(Digest) >= 1.03
c75d1e
BuildRequires:	perl(Digest::MD5)
c75d1e
BuildRequires:	perl(Digest::SHA) >= 5.45
c75d1e
BuildRequires:	perl(Encode)
c75d1e
BuildRequires:	perl(Exporter) >= 5.57
c75d1e
BuildRequires:	perl(Fcntl)
c75d1e
BuildRequires:	perl(File::Copy)
c75d1e
BuildRequires:	perl(File::Glob)
c75d1e
BuildRequires:	perl(File::Path) >= 2.07
c75d1e
BuildRequires:	perl(File::Spec) >= 0.86
c75d1e
BuildRequires:	perl(File::stat)
c75d1e
BuildRequires:	perl(File::Temp) >= 0.19
c75d1e
BuildRequires:	perl(overload)
c75d1e
BuildRequires:	perl(strict)
c75d1e
BuildRequires:	perl(threads)
c75d1e
BuildRequires:	perl(warnings)
c75d1e
BuildRequires:	perl(warnings::register)
c75d1e
# Test Suite
c75d1e
BuildRequires:	perl(blib)
c75d1e
BuildRequires:	perl(File::Basename)
c75d1e
BuildRequires:	perl(File::Spec::Functions)
c75d1e
BuildRequires:	perl(File::Spec::Unix)
c75d1e
BuildRequires:	perl(File::Temp) >= 0.19
c75d1e
BuildRequires:	perl(lib)
c75d1e
BuildRequires:	perl(open)
c75d1e
BuildRequires:	perl(Test::More) >= 0.96
c75d1e
%if %{with perl_Path_Tiny_enables_optional_test}
c75d1e
# Optional Tests
c75d1e
BuildRequires:	perl(CPAN::Meta) >= 2.120900
c75d1e
BuildRequires:	perl(CPAN::Meta::Prereqs)
c75d1e
BuildRequires:	perl(Test::FailWarnings)
c75d1e
BuildRequires:	perl(Test::MockRandom)
c75d1e
%endif
c75d1e
# Runtime
c75d1e
Requires:	perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
c75d1e
Requires:	perl(Cwd)
c75d1e
Requires:	perl(Digest) >= 1.03
c75d1e
Requires:	perl(Digest::MD5)
c75d1e
Requires:	perl(Digest::SHA) >= 5.45
c75d1e
Requires:	perl(Encode)
c75d1e
Requires:	perl(Fcntl)
c75d1e
Requires:	perl(File::Copy)
c75d1e
Requires:	perl(File::Glob)
c75d1e
Requires:	perl(File::Path) >= 2.07
c75d1e
Requires:	perl(File::stat)
c75d1e
Requires:	perl(File::Temp) >= 0.18
c75d1e
Requires:	perl(threads)
c75d1e
Requires:	perl(warnings::register)
c75d1e
c75d1e
# For performance and consistency
c75d1e
%if !(0%{?rhel})
c75d1e
BuildRequires:	perl(PerlIO::utf8_strict) >= 0.003
c75d1e
Requires:	perl(PerlIO::utf8_strict) >= 0.003
c75d1e
%endif
c75d1e
BuildRequires:	perl(Unicode::UTF8) >= 0.58
c75d1e
Requires:	perl(Unicode::UTF8) >= 0.58
c75d1e
c75d1e
%description
c75d1e
This module attempts to provide a small, fast utility for working with file
c75d1e
paths. It is friendlier to use than File::Spec and provides easy access to
c75d1e
functions from several other core file handling modules.
c75d1e
c75d1e
It doesn't attempt to be as full-featured as IO::All or Path::Class, nor does
c75d1e
it try to work for anything except Unix-like and Win32 platforms. Even then, it
c75d1e
might break if you try something particularly obscure or tortuous.
c75d1e
c75d1e
All paths are forced to have Unix-style forward slashes. Stringifying the
c75d1e
object gives you back the path (after some clean up).
c75d1e
c75d1e
File input/output methods flock handles before reading or writing, as
c75d1e
appropriate.
c75d1e
c75d1e
The *_utf8 methods (slurp_utf8, lines_utf8, etc.) operate in raw mode without
c75d1e
CRLF translation.
c75d1e
c75d1e
%prep
c75d1e
%setup -q -n Path-Tiny-%{version}
c75d1e
c75d1e
%build
c75d1e
perl Makefile.PL INSTALLDIRS=vendor
c75d1e
make %{?_smp_mflags}
c75d1e
c75d1e
%install
c75d1e
make pure_install DESTDIR=%{buildroot}
c75d1e
find %{buildroot} -type f -name .packlist -delete
c75d1e
%{_fixperms} -c %{buildroot}
c75d1e
c75d1e
%check
c75d1e
make test
c75d1e
c75d1e
%files
c75d1e
%license LICENSE
c75d1e
%doc Changes CONTRIBUTING.mkdn README
c75d1e
%{perl_vendorlib}/Path/
c75d1e
%{_mandir}/man3/Path::Tiny.3*
c75d1e
c75d1e
%changelog
c75d1e
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 0.118-3
c75d1e
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
c75d1e
  Related: rhbz#1991688
c75d1e
c75d1e
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 0.118-2
c75d1e
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
c75d1e
c75d1e
* Fri Feb  5 2021 Paul Howarth <paul@city-fan.org> - 0.118-1
c75d1e
- Update to 0.118
c75d1e
  - Skip symlink tests on Windows by actually testing symlinks, as Perl 5.33.5
c75d1e
    adds notional support but it's not possible without elevated privileges
c75d1e
c75d1e
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.116-2
c75d1e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
c75d1e
c75d1e
* Sat Jan 23 2021 Paul Howarth <paul@city-fan.org> - 0.116-1
c75d1e
- Update to 0.116
c75d1e
  - Fix tests on MSYS without symlinks enabled
c75d1e
c75d1e
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.114-3
c75d1e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
c75d1e
c75d1e
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 0.114-2
c75d1e
- Perl 5.32 rebuild
c75d1e
c75d1e
* Sun Apr 26 2020 Paul Howarth <paul@city-fan.org> - 0.114-1
c75d1e
- Update to 0.114
c75d1e
  - Use \z instead of $ in regular expressions
c75d1e
c75d1e
* Wed Jan 29 2020 Paul Howarth <paul@city-fan.org> - 0.112-1
c75d1e
- Update to 0.112
c75d1e
  - Another test fix on Windows, possibly due to a behavior change in
c75d1e
    Cwd::getdcwd
c75d1e
c75d1e
* Tue Jan 14 2020 Paul Howarth <paul@city-fan.org> - 0.110-1
c75d1e
- Update to 0.110
c75d1e
  - Fixes tests on Windows, particularly with newer File::Spec
c75d1e
c75d1e
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.108-4
c75d1e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
c75d1e
c75d1e
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 0.108-3
c75d1e
- Perl 5.30 rebuild
c75d1e
c75d1e
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.108-2
c75d1e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
c75d1e
c75d1e
* Wed Aug  1 2018 Paul Howarth <paul@city-fan.org> - 0.108-1
c75d1e
- Update to 0.108
c75d1e
  - Fixed a bug where failure to load optional modules would trigger an
c75d1e
    external $SIG{__DIE__} handler
c75d1e
c75d1e
* Mon Jul 16 2018 Paul Howarth <paul@city-fan.org> - 0.106-1
c75d1e
- Update to 0.106
c75d1e
  - The PERL_PATH_TINY_NO_FLOCK environment variable has been added to allow
c75d1e
    users to disable file locking (and any associated warnings)
c75d1e
  - Detection of unsupported 'flock' is no longer BSD-specific; this allows
c75d1e
    detecting and warning, for example, with the Luster filesystem on Linux
c75d1e
  - Improve reliability and diagnostics of tests run via 'do'
c75d1e
c75d1e
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.104-7
c75d1e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
c75d1e
c75d1e
* Fri Jun 29 2018 Jitka Plesnikova <jplesnik@redhat.com> - 0.104-6
c75d1e
- Perl 5.28 rebuild
c75d1e
c75d1e
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.104-5
c75d1e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
c75d1e
c75d1e
* Fri Dec 08 2017 Petr Pisar <ppisar@redhat.com> - 0.104-4
c75d1e
- Enable Test::MockRandom test
c75d1e
c75d1e
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.104-3
c75d1e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
c75d1e
c75d1e
* Tue Jun 06 2017 Jitka Plesnikova <jplesnik@redhat.com> - 0.104-2
c75d1e
- Perl 5.26 rebuild
c75d1e
c75d1e
* Sat Feb 18 2017 Paul Howarth <paul@city-fan.org> - 0.104-1
c75d1e
- Update to 0.104
c75d1e
  - The 'absolute' method now always returns an absolute path, even if a user
c75d1e
    provided a relative path for the base path; the old, odd behavior was
c75d1e
    documented, but people often don't read docs so the new behavior avoids
c75d1e
    surprises
c75d1e
  - Added 'cached_temp' method
c75d1e
c75d1e
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.100-2
c75d1e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
c75d1e
c75d1e
* Sun Jan 15 2017 Paul Howarth <paul@city-fan.org> - 0.100-1
c75d1e
- Update to 0.100
c75d1e
  - Fixed tests for eventual removal of '.' from @INC in Perl
c75d1e
  - Fixed filehandle mode doc typo
c75d1e
  - Fixed doc typo in relative() that mentioned rel2abs instead of abs2rel
c75d1e
c75d1e
* Mon Oct 10 2016 Paul Howarth <paul@city-fan.org> - 0.098-1
c75d1e
- Update to 0.098
c75d1e
  - Added 'realpath' option for 'tempfile' and 'tempdir' for situations where
c75d1e
    an absolute temporary path just isn't enough
c75d1e
c75d1e
* Sun Jul  3 2016 Paul Howarth <paul@city-fan.org> - 0.096-1
c75d1e
- Update to 0.096
c75d1e
  - Improved method for hiding some modules during tests
c75d1e
- BR: perl-generators unconditionally
c75d1e
c75d1e
* Mon May 23 2016 Paul Howarth <paul@city-fan.org> - 0.094-1
c75d1e
- Update to 0.094
c75d1e
  - Path::Tiny will prefer PerlIO::utf8_strict over encoding(UTF-8) if
c75d1e
    available and Unicode::UTF8 is not installed
c75d1e
  - The 'touch' method can now set the current time on files that aren't owned,
c75d1e
    as long as they are writeable
c75d1e
  - Improved consistency of symlink support inspection; now always looks at
c75d1e
    $Config{d_symlink}
c75d1e
  - Skips impossible test on 'msys' platform.
c75d1e
- BR: perl-generators where possible
c75d1e
- Drop redundant Group: tag
c75d1e
c75d1e
* Mon May 16 2016 Jitka Plesnikova <jplesnik@redhat.com> - 0.090-2
c75d1e
- Perl 5.24 rebuild
c75d1e
c75d1e
* Tue May  3 2016 Paul Howarth <paul@city-fan.org> - 0.090-1
c75d1e
- Update to 0.090
c75d1e
  - Fix spew_utf8 to allow array references as input
c75d1e
c75d1e
* Mon Apr 18 2016 Paul Howarth <paul@city-fan.org> - 0.088-1
c75d1e
- Update to 0.088
c75d1e
  - Fixed bugs in relative symlink resolution for realpath, spew and edit_lines
c75d1e
  - Symlink resolution will detect circular loops and throw an error
c75d1e
c75d1e
* Mon Apr  4 2016 Paul Howarth <paul@city-fan.org> - 0.086-1
c75d1e
- Update to 0.086
c75d1e
  - Improved documentation of copy and move
c75d1e
- Simplify find command using -delete
c75d1e
c75d1e
* Fri Mar  4 2016 Paul Howarth <paul@city-fan.org> - 0.084-1
c75d1e
- Update to 0.084
c75d1e
  - Fixed relative() for the case with regex metacharacters in the path
c75d1e
c75d1e
* Wed Mar  2 2016 Paul Howarth <paul@city-fan.org> - 0.082-1
c75d1e
- Update to 0.082
c75d1e
  - The relative() method no longer uses File::Spec's buggy rel2abs method;
c75d1e
    the new Path::Tiny algorithm should be comparable and passes File::Spec
c75d1e
    rel2abs test cases, except that it correctly accounts for symlinks
c75d1e
  - Added 'edit' and 'edit_lines' plus _utf8 and _raw variants; this is
c75d1e
    similar to perl's -i flag (though without backups)
c75d1e
  - Fixed lines_utf8() with chomping for repeated empty lines
c75d1e
  - Fixed lines_utf8+chomp and relative() bugs on Windows
c75d1e
  - Documented that subclassing is not supported
c75d1e
c75d1e
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.076-2
c75d1e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
c75d1e
c75d1e
* Mon Nov 16 2015 Paul Howarth <paul@city-fan.org> - 0.076-1
c75d1e
- Update to 0.076
c75d1e
  - Tilde expansion on Windows was resulting in backslashes; now they are
c75d1e
    correctly normalized to forward slashes
c75d1e
  - Typos fixed
c75d1e
  - Fixed spewing to a symlink that crosses a filesystem boundary
c75d1e
  - Add Test::MockRandom to META as a recommended test prerequisite
c75d1e
c75d1e
* Tue Jul 21 2015 Paul Howarth <paul@city-fan.org> - 0.072-1
c75d1e
- Update to 0.072
c75d1e
  - Fixed incorrect error argument for File::Path functions (mkpath and
c75d1e
    remove_tree)
c75d1e
c75d1e
* Mon Jul 20 2015 Paul Howarth <paul@city-fan.org> - 0.070-2
c75d1e
- Fixed incorrect error argument for File::Path functions (mkpath and
c75d1e
  remove_tree) (GH#144)
c75d1e
c75d1e
* Mon Jun 29 2015 Paul Howarth <paul@city-fan.org> - 0.070-1
c75d1e
- Update to 0.070
c75d1e
  - The 'copy' method now returns the object for the copied file
c75d1e
  - The 'visit' method only dereferences the callback return value for scalar
c75d1e
    refs, avoiding some common bugs
c75d1e
c75d1e
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.068-3
c75d1e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
c75d1e
c75d1e
* Sat Jun 06 2015 Jitka Plesnikova <jplesnik@redhat.com> - 0.068-2
c75d1e
- Perl 5.22 rebuild
c75d1e
c75d1e
* Tue Mar 24 2015 Paul Howarth <paul@city-fan.org> - 0.068-1
c75d1e
- Update to 0.068
c75d1e
  - Added exclusive locking option to filehandle opens; spew now exclusively
c75d1e
    locks tempfile used for atomic writes
c75d1e
c75d1e
* Fri Mar  6 2015 Paul Howarth <paul@city-fan.org> - 0.065-1
c75d1e
- Update to 0.065
c75d1e
  - Added 'assert' method
c75d1e
  - Added 'visit' method
c75d1e
  - Added support for a negative count for 'lines' to get the last lines of a
c75d1e
    file
c75d1e
  - Fixed tilde expansion if path has spaces
c75d1e
  - Make realpath non-fatal if the parent path exists and only the final path
c75d1e
    component does not (was fatal on Windows and some Unixes)
c75d1e
  - Removed redundant locking on tempfile use for spewing
c75d1e
  - Work around File::Temp bugs on older ActiveState Windows Perls
c75d1e
    https://bugs.activestate.com/show_bug.cgi?id=104767
c75d1e
  - Fixed SYNOPSIS example
c75d1e
c75d1e
* Fri Nov 14 2014 Paul Howarth <paul@city-fan.org> - 0.061-1
c75d1e
- Update to 0.061
c75d1e
  - Fixed append_utf8 and append_raw with 'truncate' option
c75d1e
c75d1e
* Thu Nov  6 2014 Paul Howarth <paul@city-fan.org> - 0.060-1
c75d1e
- Update to 0.060
c75d1e
  - Added 'truncate' option to append for in-place replacement of file contents
c75d1e
c75d1e
* Tue Oct 14 2014 Paul Howarth <paul@city-fan.org> - 0.059-1
c75d1e
- Update to 0.059
c75d1e
  - Fixed precedence bug in the check for Unicode::UTF8
c75d1e
c75d1e
* Thu Sep 25 2014 Paul Howarth <paul@city-fan.org> - 0.058-1
c75d1e
- Update to 0.058
c75d1e
  - Added a 'sibling' method as a more efficient form of calling
c75d1e
    $path->parent->child(...).
c75d1e
  - Documentation for every method annotated with the version number of the
c75d1e
    last API change
c75d1e
c75d1e
* Tue Sep 23 2014 Paul Howarth <paul@city-fan.org> - 0.057-1
c75d1e
- Update to 0.057
c75d1e
  - On AIX, reads that default to locking would fail without write permissions,
c75d1e
    because locking needs write permissions; the fix is only to lock reads if
c75d1e
    write permissions exist, otherwise locking is skipped
c75d1e
c75d1e
* Fri Aug 29 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.056-2
c75d1e
- Perl 5.20 rebuild
c75d1e
c75d1e
* Thu Aug 14 2014 Paul Howarth <paul@city-fan.org> - 0.056-1
c75d1e
- Update to 0.056
c75d1e
  - Fixed problem throwing errors from 'remove'
c75d1e
  - The 'digest' method now takes a 'chunk_size' option to avoid slurping files
c75d1e
    entirely into memory
c75d1e
  - The 'dirname' method is deprecated due to exposing File::Spec
c75d1e
    inconsistencies
c75d1e
- Use %%license
c75d1e
c75d1e
* Tue Jul  1 2014 Paul Howarth <paul@city-fan.org> - 0.055-1
c75d1e
- Update to 0.055
c75d1e
  - tempfile/tempdir won't warn if used as functions without arguments
c75d1e
c75d1e
* Sat Jun  7 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.054-2
c75d1e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
c75d1e
c75d1e
* Tue May  6 2014 Paul Howarth <paul@city-fan.org> - 0.054-1
c75d1e
- Update to 0.054
c75d1e
  - The 'is_file' method now does -e && ! -d and not -f because -f is often
c75d1e
    more restrictive than people intend or expect
c75d1e
  - Added 'chmod' method with symbolic chmod support ("a=r,u+rx")
c75d1e
  - The 'basename' method now takes a list of suffixes to remove before
c75d1e
    returning the name
c75d1e
  - Added FREEZE/THAW/TO_JSON serialization helpers
c75d1e
  - When constructing a Path::Tiny object from another, the original is
c75d1e
    returned unless it's a temp dir/file, which significantly speeds up calling
c75d1e
    path($path) if $path is already a Path::Tiny object
c75d1e
  - Constructing any path - e.g. with child() - with undef or zero-length
c75d1e
    parts throws an error instead of constructing an invalid path
c75d1e
c75d1e
* Wed Jan 15 2014 Paul Howarth <paul@city-fan.org> - 0.052-1
c75d1e
- Update to 0.052
c75d1e
  - Backslash-to-slash conversion now only happens on Windows (since backslash
c75d1e
    is legal on Unix, we must allow it)
c75d1e
c75d1e
* Sat Dec 21 2013 Paul Howarth <paul@city-fan.org> - 0.051-1
c75d1e
- Update to 0.051
c75d1e
  - Recursive iteration won't throw an exception if a directory is removed or
c75d1e
    unreadable during iteration
c75d1e
c75d1e
* Thu Dec 12 2013 Paul Howarth <paul@city-fan.org> - 0.049-1
c75d1e
- Update to 0.049
c75d1e
  - Added 'subsumes' method
c75d1e
  - The 'chomp' option for 'lines' will remove any end-of-line sequences fully
c75d1e
    instead of just chomping the last character
c75d1e
  - Fixed locking test on AIX
c75d1e
  - Revised locking tests for portability again: locks are now tested from a
c75d1e
    separate process
c75d1e
  - The 'flock' package will no longer indexed by PAUSE
c75d1e
  - Hides warnings and fixes possible fatal errors from pure-perl Cwd,
c75d1e
    particularly on MSWin32
c75d1e
  - Generates filename for atomic writes independent of thread-ID, which fixes
c75d1e
    crashing bug on Win32 when fork() is called
c75d1e
c75d1e
* Fri Oct 18 2013 Paul Howarth <paul@city-fan.org> - 0.044-1
c75d1e
- Update to 0.044
c75d1e
  - Fixed child path construction against the root path
c75d1e
  - Fixed path construction when a relative volume is provided as the first
c75d1e
    argument on Windows; e.g. path("C:", "lib") must be like path("C:lib"),
c75d1e
    not path("C:/lib")
c75d1e
  - On AIX, shared locking is replaced by exclusive locking on a R/W
c75d1e
    filehandle, as locking read handles is not supported
c75d1e
c75d1e
* Mon Oct 14 2013 Paul Howarth <paul@city-fan.org> - 0.043-1
c75d1e
- Update to 0.043
c75d1e
  - Calling 'absolute' on Windows will add the volume if it is missing (e.g.
c75d1e
    "/foo" will become "C:/foo"); this matches the behavior of
c75d1e
    File::Spec->rel2abs
c75d1e
  - Fixed t/00-report-prereqs.t for use with older versions of
c75d1e
    CPAN::Meta::Requirements
c75d1e
c75d1e
* Sun Oct 13 2013 Paul Howarth <paul@city-fan.org> - 0.042-1
c75d1e
- Update to 0.042
c75d1e
  - When 'realpath' can't be resolved (because intermediate directories don't
c75d1e
    exist), the exception now explains the error clearly instead of complaining
c75d1e
    about path() needing a defined, positive-length argument
c75d1e
  - On Windows, fixed resolution of relative paths with a volume, e.g. "C:foo"
c75d1e
    is now correctly translated into getdcwd on "C:" plus "foo"
c75d1e
c75d1e
* Fri Oct 11 2013 Paul Howarth <paul@city-fan.org> - 0.041-1
c75d1e
- Update to 0.041
c75d1e
  - Remove duplicate test dependency on File::Spec that triggers a CPAN.pm bug
c75d1e
c75d1e
* Wed Oct  9 2013 Paul Howarth <paul@city-fan.org> - 0.040-1
c75d1e
- Update to 0.040
c75d1e
  - The 'filehandle' method now offers an option to return locked handles
c75d1e
    based on the file mode
c75d1e
  - The 'filehandle' method now respects default encoding set by the caller's
c75d1e
    open pragma
c75d1e
c75d1e
* Wed Oct  2 2013 Paul Howarth <paul@city-fan.org> - 0.038-1
c75d1e
- Update to 0.038
c75d1e
  - Added 'is_rootdir' method to simplify testing if a path is the root
c75d1e
    directory
c75d1e
c75d1e
* Thu Sep 26 2013 Paul Howarth <paul@city-fan.org> - 0.037-1
c75d1e
- Update to 0.037
c75d1e
  - No longer lists 'threads' as a prerequisite; if you have a threaded perl,
c75d1e
    you have it and if you've not, Path::Tiny doesn't care
c75d1e
  - Fixed for v5.8
c75d1e
c75d1e
* Tue Sep 24 2013 Paul Howarth <paul@city-fan.org> - 0.035-1
c75d1e
- Update to 0.035
c75d1e
  - Fixed flock warning on BSD that was broken with the autodie removal; now
c75d1e
    also applies to all BSD flavors
c75d1e
c75d1e
* Tue Sep 24 2013 Paul Howarth <paul@city-fan.org> - 0.034-1
c75d1e
- Update to 0.034
c75d1e
  - Exceptions are now Path::Tiny::Error objects, not autodie exceptions; this
c75d1e
    removes the last dependency on autodie, which allows us to support Perls as
c75d1e
    far back as v5.8.1
c75d1e
  - BSD/NFS flock fix was not backwards compatible before v5.14; this fixes it
c75d1e
    harder
c75d1e
  - Lowered ExtUtils::MakeMaker configure_requires version to 6.17
c75d1e
c75d1e
* Thu Sep 12 2013 Paul Howarth <paul@city-fan.org> - 0.033-1
c75d1e
- Update to 0.033
c75d1e
  - Perl on BSD may not support locking on an NFS filesystem: if this is
c75d1e
    detected, Path::Tiny warns and continues in an unsafe mode (the 'flock'
c75d1e
    warning category may be fatalized to die instead)
c75d1e
  - Added 'iterator' example showing defaults
c75d1e
c75d1e
* Fri Sep  6 2013 Paul Howarth <paul@city-fan.org> - 0.032-1
c75d1e
- Update to 0.032
c75d1e
  - Removed several test dependencies; Path::Tiny now only needs core modules,
c75d1e
    though some must be upgraded on old Perls
c75d1e
c75d1e
* Tue Sep  3 2013 Paul Howarth <paul@city-fan.org> - 0.031-3
c75d1e
- BR: perl(Config) for the test suite (#1003660)
c75d1e
c75d1e
* Mon Sep  2 2013 Paul Howarth <paul@city-fan.org> - 0.031-2
c75d1e
- Sanitize for Fedora submission
c75d1e
c75d1e
* Mon Sep  2 2013 Paul Howarth <paul@city-fan.org> - 0.031-1
c75d1e
- Initial RPM version