Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 25 Sep 2012 11:02:08 +0000 (UTC)
From:      Marcelo Araujo <araujo@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r304828 - in head/devel: . py-pyxml2obj
Message-ID:  <201209251102.q8PB282S018593@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: araujo
Date: Tue Sep 25 11:02:08 2012
New Revision: 304828
URL: http://svn.freebsd.org/changeset/ports/304828

Log:
  This module provides only 2 methods, XMLin and XMLout. XMLin convert xml to python object, and XMLout python object to xml.
  
  This module is inspired by XML::Simple in CPAN, but some options of XML::Simple are not supported.
  
  WWW: http://pypi.python.org/pypi/pyxml2obj/

Added:
  head/devel/py-pyxml2obj/
  head/devel/py-pyxml2obj/Makefile   (contents, props changed)
  head/devel/py-pyxml2obj/distinfo   (contents, props changed)
  head/devel/py-pyxml2obj/pkg-descr   (contents, props changed)
  head/devel/py-pyxml2obj/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Sep 25 10:58:43 2012	(r304827)
+++ head/devel/Makefile	Tue Sep 25 11:02:08 2012	(r304828)
@@ -3416,6 +3416,7 @@
     SUBDIR += py-pythonbrew
     SUBDIR += py-pytz
     SUBDIR += py-pyutil
+    SUBDIR += py-pyxml2obj
     SUBDIR += py-pyzmq
     SUBDIR += py-qserve
     SUBDIR += py-qt4

Added: head/devel/py-pyxml2obj/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pyxml2obj/Makefile	Tue Sep 25 11:02:08 2012	(r304828)
@@ -0,0 +1,17 @@
+# $FreeBSD$
+
+PORTNAME=	pyxml2obj	
+PORTVERSION=	0.1.2.9
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	araujo@FreeBSD.org
+COMMENT=	A simple way to convert xml to python object and vice versa	
+
+LICENSE=	MIT
+
+USE_PYTHON=	yes
+USE_PYDISTUTILS=	easy_install
+
+.include <bsd.port.mk>

Added: head/devel/py-pyxml2obj/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pyxml2obj/distinfo	Tue Sep 25 11:02:08 2012	(r304828)
@@ -0,0 +1,2 @@
+SHA256 (pyxml2obj-0.1.2.9.tar.gz) = ccbcfe9664e0a9d63f577aa6ce2b190faee2e8d3ad3497389ad3e605440e2e88
+SIZE (pyxml2obj-0.1.2.9.tar.gz) = 11296

Added: head/devel/py-pyxml2obj/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pyxml2obj/pkg-descr	Tue Sep 25 11:02:08 2012	(r304828)
@@ -0,0 +1,5 @@
+This module provides only 2 methods, XMLin and XMLout. XMLin convert xml to python object, and XMLout python object to xml.
+
+This module is inspired by XML::Simple in CPAN, but some options of XML::Simple are not supported.
+
+WWW: http://pypi.python.org/pypi/pyxml2obj/

Added: head/devel/py-pyxml2obj/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pyxml2obj/pkg-plist	Tue Sep 25 11:02:08 2012	(r304828)
@@ -0,0 +1 @@
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209251102.q8PB282S018593>