Updated to 1.00
PR: ports/57940 Submitted by: Cheng-Lung Sung <clsung@dragon2.net>
This commit is contained in:
parent
22484d68de
commit
c771643341
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=91025
4 changed files with 12 additions and 20 deletions
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= XML-Generator-DBI
|
||||
PORTVERSION= 0.03
|
||||
PORTVERSION= 1.00
|
||||
CATEGORIES= textproc databases perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= XML
|
||||
|
@ -15,13 +15,12 @@ PKGNAMEPREFIX= p5-
|
|||
MAINTAINER= skv@FreeBSD.org
|
||||
COMMENT= Generate SAX events from SQL queries
|
||||
|
||||
RUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64
|
||||
RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 \
|
||||
${SITE_PERL}/XML/SAX.pm:${PORTSDIR}/textproc/p5-XML-SAX
|
||||
BUILD_DEPENDS= ${RUN_DEPENDS}
|
||||
|
||||
PERL_CONFIGURE= yes
|
||||
|
||||
MAN3= XML::Generator::DBI.3
|
||||
|
||||
MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (XML-Generator-DBI-0.03.tar.gz) = 273a28cd195f9e23c0d098f69ab72bd9
|
||||
MD5 (XML-Generator-DBI-1.00.tar.gz) = fff6dad098bfa66a587066e3afb3664e
|
||||
|
|
|
@ -1,14 +1,7 @@
|
|||
This module generates SAX events from SQL queries against a DBI
|
||||
connection.
|
||||
|
||||
It is a replacement for the outdated DBIx::XML_RDB module. Unlike
|
||||
DBIx::XML_RDB, it does not create a string directly, instead you have to
|
||||
use some sort of SAX handler module. If you wish to create a string or
|
||||
write to a file, use YAWriter. Alternatively you might want to generate
|
||||
a DOM tree or XML::XPath tree, which you can do with either of those
|
||||
module's SAX handlers (known as Builders in those distributions).
|
||||
|
||||
WWW: http://search.cpan.org/search?dist=XML-Generator-DBI
|
||||
WWW: http://search.cpan.org/dist/XML-Generator-DBI/
|
||||
|
||||
-- Sergey Skvortsov
|
||||
skv@FreeBSD.org
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/Generator/DBI/.packlist
|
||||
lib/perl5/site_perl/%%PERL_VER%%/XML/Generator/DBI.pm
|
||||
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/XML/Generator 2>/dev/null || true
|
||||
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/XML 2>/dev/null || true
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/Generator/DBI
|
||||
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/Generator 2>/dev/null || true
|
||||
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML 2>/dev/null || true
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/XML/Generator/DBI/.packlist
|
||||
%%SITE_PERL%%/XML/Generator/DBI.pm
|
||||
@unexec rmdir %D/%%SITE_PERL%%/XML/Generator 2>/dev/null || true
|
||||
@unexec rmdir %D/%%SITE_PERL%%/XML 2>/dev/null || true
|
||||
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/XML/Generator/DBI
|
||||
@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/XML/Generator 2>/dev/null || true
|
||||
@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/XML 2>/dev/null || true
|
||||
|
|
Loading…
Reference in a new issue