Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 4 Jul 2016 15:38:40 +0000 (UTC)
From:      Matthew Seaman <matthew@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r418037 - in head/textproc: . py-dbf
Message-ID:  <201607041538.u64FcenC055109@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201607041538.u64FcenC055109>