mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 17:29:23 -04:00
add p5-DBD-AnyData 0.09
DBI access to XML, CSV and other formats
This commit is contained in:
parent
1ae5e813bb
commit
9a82b672d2
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=194559
5 changed files with 55 additions and 0 deletions
|
@ -207,6 +207,7 @@
|
|||
SUBDIR += p5-Class-DBI-Untaint
|
||||
SUBDIR += p5-Class-DBI-mysql
|
||||
SUBDIR += p5-Class-Inflate
|
||||
SUBDIR += p5-DBD-AnyData
|
||||
SUBDIR += p5-DBD-CSV
|
||||
SUBDIR += p5-DBD-Excel
|
||||
SUBDIR += p5-DBD-File
|
||||
|
|
27
databases/p5-DBD-AnyData/Makefile
Normal file
27
databases/p5-DBD-AnyData/Makefile
Normal file
|
@ -0,0 +1,27 @@
|
|||
# ex:ts=8
|
||||
# Ports collection makefile for: DBD::AnyData
|
||||
# Date created: Jun 29, 2007
|
||||
# Whom: ijlioa
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= DBD-AnyData
|
||||
PORTVERSION= 0.09
|
||||
CATEGORIES= databases perl5
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= ijliao@FreeBSD.org
|
||||
COMMENT= DBI access to XML, CSV and other formats
|
||||
|
||||
BUILD_DEPENDS= p5-AnyData>=0.07:${PORTSDIR}/devel/p5-AnyData \
|
||||
p5-DBI>1:${PORTSDIR}/databases/p5-DBI \
|
||||
p5-SQL-Statement>1:${PORTSDIR}/databases/p5-SQL-Statement
|
||||
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||
|
||||
PERL_CONFIGURE= yes
|
||||
|
||||
MAN3= DBD::AnyData.3
|
||||
|
||||
.include <bsd.port.mk>
|
3
databases/p5-DBD-AnyData/distinfo
Normal file
3
databases/p5-DBD-AnyData/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (DBD-AnyData-0.09.tar.gz) = 32e8c7300c6917247e70afc85b947308
|
||||
SHA256 (DBD-AnyData-0.09.tar.gz) = 5b58b5d74bbcccf548b1090edb77a4e514bd3fd1cb76ada96e090022433363e7
|
||||
SIZE (DBD-AnyData-0.09.tar.gz) = 21124
|
19
databases/p5-DBD-AnyData/pkg-descr
Normal file
19
databases/p5-DBD-AnyData/pkg-descr
Normal file
|
@ -0,0 +1,19 @@
|
|||
The DBD::AnyData module provides a DBI/SQL interface to data in many formats
|
||||
and from many sources.
|
||||
|
||||
Regardless of the format or source of the data, it may be accessed and/or
|
||||
modified using all standard DBI methods and a subset of SQL syntax.
|
||||
|
||||
In addition to standard database access to files, the module also supports
|
||||
in-memory tables which allow you to create temporary views; to combine data
|
||||
from a number of sources; to quickly prototype database systems; and to display
|
||||
or save the data in any of the supported formats (e.g. to display data in a CSV
|
||||
file as an HTML table). These in-memory tables can be created from any
|
||||
combination of DBI databases or files of any format. They may also be created
|
||||
from perl data structures which means it's possible to quickly prototype a
|
||||
database system without any file access or rdbms backend.
|
||||
|
||||
The module also supports converting files between any of the supported formats
|
||||
(e.g. save selected data from MySQL or Oracle to an XML file).
|
||||
|
||||
WWW: http://search.cpan.org/dist/DBD-AnyData/
|
5
databases/p5-DBD-AnyData/pkg-plist
Normal file
5
databases/p5-DBD-AnyData/pkg-plist
Normal file
|
@ -0,0 +1,5 @@
|
|||
%%SITE_PERL%%/DBD/AnyData.pm
|
||||
@dirrmtry %%SITE_PERL%%/DBD
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBD/AnyData/.packlist
|
||||
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/DBD/AnyData
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/DBD
|
Loading…
Add table
Reference in a new issue