diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2001-03-14 23:47:29 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2001-03-14 23:47:29 +0000 |
commit | 5ad8d491f66df44ea667c42f3e313f2e2176a689 (patch) | |
tree | 739a89411ee02d1da04ebf199cec46eccf1a1bea /textproc/py-csv | |
parent | b5ca58a3e4dc98b52653e412c670249455d68140 (diff) |
a small yet fast Python extension module (written
in C) to parse or generate comma-separated value (CSV) files.
PR: ports/25408
Submitted by: Johann Visagie <johann@egenetics.com>
Notes
Notes:
svn path=/head/; revision=39868
Diffstat (limited to 'textproc/py-csv')
-rw-r--r-- | textproc/py-csv/Makefile | 24 | ||||
-rw-r--r-- | textproc/py-csv/distinfo | 1 | ||||
-rw-r--r-- | textproc/py-csv/pkg-comment | 1 | ||||
-rw-r--r-- | textproc/py-csv/pkg-descr | 10 | ||||
-rw-r--r-- | textproc/py-csv/pkg-plist | 1 |
5 files changed, 37 insertions, 0 deletions
diff --git a/textproc/py-csv/Makefile b/textproc/py-csv/Makefile new file mode 100644 index 000000000000..8eeabef1bd27 --- /dev/null +++ b/textproc/py-csv/Makefile @@ -0,0 +1,24 @@ +# New ports collection makefile for: py-csv +# Date created: 27 February 2001 +# Whom: Johann Visagie <johann@egenetics.com> +# +# $FreeBSD$ +# + +PORTNAME= csv +PORTVERSION= 0.2 +CATEGORIES= textproc python +MASTER_SITES= http://object-craft.com.au/projects/csv/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= johann@egenetics.com + +USE_PYTHON= yes + +WRKSRC= ${WRKDIR}/csv + +do-configure: + @ (cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ${MAKE} -f \ + Makefile.pre.in boot) + +.include <bsd.port.mk> diff --git a/textproc/py-csv/distinfo b/textproc/py-csv/distinfo new file mode 100644 index 000000000000..bed5ee9aec62 --- /dev/null +++ b/textproc/py-csv/distinfo @@ -0,0 +1 @@ +MD5 (csv-0.2.tar.gz) = 1ce3b210b1d15404c9ea0660faab4cb7 diff --git a/textproc/py-csv/pkg-comment b/textproc/py-csv/pkg-comment new file mode 100644 index 000000000000..f830ebe912e1 --- /dev/null +++ b/textproc/py-csv/pkg-comment @@ -0,0 +1 @@ +A Python module to parse or write comma-separated value (CSV) files diff --git a/textproc/py-csv/pkg-descr b/textproc/py-csv/pkg-descr new file mode 100644 index 000000000000..6549827d097e --- /dev/null +++ b/textproc/py-csv/pkg-descr @@ -0,0 +1,10 @@ +A small, fast Python extension module - written in C - to parse or write +files in comma-separated value (CSV) format. It allows for the use of +alternative field separator characters (besides commas). + +This module is only documented on its web site. + +Author: Dave Cole <djc@object-craft.com.au> +WWW: http://object-craft.com.au/projects/csv/ + +-- Johann Visagie <johann@egenetics.com> diff --git a/textproc/py-csv/pkg-plist b/textproc/py-csv/pkg-plist new file mode 100644 index 000000000000..03ca8bd7c33a --- /dev/null +++ b/textproc/py-csv/pkg-plist @@ -0,0 +1 @@ +lib/%%PYTHON_VERSION%%/site-packages/csv.so |