diff options
author | matthew <matthew@FreeBSD.org> | 2016-05-16 23:12:41 +0800 |
---|---|---|
committer | matthew <matthew@FreeBSD.org> | 2016-05-16 23:12:41 +0800 |
commit | 415204eeb4eab8c4e60fad77997e6d32632b37e2 (patch) | |
tree | 096ac700415276feed69bfd9b8a6de43b2a32440 /textproc | |
parent | 32833ddd90c919fba65222e19fb0c14fbfd43556 (diff) | |
download | freebsd-ports-gnome-415204eeb4eab8c4e60fad77997e6d32632b37e2.tar.gz freebsd-ports-gnome-415204eeb4eab8c4e60fad77997e6d32632b37e2.tar.zst freebsd-ports-gnome-415204eeb4eab8c4e60fad77997e6d32632b37e2.zip |
Add py-dbfread 2.0.5, read DBF files, returning data as native Python
objects.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/py-dbfread/Makefile | 19 | ||||
-rw-r--r-- | textproc/py-dbfread/distinfo | 3 | ||||
-rw-r--r-- | textproc/py-dbfread/pkg-descr | 8 |
4 files changed, 31 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index 746b95e5e6bd..e4bac848ba0a 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1223,6 +1223,7 @@ SUBDIR += py-cloud_sptheme SUBDIR += py-creole SUBDIR += py-curator + SUBDIR += py-dbfread SUBDIR += py-diff-match-patch SUBDIR += py-docutils SUBDIR += py-dsv diff --git a/textproc/py-dbfread/Makefile b/textproc/py-dbfread/Makefile new file mode 100644 index 000000000000..4324d5b89f93 --- /dev/null +++ b/textproc/py-dbfread/Makefile @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= dbfread +PORTVERSION= 2.0.5 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= matthew@FreeBSD.org +COMMENT= Read DBF files, returning data as native Python objects + +LICENSE= MIT + +NO_ARCH= yes + +USES= python +USE_PYTHON= autoplist distutils + +.include <bsd.port.mk> diff --git a/textproc/py-dbfread/distinfo b/textproc/py-dbfread/distinfo new file mode 100644 index 000000000000..6ecb18ab2f4b --- /dev/null +++ b/textproc/py-dbfread/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1463409897 +SHA256 (dbfread-2.0.5.tar.gz) = 23d5d855c017f58a7a6127b24d96b7210bb1599ec9ac53aff29f81ae12eeaa64 +SIZE (dbfread-2.0.5.tar.gz) = 32491 diff --git a/textproc/py-dbfread/pkg-descr b/textproc/py-dbfread/pkg-descr new file mode 100644 index 000000000000..6378807978e3 --- /dev/null +++ b/textproc/py-dbfread/pkg-descr @@ -0,0 +1,8 @@ +Read DBF files with Python. + +DBF is a file format used by databases such as dBase, Visual FoxPro +and FoxBase+. This library reads DBF files and returns the data as +native Python data types for further processing. It is primarily +intended for batch jobs and one-off scripts. + +WWW: https://github.com/olemb/dbfread |