Blame SPECS/perl-Path-Tiny.spec

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