diff options
author | lbr <lbr@FreeBSD.org> | 2009-11-28 10:17:11 +0800 |
---|---|---|
committer | lbr <lbr@FreeBSD.org> | 2009-11-28 10:17:11 +0800 |
commit | d3a7d83dd14a9aee850ee98f3d23001b02f18b0e (patch) | |
tree | 0e14e69b5204f2d05c09ed19bfece183a6b3e310 /databases | |
parent | 9eed9b6760ff5d00e42c0becf752077b2b1ec44e (diff) | |
download | freebsd-ports-gnome-d3a7d83dd14a9aee850ee98f3d23001b02f18b0e.tar.gz freebsd-ports-gnome-d3a7d83dd14a9aee850ee98f3d23001b02f18b0e.tar.zst freebsd-ports-gnome-d3a7d83dd14a9aee850ee98f3d23001b02f18b0e.zip |
- Update to 0.26
- Tweak BUILD_DEPENDS to include minimum-required version of requisite ports
- Flesh out pkg-descr
PR: 140953
Submitted by: Sahil Tandon <sahil@tandon.net>
Diffstat (limited to 'databases')
-rw-r--r-- | databases/p5-DBD-CSV/Makefile | 10 | ||||
-rw-r--r-- | databases/p5-DBD-CSV/distinfo | 6 | ||||
-rw-r--r-- | databases/p5-DBD-CSV/pkg-descr | 8 |
3 files changed, 15 insertions, 9 deletions
diff --git a/databases/p5-DBD-CSV/Makefile b/databases/p5-DBD-CSV/Makefile index ecb8695e9f2b..969283db77f8 100644 --- a/databases/p5-DBD-CSV/Makefile +++ b/databases/p5-DBD-CSV/Makefile @@ -6,7 +6,7 @@ # PORTNAME= DBD-CSV -PORTVERSION= 0.25 +PORTVERSION= 0.26 PORTEPOCH= 1 CATEGORIES= databases perl5 MASTER_SITES= CPAN @@ -16,10 +16,10 @@ EXTRACT_SUFX= .tgz MAINTAINER= perl@FreeBSD.org COMMENT= DBI driver for CSV files -BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Text/CSV_XS.pm:${PORTSDIR}/textproc/p5-Text-CSV_XS \ - ${SITE_PERL}/SQL/Statement.pm:${PORTSDIR}/databases/p5-SQL-Statement \ - ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI -RUN_DEPENDS= ${BUILD_DEPENDS} +RUN_DEPENDS= p5-DBI>=1.00:${PORTSDIR}/databases/p5-DBI \ + p5-SQL-Statement>=1.23:${PORTSDIR}/databases/p5-SQL-Statement \ + p5-Text-CSV_XS>=0.64:${PORTSDIR}/textproc/p5-Text-CSV_XS +BUILD_DEPENDS= ${RUN_DEPENDS} PERL_CONFIGURE= YES diff --git a/databases/p5-DBD-CSV/distinfo b/databases/p5-DBD-CSV/distinfo index 6ed3987ac8c6..aa7e2c070a9d 100644 --- a/databases/p5-DBD-CSV/distinfo +++ b/databases/p5-DBD-CSV/distinfo @@ -1,3 +1,3 @@ -MD5 (DBD-CSV-0.25.tgz) = 741362f1427768b664d98fff4b12bc9c -SHA256 (DBD-CSV-0.25.tgz) = 154d69eac9f63c903986880a5dfd518b6eaec97b6cda68665ba0fb2834680a9e -SIZE (DBD-CSV-0.25.tgz) = 25557 +MD5 (DBD-CSV-0.26.tgz) = ebb5d61717d67c56867e77a33d94df1a +SHA256 (DBD-CSV-0.26.tgz) = 521daf9a9ed65850de0fc347cd957aac7ef522621f5200cfa59d9abc11b8497e +SIZE (DBD-CSV-0.26.tgz) = 25818 diff --git a/databases/p5-DBD-CSV/pkg-descr b/databases/p5-DBD-CSV/pkg-descr index aa2940ffa9f5..ef377c0efc96 100644 --- a/databases/p5-DBD-CSV/pkg-descr +++ b/databases/p5-DBD-CSV/pkg-descr @@ -1 +1,7 @@ - DBD::CSV - DBI driver for CSV files +The DBD::CSV module is yet another driver for the DBI (Database +independent interface for Perl). This one is based on the SQL +"engine" SQL::Statement and the abstract DBI driver DBD::File +and implements access to so-called CSV files (Comma separated +values). + +WWW: http://search.cpan.org/dist/DBD-CSV/ |