- Add PERL5_MODULE_TYPE= Module::Build
(upstream)
- Update to 1.03
---------------
[1.03] Released on 2015-02-03
all_critic_ok() will now run tests in parallel over multiple cores. So if
you have 8 cores, your Perl::Critic tests could run 8x faster. However,
the actual performance depends on the size and shape of your code base and
your Perl::Critic configuration. Thank you Mario Roy for writing the
wonderful MCE module that makes this all possible!
If you're using the critic_ok() function directly (perhaps because you
want more control over which files are tested) then you won't see any
performance boost. I recommend gathering your list of files first, and
then passing the list to all_critic_ok().
The deprecated function all_code_files() has now been removed from
Test::Perl::Critic. Use Perl::Critic::Utils::all_perl_files() instead.
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.
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.
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1.
The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=..."), minus the packages updated after
the perl package update.
sno@ was right after all, obache@ kindly asked and he@ led the
way. Thanks!
pkgsrc changes:
- Adding license definition
- Adjusting dependencies
Upstream changes:
[1.02] Released on 2009-10-22
Documentation changes. META.yml "enhancements". Moved author
tests out of the way of normal testing.
Now requires Perl-Critic version 1.105 or newer. Fixed source
code to be compliant with this version. Reported by Xavier Caron.
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0.
The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=...").
Packages Collection.
The Perl 5 module Test::Perl::Critic wraps the Perl::Critic engine
in a convenient subroutine suitable for test programs written using
the Test::More framework. This makes it easy to integrate
coding-standards enforcement into the build process.