Sun Jan 4 06:06:36 2015 UTC ()
Update to 1.17. From the changelog:

- scandeps.pl: die if an option is not recognized
- Reformat Changes file according to CPAN::Changes::Spec
- Modify %Preload rule: let Unicode::UCD explicitly imply utf8.pm.
  This fixes PAR::Packer's self test.
  Previously Unicode::UCD implied utf8.pm implicitly because
  it contains calls to some utf8::foo() functions.
- Add %Preload rule: Mozilla::CA requires its cacert.pem file
- Recognize "do filename" constructs even if "do" isn't at the start
  of a chunk.
- Upgrade to Module::Install 1.14
- Fix RT#98938: recognize Module::Runtime module-loading functions
- Fix a nasty typo that broke scandeps.pl option -E
    $ scandeps -E "some string"
    Unknown option: E
    Can't open some string: No such file or directory at scandeps.pl line 49.
  - also scandeps.pl: die if an option is not recognized
- Remove some overzealous heuristics from scan_chunk()
  - they were looking for
    Foo::Bar->something
    Foo::Bar::whatever(...)
  _anywhere_ in programs to infer a dependency on Foo/Bar.pm.
  BEWARE: This might break some use cases, i.e. missing some dependencies.
  On the other hand,  this causes hard to investigate problems like the one
  starting at http://www.mail-archive.com/par@perl.org/msg05531.html.
  While the former can easily be worked around by the user itself (just
  add a missing dependecy explicitly, e.g. using "pp -M ...") and
  typically can be solved in general by adding a %Preload rule,
  the latter just wastes people's times.
- Recognize Test::More require_ok() and use_ok()
  - makes 3-static_oo_interface_real.t pass again (fallout from the above)
- Upgrade to Module::Install 1.12
- Add option -T to request information from CPAN
  - don't access CPAN behind the user's back just because they have
    CPANPLUS installed (it was in the Perl core from 5.10 to 5.18) -
    it might not even have been configured (e.g. in a corporate internet)
  - only do this when explicitly requested
- Fix RT #98203: Migrate from deprecated Module::Build::ModuleInfo to Module::Metadata
  - thanx Petr Pisar (ppisar@redhat.com) for the hint
- add long option names to scandeps.pl
- implement option --xargs for scandeps.pl
- fix wrong version numbers in Changes
- Fix RT #92860 (t/7-check-dynaloader.t doesn't handle systems with mod2fname),
  also RT #97519 (Fix for t/7-check-dynaloader.t on systems with DynaLoader::mod2fname)
  - applied patch from Brian Fraser (fraserbn@gmail.com), thanks!
  - lib/Module/ScanDeps/DataFeed.pm: apply here, too
- Fix recognition of (open() arguments) "<:encoding(klingon)",
  implies modules PerlIO and PerlIO::encoding.
- Fix RT #90869: Use of uninitialized value $module in substitution (s///)
- Fix RT #87775: typo fixes, thanks dsteinbrunner@pobox.com
- new %Preload rule for B::Hooks::EndOfScope
- new %Preload rule for Pod::Usage
- add a fake %Preload rule that warns if use of Module::Implementation
  or Module::Runtime is detected (coz' they're doing runtime loading)
- change some tests to use Test::Requires instead of homegrown stuff;
  hence add it to "test_requires"
- clean up some uses of Test::More
- Fix RT #89000: test broken by indirect base.pm disuse
  - delete base.pm from list of expected deps,
    patch by Andrew Main (zefram@fysh.org)
- new %Preload rule for Net::HTTPS (e.g. used by LWP::Protocol::https)
  - look for IO::Socket::SSL or Net::SSL
- new %Preload rule for YAML::Any
  - try to figure out what YAML::Any would have used
    (using YAML::Any->implementation)
  - as fallback, include anything below YAML
- 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 Module::Install 1.06


(schmonz)
diff -r1.33 -r1.34 pkgsrc/devel/p5-Module-ScanDeps/Makefile
diff -r1.18 -r1.19 pkgsrc/devel/p5-Module-ScanDeps/distinfo

cvs diff -r1.33 -r1.34 pkgsrc/devel/p5-Module-ScanDeps/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/p5-Module-ScanDeps/Makefile 2014/10/09 13:44:43 1.33
+++ pkgsrc/devel/p5-Module-ScanDeps/Makefile 2015/01/04 06:06:36 1.34
@@ -1,19 +1,18 @@ @@ -1,19 +1,18 @@
1# $NetBSD: Makefile,v 1.33 2014/10/09 13:44:43 wiz Exp $ 1# $NetBSD: Makefile,v 1.34 2015/01/04 06:06:36 schmonz Exp $
2# 2#
3 3
4DISTNAME= Module-ScanDeps-1.09 4DISTNAME= Module-ScanDeps-1.17
5PKGNAME= p5-${DISTNAME} 5PKGNAME= p5-${DISTNAME}
6PKGREVISION= 3 
7CATEGORIES= devel perl5 6CATEGORIES= devel perl5
8MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Module/} 7MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Module/}
9 8
10MAINTAINER= pkgsrc-users@NetBSD.org 9MAINTAINER= pkgsrc-users@NetBSD.org
11HOMEPAGE= http://search.cpan.org/dist/Module-ScanDeps/ 10HOMEPAGE= http://search.cpan.org/dist/Module-ScanDeps/
12COMMENT= Perl 5 module to recursively scan Perl code for dependencies 11COMMENT= Perl 5 module to recursively scan Perl code for dependencies
13LICENSE= ${PERL5_LICENSE} 12LICENSE= ${PERL5_LICENSE}
14 13
15USE_LANGUAGES= # empty 14USE_LANGUAGES= # empty
16PERL5_PACKLIST= auto/Module/ScanDeps/.packlist 15PERL5_PACKLIST= auto/Module/ScanDeps/.packlist
17PERL5_MODULE_TYPE= Module::Install::Bundled 16PERL5_MODULE_TYPE= Module::Install::Bundled
18 17
19REPLACE_PERL+= script/scandeps.pl 18REPLACE_PERL+= script/scandeps.pl

cvs diff -r1.18 -r1.19 pkgsrc/devel/p5-Module-ScanDeps/distinfo (expand / switch to unified diff)

--- pkgsrc/devel/p5-Module-ScanDeps/distinfo 2012/09/13 15:53:22 1.18
+++ pkgsrc/devel/p5-Module-ScanDeps/distinfo 2015/01/04 06:06:36 1.19
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.18 2012/09/13 15:53:22 sno Exp $ 1$NetBSD: distinfo,v 1.19 2015/01/04 06:06:36 schmonz Exp $
2 2
3SHA1 (Module-ScanDeps-1.09.tar.gz) = adc3cc4816e96ebd984a88313c5933a17d2952cc 3SHA1 (Module-ScanDeps-1.17.tar.gz) = 22ae247d9600affe6fa401bfacfb6b91df9bad15
4RMD160 (Module-ScanDeps-1.09.tar.gz) = c2608df6819e6cef277fb3b9026b81079ff4a550 4RMD160 (Module-ScanDeps-1.17.tar.gz) = f72ccbb8bf9bd1669756efc0abdb91c6d8eed837
5Size (Module-ScanDeps-1.09.tar.gz) = 58436 bytes 5Size (Module-ScanDeps-1.17.tar.gz) = 61617 bytes