svn commit: r415333 - in head/textproc: . py-dbfread

Matthew Seaman matthew at FreeBSD.org
Mon May 16 15:12:43 UTC 2016


Author: matthew
Date: Mon May 16 15:12:41 2016
New Revision: 415333
URL: https://svnweb.freebsd.org/changeset/ports/415333

Log:
  Add py-dbfread 2.0.5, read DBF files, returning data as native Python
  objects.

Added:
  head/textproc/py-dbfread/
  head/textproc/py-dbfread/Makefile   (contents, props changed)
  head/textproc/py-dbfread/distinfo   (contents, props changed)
  head/textproc/py-dbfread/pkg-descr   (contents, props changed)
Modified:
  head/textproc/Makefile

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Mon May 16 15:00:15 2016	(r415332)
+++ head/textproc/Makefile	Mon May 16 15:12:41 2016	(r415333)
@@ -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

Added: head/textproc/py-dbfread/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-dbfread/Makefile	Mon May 16 15:12:41 2016	(r415333)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME=	dbfread
+PORTVERSION=	2.0.5
+CATEGORIES=	textproc python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	matthew at 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>

Added: head/textproc/py-dbfread/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-dbfread/distinfo	Mon May 16 15:12:41 2016	(r415333)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1463409897
+SHA256 (dbfread-2.0.5.tar.gz) = 23d5d855c017f58a7a6127b24d96b7210bb1599ec9ac53aff29f81ae12eeaa64
+SIZE (dbfread-2.0.5.tar.gz) = 32491

Added: head/textproc/py-dbfread/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-dbfread/pkg-descr	Mon May 16 15:12:41 2016	(r415333)
@@ -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


More information about the svn-ports-head mailing list