From owner-svn-ports-all@freebsd.org Mon Dec 7 18:47:12 2015 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 87B509B961E; Mon, 7 Dec 2015 18:47:12 +0000 (UTC) (envelope-from antoine@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 45B111BE1; Mon, 7 Dec 2015 18:47:12 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB7IlBbS043278; Mon, 7 Dec 2015 18:47:11 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB7IlBic043274; Mon, 7 Dec 2015 18:47:11 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201512071847.tB7IlBic043274@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 7 Dec 2015 18:47:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403227 - in head/textproc: . py-et_xmlfile 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.20 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, 07 Dec 2015 18:47:12 -0000 Author: antoine Date: Mon Dec 7 18:47:10 2015 New Revision: 403227 URL: https://svnweb.freebsd.org/changeset/ports/403227 Log: New port: textproc/py-et_xmlfile et_xmlfile is a low memory library for creating large XML files. It is based upon the xmlfile module from lxml with the aim of allowing code to be developed that will work with both libraries. It was developed initially for the openpyxl project but is now a standalone module. WWW: https://bitbucket.org/openpyxl/et_xmlfile Added: head/textproc/py-et_xmlfile/ head/textproc/py-et_xmlfile/Makefile (contents, props changed) head/textproc/py-et_xmlfile/distinfo (contents, props changed) head/textproc/py-et_xmlfile/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon Dec 7 18:42:37 2015 (r403226) +++ head/textproc/Makefile Mon Dec 7 18:47:10 2015 (r403227) @@ -1217,6 +1217,7 @@ SUBDIR += py-empy SUBDIR += py-enchant SUBDIR += py-errorhandler + SUBDIR += py-et_xmlfile SUBDIR += py-excelerator SUBDIR += py-feedparser SUBDIR += py-genshi Added: head/textproc/py-et_xmlfile/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-et_xmlfile/Makefile Mon Dec 7 18:47:10 2015 (r403227) @@ -0,0 +1,18 @@ +# Created by: Antoine Brodin +# $FreeBSD$ + +PORTNAME= et_xmlfile +PORTVERSION= 1.0.1 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Implementation of lxml.xmlfile for the standard library + +LICENSE= MIT + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/textproc/py-et_xmlfile/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-et_xmlfile/distinfo Mon Dec 7 18:47:10 2015 (r403227) @@ -0,0 +1,2 @@ +SHA256 (et_xmlfile-1.0.1.tar.gz) = 614d9722d572f6246302c4491846d2c393c199cfa4edc9af593437691683335b +SIZE (et_xmlfile-1.0.1.tar.gz) = 8427 Added: head/textproc/py-et_xmlfile/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-et_xmlfile/pkg-descr Mon Dec 7 18:47:10 2015 (r403227) @@ -0,0 +1,6 @@ +et_xmlfile is a low memory library for creating large XML files. +It is based upon the xmlfile module from lxml with the aim of allowing code to +be developed that will work with both libraries. It was developed initially for +the openpyxl project but is now a standalone module. + +WWW: https://bitbucket.org/openpyxl/et_xmlfile