From owner-svn-ports-head@freebsd.org Mon May 16 15:12:43 2016 Return-Path: Delivered-To: svn-ports-head@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 3DFABB3D94F; Mon, 16 May 2016 15:12:43 +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 E6798171F; Mon, 16 May 2016 15:12:42 +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 u4GFCgjb023923; Mon, 16 May 2016 15:12:42 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4GFCfD0023919; Mon, 16 May 2016 15:12:41 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201605161512.u4GFCfD0023919@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Mon, 16 May 2016 15:12:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415333 - in head/textproc: . py-dbfread X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2016 15:12:43 -0000 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@FreeBSD.org +COMMENT= Read DBF files, returning data as native Python objects + +LICENSE= MIT + +NO_ARCH= yes + +USES= python +USE_PYTHON= autoplist distutils + +.include 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