Update to 0.91
PR: 50333
This commit is contained in:
parent
1226a3eff8
commit
8fb34a9937
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=77923
4 changed files with 27 additions and 22 deletions
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= Apache-DBI
|
||||
PORTVERSION= 0.89
|
||||
PORTVERSION= 0.91
|
||||
CATEGORIES= www databases perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= Apache
|
||||
|
@ -15,11 +15,18 @@ PKGNAMEPREFIX= p5-
|
|||
MAINTAINER= skv@FreeBSD.org
|
||||
COMMENT= DBI persistent connection, authentication and authorization
|
||||
|
||||
RUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/mod_perl.pm:${PORTSDIR}/www/mod_perl
|
||||
RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/mod_perl.pm:${PORTSDIR}/www/mod_perl \
|
||||
${SITE_PERL}/${PERL_ARCH}/Bundle/DBI.pm:${PORTSDIR}/databases/p5-DBI
|
||||
BUILD_DEPENDS= ${RUN_DEPENDS}
|
||||
|
||||
PERL_CONFIGURE= yes
|
||||
|
||||
MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
|
||||
MAN3= Apache::DBI.3 Apache::AuthDBI.3
|
||||
|
||||
.include <bsd.port.mk>
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${PERL_LEVEL} < 500800
|
||||
BUILD_DEPENDS+= ${SITE_PERL}/Test/More.pm:${PORTSDIR}/devel/p5-Test-Simple
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (Apache-DBI-0.89.tar.gz) = 0ce3b0a75e96bda6994689c6c16a2ede
|
||||
MD5 (Apache-DBI-0.91.tar.gz) = 60f7c9a7cb10bdca88d38276d09e9a72
|
||||
|
|
|
@ -1,20 +1,18 @@
|
|||
From the README file:
|
||||
|
||||
These modules are supposed to be used with the Apache server together with
|
||||
an embedded perl interpreter like mod_perl. They provide support for basic
|
||||
authentication and authorization as well as support for persistent database
|
||||
connections via Perl's Database Independent Interface (DBI).
|
||||
These modules are supposed to be used with the Apache server together
|
||||
with an embedded perl interpreter like mod_perl. They provide support
|
||||
for basic authentication and authorization as well as support for
|
||||
persistent database connections via Perl's Database Independent
|
||||
Interface (DBI).
|
||||
|
||||
o AuthDBI.pm provides authentication and authorization:
|
||||
|
||||
- optional shared cache for passwords to minimize database load
|
||||
- configurable cleanup-handler deletes outdated entries from the cache
|
||||
- optional shared cache for passwords to minimize database load -
|
||||
configurable cleanup-handler deletes outdated entries from the cache
|
||||
|
||||
o DBI.pm provides persistent database connections:
|
||||
|
||||
- connections can be established during server-startup
|
||||
- configurable rollback to ensure data integrity
|
||||
- configurable verification of the connections to avoid time-outs.
|
||||
- connections can be established during server-startup - configurable
|
||||
rollback to ensure data integrity - configurable verification of the
|
||||
connections to avoid time-outs.
|
||||
|
||||
-- Igor
|
||||
igor@zynaps.ru
|
||||
WWW: http://search.cpan.org/dist/Apache-DBI/
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
lib/perl5/site_perl/%%PERL_VER%%/Apache/DBI.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Apache/AuthDBI.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Apache/DBI/.packlist
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Apache/DBI
|
||||
%%SITE_PERL%%/Apache/DBI.pm
|
||||
%%SITE_PERL%%/Apache/AuthDBI.pm
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Apache/DBI/.packlist
|
||||
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Apache/DBI
|
||||
|
|
Loading…
Reference in a new issue