From owner-svn-ports-head@FreeBSD.ORG Wed Oct 30 15:40:21 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id D38E4EB5; Wed, 30 Oct 2013 15:40:21 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A7BAB2B5B; Wed, 30 Oct 2013 15:40:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9UFeLq3033999; Wed, 30 Oct 2013 15:40:21 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9UFeLMU033996; Wed, 30 Oct 2013 15:40:21 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201310301540.r9UFeLMU033996@svn.freebsd.org> From: William Grzybowski Date: Wed, 30 Oct 2013 15:40:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332131 - in head/devel/py-xmltodict: . files 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.14 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: Wed, 30 Oct 2013 15:40:21 -0000 Author: wg Date: Wed Oct 30 15:40:20 2013 New Revision: 332131 URL: http://svnweb.freebsd.org/changeset/ports/332131 Log: devel/py-xmltodict: allow staging - Allow staging - Remove useless PYTHON_PY3K_PLIST_HACK - Update WWW PR: ports/183447 Submitted by: Johannes Jost Meixner (maintainer) Added: head/devel/py-xmltodict/files/ head/devel/py-xmltodict/files/patch-setup.py (contents, props changed) Modified: head/devel/py-xmltodict/Makefile head/devel/py-xmltodict/pkg-descr Modified: head/devel/py-xmltodict/Makefile ============================================================================== --- head/devel/py-xmltodict/Makefile Wed Oct 30 15:33:00 2013 (r332130) +++ head/devel/py-xmltodict/Makefile Wed Oct 30 15:40:20 2013 (r332131) @@ -13,14 +13,7 @@ COMMENT= XML parser that returns python LICENSE= MIT USE_PYTHON= yes -USE_PYDISTUTILS= easy_install +USE_PYDISTUTILS= yes PYDISTUTILS_AUTOPLIST= yes -PYTHON_PY3K_PLIST_HACK= yes - -# setuptools module doesn't support STAGEDIR -NO_STAGE= yes - -post-patch: - @${REINPLACE_CMD} -e 's|setup_|#setup_|' ${WRKSRC}/setup.py .include Added: head/devel/py-xmltodict/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-xmltodict/files/patch-setup.py Wed Oct 30 15:40:20 2013 (r332131) @@ -0,0 +1,18 @@ +--- ./setup.py.orig 2013-10-21 11:53:07.000000000 +0300 ++++ ./setup.py 2013-10-29 17:13:13.731011703 +0200 +@@ -1,6 +1,6 @@ + #!/usr/bin/env python + try: +- from setuptools import setup ++ from distutils.core import setup + except ImportError: + from ez_setup import use_setuptools + use_setuptools() +@@ -32,6 +32,5 @@ + 'Programming Language :: Python :: Implementation :: PyPy', + 'Topic :: Text Processing :: Markup :: XML', + ], +- py_modules=['xmltodict'], +- setup_requires=['nose>=1.0', 'coverage'], ++ py_modules=['xmltodict'] + ) Modified: head/devel/py-xmltodict/pkg-descr ============================================================================== --- head/devel/py-xmltodict/pkg-descr Wed Oct 30 15:33:00 2013 (r332130) +++ head/devel/py-xmltodict/pkg-descr Wed Oct 30 15:40:20 2013 (r332131) @@ -1,5 +1,4 @@ xmltodict is a Python module that makes working with XML feel like you are working with JSON. - -WWW: https://pypi.python.org/pypi/xmltodict +WWW: https://github.com/martinblech/xmltodict