8
0

- updated to 0.2302

* Drop minimum Perl version back to 5.6 (erroneously bumped by dzil)
        * Do not inherit from Exporter (requires Exporter 5.57) (thanks to
          Olivier Mengué)
        * 'use base ...' => 'use parent ...' as parent is lighter (thanks to
          Olivier Mengué)
        * dist.ini: Managed with Dist::Zilla now; generates Makefile.PL
          to avoid circular dependency when using Build.PL
        * Build.PL: Use Module::Build
 
        * Temp.pm: internally holds absolute path for cleanup (Fixes RT #44924)
 
        * t/rmtree.t: (new) Test temp dir removal explicitly.
 
        * t/tempfile.t: Correctly tests directory removal from chdir.
 
        * Temp.pm: Clean up temp directory on exit even if it is the
        current directory. Patch supplied by Ed Avis and fixes RT #45246.
 
        * Temp.pm: Defer unlinking tempfiles if initial unlink fails
        instad of croaking; fixes problems on NFS (RT #82720)
 
        * Temp.pm: Allow leading template to new() for consistency with
        newdir()
 
        * Temp.pm: Calling tempfile or tempdir as a class method now
        produce a more useful fatal error message
 
        * Temp.pm: new/newdir/tempfile/tempdir now all allow either
        a leading template argument or a TEMPLATE option

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-File-Temp?expand=0&rev=10
This commit is contained in:
Stephan Kulow
2013-10-04 19:55:16 +00:00
committed by Git OBS Bridge
parent f8d09d44ab
commit be31e8fb6e
4 changed files with 85 additions and 35 deletions

View File

@@ -1,3 +1,42 @@
-------------------------------------------------------------------
Fri Oct 4 19:54:10 UTC 2013 - coolo@suse.com
- updated to 0.2302
* Drop minimum Perl version back to 5.6 (erroneously bumped by dzil)
* Do not inherit from Exporter (requires Exporter 5.57) (thanks to
Olivier Mengué)
* 'use base ...' => 'use parent ...' as parent is lighter (thanks to
Olivier Mengué)
* dist.ini: Managed with Dist::Zilla now; generates Makefile.PL
to avoid circular dependency when using Build.PL
* Build.PL: Use Module::Build
* Temp.pm: internally holds absolute path for cleanup (Fixes RT #44924)
* t/rmtree.t: (new) Test temp dir removal explicitly.
* t/tempfile.t: Correctly tests directory removal from chdir.
* Temp.pm: Clean up temp directory on exit even if it is the
current directory. Patch supplied by Ed Avis and fixes RT #45246.
* Temp.pm: Defer unlinking tempfiles if initial unlink fails
instad of croaking; fixes problems on NFS (RT #82720)
* Temp.pm: Allow leading template to new() for consistency with
newdir()
* Temp.pm: Calling tempfile or tempdir as a class method now
produce a more useful fatal error message
* Temp.pm: new/newdir/tempfile/tempdir now all allow either
a leading template argument or a TEMPLATE option
* Temp.pm: Overload numify with refaddr() in same manner as IO::File
(closes RT #47397 from Kevin Ryde)
-------------------------------------------------------------------
Fri Nov 18 09:12:09 UTC 2011 - coolo@suse.com