---------------------
1.022 2014-12-23 21:11:27-05:00 America/New_York
- do not crash when encountering arg-less "use aliased;"
1.021 2014-11-06 21:08:49-05:00 America/New_York
- instead of always trying to use lib, add a -I switch to scan-perl-prereqs
- when finding files to scan, find files, not anything else
1.020 2014-07-02 18:52:33-04:00 America/New_York
- update CPAN::Meta::Requirements version to match current formatting
1.019 2014-01-07 19:37:41-05:00 America/New_York
- add a warning about PPI's unclear interpretation of strings
1.018 2013-11-03 21:53:46 America/New_York
- make the scan-perl-prereqs program also scan .PL and .cgi files
- also check for "Foo->VERSION(x)" after "require Foo"
- doc improvements from David Steinbrunner and Karen Etheridge
1.017 2013-10-07 17:56:34 America/New_York
- eliminate testing of Carp for its prereqs, which *did* change from older
5.8.8 installs
Do it for all packages that
* mention perl, or
* have a directory name starting with p5-*, or
* depend on a package starting with p5-
like last time, for 5.18, where this didn't lead to complaints.
Let me know if you have any this time.
devel/p5-Perl-PrereqScanner from 1.014nb2 to 1.016.
pkgsrc changes:
- adjust dependencies
Upstream changes:
1.016 2013-06-19 21:27:44 America/New_York
- new executable is bundled, scan-perl-prereqs, to take the plae of
scan_prereqs; it has cpanm-friendly output by default, but supports
--pretty and --by-file (thanks to John SJ Anderson for some of the work on
this!)
- add Superclass scanner for superclass.pm (thanks, David Golden!)
- make scan_prereqs scan .t files (thanks, David Golden!)
- add scan_module method (thanks, Neil Bowers!)
- lib.pm is now indexed in 02packages; stop skipping it (thanks, Kevin
Dawson!)
1.015 2012-12-14 22:07:55 America/New_York
- document that "no Module" also works (thanks for the report, Toby Inkster)
a) refer 'perl' in their Makefile, or
b) have a directory name of p5-*, or
c) have any dependency on any p5-* package
Like last time, where this caused no complaints.
devel/p5-Perl-PrereqScanner from 1.013 to 1.014.
upstream changes:
1.014 2012-07-26 13:22:02 America/New_York
- require a more recent PPI for various bugfixes that broke tests
(thanks for the report, Salve J. Nilsen)
from CPAN into devel/p5-Perl-PrereqScanner.
The scanner will extract loosely your distribution prerequisites from your
files.
The extraction may not be perfect but tries to do its best. It will
currently find the following prereqs:
* plain lines beginning with use or require in your perl modules and
scripts, including minimum perl version
* regular inheritance declared with the base and parent pragmata
* Moose inheritance declared with the extends keyword
* Moose roles included with the with keyword
* OO namespace aliasing using the aliased module