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.
ChangeLog:
1.04 Thu 1 Dec 2011 - Adam Kennedy
- Added the experimental :early debugging pragma to cause warnings
to be emitted immediately. This should stay off otherwise (ADAMK)
1.03 Tue 2 Aug 2011 - Adam Kennedy
- Test::Builder and Test::Tester dependencies were the wrong way
around, corrected (ADAMK)
pkgsrc changes:
- change the comment to be less personally
- bump Test::Tester dependency
Upstream changes:
1.02 Thu 9 Sep 2010 - Adam Kennedy
- Don't "use warnings" anywhere inside of Test::NoWarnings::* just
in case we trigger a recursive warning handler in future (ADAMK)
- Remove the need for a private variable when detecting
Devel::StackTrace support (ADAMK)
- Don't import unused functions from Carp or Test::Builder (ADAMK)
- Minor documentation tweaks (ADAMK)
- Correct the repository metadata in META.yml (ADAMK)
- Minor cleanups in the eumm-update generated code (ADAMK)
- Added a dedicated compile test (ADAMK)
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
Upstream changes:
1.01 15 Jan 2010 - Adam Kennedy
- My release automation accidentally decided that Test::NoWarnings
was a Perl licensed distribution. Added in the appropriate changes
to make sure it is correctly built with the LGPL license.
1.00 11 Jan 2010 - Adam Kennedy
- Cleaned and updated the packaging of the module, the dependencies
and the Makefile.PL contents, but otherwise remains unchanged (ADAMK)
- Now makes explicit the Perl 5.006 dependency that was previously
an undocumented implicit dependency (ADAMK)
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=...").
- USER_DESTDIR support added
- new maintainer for the package
- ok'ed by rillig
Changelog:
0.084
Perl 5.005 throws a warning when accessing $Carp::VERSION and was
causing a test to fail.
0.083
Finally got rid of INSTALLDIRS => 'perl' from Makefile.PL. It should
never have been there but removing it could cause hassle because of
Perl's weird ordering of include directories. Basically if an older
version exists in the 'perl' installdir it could be picked up instead
of the newer version.
developer is officially maintaining the package.
The rationale for changing this from "tech-pkg" to "pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list). Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.
In general, your tests shouldn't produce warnings. This modules
causes any warnings to be captured and stored. It automatically
adds an extra test that will run when your script ends to check
that there were no warnings. If there were any warnings, the test
will give a "not ok" and diagnostics of where, when, and what the
warning was, including a stack trace of what was going on when it
occurred.
If some of your tests are supposed to produce warnings then you
should be capturing and checking them with Test::Warn, that way
Test::NoWarnings will not see them and so not complain.