Date: Sat, 27 Jan 2018 12:54:08 +0000 (UTC) From: "Danilo G. Baio" <dbaio@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r460120 - in head/textproc: . py-xml-default-dict Message-ID: <201801271254.w0RCs8HC078383@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dbaio Date: Sat Jan 27 12:54:08 2018 New Revision: 460120 URL: https://svnweb.freebsd.org/changeset/ports/460120 Log: Add textproc/py-xml-default-dict: Python scripts to convert xml data into a defaultdict Simple lib to convert xml file into a defaultdict from python collections lib, making more easy use the dict to accesses some tags of xml data. WWW: https://github.com/kanazux/xml-default-dict PR: 225382 Submitted by: Silvio Ap Silva <contato@kanazuchi.com> Added: head/textproc/py-xml-default-dict/ head/textproc/py-xml-default-dict/Makefile (contents, props changed) head/textproc/py-xml-default-dict/distinfo (contents, props changed) head/textproc/py-xml-default-dict/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sat Jan 27 12:48:26 2018 (r460119) +++ head/textproc/Makefile Sat Jan 27 12:54:08 2018 (r460120) @@ -1394,6 +1394,7 @@ SUBDIR += py-xlutils SUBDIR += py-xlwriter SUBDIR += py-xlwt + SUBDIR += py-xml-default-dict SUBDIR += py-yapf SUBDIR += py-zope.app.i18n SUBDIR += py-zope.app.locales Added: head/textproc/py-xml-default-dict/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-xml-default-dict/Makefile Sat Jan 27 12:54:08 2018 (r460120) @@ -0,0 +1,20 @@ +# Created by: Silvio Ap Silva aka kanazuchi <alvolivre@live.com> +# $FreeBSD$ + +PORTNAME= xml-default-dict +PORTVERSION= 0.3 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= contato@kanazuchi.com +COMMENT= Python scripts to convert xml data into a defaultdict + +LICENSE= BSD2CLAUSE + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/textproc/py-xml-default-dict/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-xml-default-dict/distinfo Sat Jan 27 12:54:08 2018 (r460120) @@ -0,0 +1,3 @@ +TIMESTAMP = 1516638536 +SHA256 (xml-default-dict-0.3.tar.gz) = 5467497b193ac72384c37de584ec61d58211d0b539ba8dd31d7bac7343489d82 +SIZE (xml-default-dict-0.3.tar.gz) = 1927 Added: head/textproc/py-xml-default-dict/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-xml-default-dict/pkg-descr Sat Jan 27 12:54:08 2018 (r460120) @@ -0,0 +1,4 @@ +Simple lib to convert xml file into a defaultdict from python collections lib, +making more easy use the dict to accesses some tags of xml data. + +WWW: https://github.com/kanazux/xml-default-dict
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801271254.w0RCs8HC078383>