9
0

Accepting request 147889 from home:oertel:branches:devel:languages:perl

- update to 1.10:
  * add %Preload rule for Params::Validate to detect 
    its PP and XS implementations
  
  * Fix RT #80276 Module DateTime::Format::ISO8601 generates error 
    after being packaged
    - caused by failing to pack DateTime::Format::Builder::Parser::XXX modules 
      needed by DateTime::Format::Builder::Parser
    - add a corresponding %Preload rule
- update to 1.09:
  * teach Module::ScanDeps about "use if ..." constructs
    - fixes CPAN Testers failures for PAR::Packer with perl 5.17.1 and up
      (Roderich Schupp)
  
  * RT #79003: t/7-check-dynaloader.t failing when /usr/lib != /usr/lib64
    - scrap the test for "$entry{file} starts with $expected_prefix" as
      its assumptions are flawed (Roderich Schupp)
  
  * Mojo::Base is a loader (Alexandr Ciornii)
  * Special case for Class::Load (Alexandr Ciornii)
- update to 1.08:
  * RT #73785: scandeps -c fails on modules that depend on Getopt::Euclid
    - for "scandeps -c ..." switch from an INIT block to a CHECK block
      and call the augmented script with "perl -c"  instaed of "perl"
  
  * RT#72954 ":encoding(UTF-8)" doesn't imply a dependency on Encode.pm
    - if scan_chunk sees ":encoding(FOO)" or similar, it goes to some
      length to find the "external" Encode module to handle FOO; but it
      forgets that Encode.pm itself is needed at runtime (esp. if FOO
      is an encoding "internally" handled by Encode.pm, e.g. "UTF-8")

OBS-URL: https://build.opensuse.org/request/show/147889
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Module-ScanDeps?expand=0&rev=14
This commit is contained in:
2013-01-10 14:15:26 +00:00
committed by Git OBS Bridge
parent c7d41041f0
commit fc73646c49
4 changed files with 47 additions and 9 deletions

View File

@@ -1,3 +1,42 @@
-------------------------------------------------------------------
Thu Jan 10 12:13:29 CET 2013 - ro@suse.de
- update to 1.10:
* add %Preload rule for Params::Validate to detect
its PP and XS implementations
* Fix RT #80276 Module DateTime::Format::ISO8601 generates error
after being packaged
- caused by failing to pack DateTime::Format::Builder::Parser::XXX modules
needed by DateTime::Format::Builder::Parser
- add a corresponding %Preload rule
- update to 1.09:
* teach Module::ScanDeps about "use if ..." constructs
- fixes CPAN Testers failures for PAR::Packer with perl 5.17.1 and up
(Roderich Schupp)
* RT #79003: t/7-check-dynaloader.t failing when /usr/lib != /usr/lib64
- scrap the test for "$entry{file} starts with $expected_prefix" as
its assumptions are flawed (Roderich Schupp)
* Mojo::Base is a loader (Alexandr Ciornii)
* Special case for Class::Load (Alexandr Ciornii)
- update to 1.08:
* RT #73785: scandeps -c fails on modules that depend on Getopt::Euclid
- for "scandeps -c ..." switch from an INIT block to a CHECK block
and call the augmented script with "perl -c" instaed of "perl"
* RT#72954 ":encoding(UTF-8)" doesn't imply a dependency on Encode.pm
- if scan_chunk sees ":encoding(FOO)" or similar, it goes to some
length to find the "external" Encode module to handle FOO; but it
forgets that Encode.pm itself is needed at runtime (esp. if FOO
is an encoding "internally" handled by Encode.pm, e.g. "UTF-8")
* %Preload: add rules for Gtk2.pm and Pango.pm
* %Preload: fix a problem with Image::ExifTool
-------------------------------------------------------------------
Wed Nov 30 22:44:32 UTC 2011 - pascal.bleser@opensuse.org