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.
Changes from previous:
----------------------
0.08 2013-09-25 02:21:17Z (Karen Etheridge)
- re-release with fixed compile test
0.07 2013-09-12 05:13:09Z (Karen Etheridge)
- fixed test error from last release when Directory::Scratch is not
installed
0.06 2013-09-12 00:22:49Z (Karen Etheridge)
- fixed enum declaration, as per deprecations in Moose-2.1100
- converted to Dist::Zilla
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
- Adjusting dependencies
Upstream changes:
0.05 Tue, 11 Aug 2009 01:57:18 +0200
* Look! A changelog! This wasn't too hard, was it? :-)
* Allow setting the default for Test::TempDir::Factory's use_subdir using the
environment variable TEST_TEMPDIR_USE_SUBDIR.
* Depend on a Moose version where delegations to class names work.
Test::TempDir provides temporary directory creation with testing in mind.
The differences between using this and using File::Temp are:
* If t/tmp is available (writable, creatable, etc) it's preferred
over $ENV{TMPDIR} etc. Otherwise a temporary directory will be
used.
This is temp_root
* Lockfiles are used on t/tmp, to prevent race conditions when
running under a parallel test harness.
* The temp_root is cleaned at the end of a test run, but not
if tests failed.
* temp_root is emptied at the begining of a test run unconditionally.
* The default policy is not to clean the individual tempfiles
and tempdirs within temp_root, in order to aid in debugging of
failed tests.