Date: Sun, 25 Aug 2013 12:54:34 +0000 (UTC) From: Olivier Duchateau <olivierd@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r325344 - in head/devel: . py-xmltodict Message-ID: <201308251254.r7PCsY5m082720@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: olivierd Date: Sun Aug 25 12:54:34 2013 New Revision: 325344 URL: http://svnweb.freebsd.org/changeset/ports/325344 Log: xmltodict is a Python module that makes working with XML feel like you are working with JSON. WWW: https://pypi.python.org/pypi/xmltodict PR: 181503 Submitted by: Johannes Meixner <xmj@chaot.net> Added: head/devel/py-xmltodict/ head/devel/py-xmltodict/Makefile (contents, props changed) head/devel/py-xmltodict/distinfo (contents, props changed) head/devel/py-xmltodict/pkg-descr (contents, props changed) head/devel/py-xmltodict/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Aug 25 12:47:31 2013 (r325343) +++ head/devel/Makefile Sun Aug 25 12:54:34 2013 (r325344) @@ -3784,6 +3784,7 @@ SUBDIR += py-xattr SUBDIR += py-xcaplib SUBDIR += py-xdg + SUBDIR += py-xmltodict SUBDIR += py-xoltar-toolkit SUBDIR += py-yaml SUBDIR += py-yapps2 Added: head/devel/py-xmltodict/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-xmltodict/Makefile Sun Aug 25 12:54:34 2013 (r325344) @@ -0,0 +1,24 @@ +# Created by: Johannes Meixner <xmj@chaot.net> +# $FreeBSD$ + +PORTNAME= xmltodict +PORTVERSION= 0.6.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= xmj@chaot.net +COMMENT= XML parser that returns python dictionaries + +LICENSE= MIT + +USE_PYTHON= 2.5+ +USE_PYDISTUTILS= yes + +.include <bsd.port.pre.mk> + +.if ${PYTHON_REL} >= 320 +.include "${PORTSDIR}/devel/py-virtualenv/files/py3k-fix-pkg-plist.inc" +.endif + +.include <bsd.port.post.mk> Added: head/devel/py-xmltodict/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-xmltodict/distinfo Sun Aug 25 12:54:34 2013 (r325344) @@ -0,0 +1,2 @@ +SHA256 (xmltodict-0.6.0.tar.gz) = d4388d7bb08c6d0e88124cc95b0ff5ff4bc022e38d03eb1fc8ab8720526cefb2 +SIZE (xmltodict-0.6.0.tar.gz) = 11134 Added: head/devel/py-xmltodict/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-xmltodict/pkg-descr Sun Aug 25 12:54:34 2013 (r325344) @@ -0,0 +1,5 @@ +xmltodict is a Python module that makes working with XML feel like you are +working with JSON. + + +WWW: https://pypi.python.org/pypi/xmltodict Added: head/devel/py-xmltodict/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-xmltodict/pkg-plist Sun Aug 25 12:54:34 2013 (r325344) @@ -0,0 +1,3 @@ +%%PYTHON_SITELIBDIR%%/xmltodict.py +%%PYTHON_SITELIBDIR%%/xmltodict.pyc +%%PYTHON_SITELIBDIR%%/xmltodict.pyo
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308251254.r7PCsY5m082720>