8
0

- updated to 1.15

see /usr/share/doc/packages/perl-File-LibMagic/Changes
  1.15     2015-09-19
  
  - Fix the Makefile.PL so that we don't install the LibMagic.xs and typemap
    files. Based on a patch from Petr Pisar. RT #107081.
  
  
  1.14     2015-09-16
  
  - Fixed handling of extra include dirs passed to Makefile.PL via the -I
    flag. This wasn't working properly in previous releases. Reported by Andy
    Jack. GH #6.
  
  
  1.13     2015-07-12
  
  - Fix failing tests with some versions of libmagic. PR #5 by E. Choroba.
  
  
  1.12     2015-03-07
  
  - The constructor now accepts named params. In addition to a magic_file param,
    it now accepts follow_symlinks and uncompress params. These do what you'd
    expect, tell the object to follow symlinks and/or uncompress files when
    getting info from them. The old single parameter constructor is still
    supported, but is no longer documented.
  
  - The old APIs are now called "discouraged" rather than "deprecated" in the
    documentation. I have no plan to remove these APIs any time soon or to make

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-File-LibMagic?expand=0&rev=16
This commit is contained in:
Stephan Kulow
2017-05-31 07:35:13 +00:00
committed by Git OBS Bridge
parent cc8214057d
commit 37a08ce7c9
5 changed files with 89 additions and 10 deletions

View File

@@ -1,3 +1,53 @@
-------------------------------------------------------------------
Wed May 31 07:34:37 UTC 2017 - coolo@suse.com
- updated to 1.15
see /usr/share/doc/packages/perl-File-LibMagic/Changes
1.15 2015-09-19
- Fix the Makefile.PL so that we don't install the LibMagic.xs and typemap
files. Based on a patch from Petr Pisar. RT #107081.
1.14 2015-09-16
- Fixed handling of extra include dirs passed to Makefile.PL via the -I
flag. This wasn't working properly in previous releases. Reported by Andy
Jack. GH #6.
1.13 2015-07-12
- Fix failing tests with some versions of libmagic. PR #5 by E. Choroba.
1.12 2015-03-07
- The constructor now accepts named params. In addition to a magic_file param,
it now accepts follow_symlinks and uncompress params. These do what you'd
expect, tell the object to follow symlinks and/or uncompress files when
getting info from them. The old single parameter constructor is still
supported, but is no longer documented.
- The old APIs are now called "discouraged" rather than "deprecated" in the
documentation. I have no plan to remove these APIs any time soon or to make
them warn, so "deprecated" was too strong a word.
- Changed a test to hopefully skip rather than fail on OpenBSD systems.
1.11 2015-03-01
- The info_from_handle() method did not handle binary data correctly, which
could lead to incorrect results.
- The info_from_*() methods returned a full mime type with encoding in the
"mime_type" key rather than just the mime type alone.
- Allow File::LibMagic->new() to accept an array reference containing multiple
magic file paths.
-------------------------------------------------------------------
Fri Feb 20 12:53:24 UTC 2015 - lnussel@suse.de