- Add LICENSE= ${PERL5_LICENSE}
(upstream)
- Update 4.00 to 4.04
4.04 2013-11-24 17:32:50 America/Chicago
- Fix various Dist::Zilla conversion errors
4.03 2013-11-23 10:28:14 America/Chicago
- Fix warning RT#73776 (Arthur Axel 'fREW' Schmidt)
- Fix some typos (David Steinbrunner)
4.02 2013-11-11 13:24:41 America/Chicago
- Fix missing dep on DBD::Mock (Arthur Axel 'fREW' Schmidt)
4.01 Fri Jan 18 22:29:42 EST 2013
[No Significant Changes]
- Rework test for an existing database handle to avoid test failures
related to DBD::Mock. We depend on Test::MockObject now instead.
Some other minor code clean-ups:
- "use parent" instead of "use base"
- use "our" instead of "use vars"
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!
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=...").
CGI::Application::Plugin::DBH adds easy access to a DBI database handle
to your CGI::Application modules. Lazy loading is used to prevent a
database connection from being made if the "dbh" method is not called
during the request. In other words, the database connection is not
created until it is actually needed.