From owner-svn-ports-all@freebsd.org Mon Jul 4 15:38:41 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A8034B913DC; Mon, 4 Jul 2016 15:38:41 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6AC6629C6; Mon, 4 Jul 2016 15:38:41 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u64FceI1055113; Mon, 4 Jul 2016 15:38:40 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64FcenC055109; Mon, 4 Jul 2016 15:38:40 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201607041538.u64FcenC055109@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Mon, 4 Jul 2016 15:38:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418037 - in head/textproc: . py-dbf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 15:38:41 -0000 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 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