svn commit: r418037 - in head/textproc: . py-dbf

Matthew Seaman matthew at FreeBSD.org
Mon Jul 4 15:38:41 UTC 2016


Author: matthew
Date: Mon Jul  4 15:38:40 2016
New Revision: 418037
URL: https://svnweb.freebsd.org/changeset/ports/418037

Log:
  Pure python package for reading/writing dBase, FoxPro, and Visual
  FoxPro .dbf files (including memos)
  
  Currently supports dBase III, Clipper, FoxPro, and Visual FoxPro
  tables. Text is returned as unicode, and codepage settings in tables
  are honored. Memos and Null fields are supported.
  
  WWW: https://pypi.python.org/pypi/dbf

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

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Mon Jul  4 15:29:45 2016	(r418036)
+++ head/textproc/Makefile	Mon Jul  4 15:38:40 2016	(r418037)
@@ -1224,6 +1224,7 @@
     SUBDIR += py-chardet
     SUBDIR += py-cloud_sptheme
     SUBDIR += py-creole
+    SUBDIR += py-dbf
     SUBDIR += py-dbfread
     SUBDIR += py-diff-match-patch
     SUBDIR += py-docutils

Added: head/textproc/py-dbf/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-dbf/Makefile	Mon Jul  4 15:38:40 2016	(r418037)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	dbf
+DISTVERSION=	0.96.7
+CATEGORIES=	textproc python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	matthew at FreeBSD.org
+COMMENT=	Read and write DBF files
+
+LICENSE=	BSD3CLAUSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}enum34>0:devel/py-enum34
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/textproc/py-dbf/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-dbf/distinfo	Mon Jul  4 15:38:40 2016	(r418037)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1467646228
+SHA256 (dbf-0.96.7.tar.gz) = db7fbea41fa16aedc49397b9f768526ea47f40856ccb9036ae1adab53735e587
+SIZE (dbf-0.96.7.tar.gz) = 184153

Added: head/textproc/py-dbf/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-dbf/pkg-descr	Mon Jul  4 15:38:40 2016	(r418037)
@@ -0,0 +1,8 @@
+Pure python package for reading/writing dBase, FoxPro, and Visual
+FoxPro .dbf files (including memos)
+
+Currently supports dBase III, Clipper, FoxPro, and Visual FoxPro
+tables. Text is returned as unicode, and codepage settings in tables
+are honored. Memos and Null fields are supported.
+
+WWW: https://pypi.python.org/pypi/dbf


More information about the svn-ports-all mailing list