Received: from mail.netbsd.org (mail.netbsd.org [149.20.53.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 568AFA654D for ; Sun, 4 Jan 2015 06:06:45 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id E8E8714A169; Sun, 4 Jan 2015 06:06:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 87A3014A161 for ; Sun, 4 Jan 2015 06:06:37 +0000 (UTC) X-Virus-Scanned: amavisd-new at NetBSD.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.NetBSD.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id j31NsG2JT0zP for ; Sun, 4 Jan 2015 06:06:36 +0000 (UTC) Received: from cvs.netbsd.org (cvs.NetBSD.org [IPv6:2001:4f8:3:7:2e0:81ff:fe30:95bd]) by mail.netbsd.org (Postfix) with ESMTP id 9215714A0AF for ; Sun, 4 Jan 2015 06:06:36 +0000 (UTC) Received: by cvs.netbsd.org (Postfix, from userid 500) id 7BEE198; Sun, 4 Jan 2015 06:06:36 +0000 (UTC) Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" MIME-Version: 1.0 Date: Sun, 4 Jan 2015 06:06:36 +0000 From: "Amitai Schlair" Subject: CVS commit: pkgsrc/devel/p5-Module-ScanDeps To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20150104060636.7BEE198@cvs.netbsd.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk Module Name: pkgsrc Committed By: schmonz Date: Sun Jan 4 06:06:36 UTC 2015 Modified Files: pkgsrc/devel/p5-Module-ScanDeps: Makefile distinfo Log Message: 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 To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.34 pkgsrc/devel/p5-Module-ScanDeps/Makefile cvs rdiff -u -r1.18 -r1.19 pkgsrc/devel/p5-Module-ScanDeps/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.