- Replace setuptools with distutils.core - Subsequently, add staging support - Remove redundant PYTHON_PY3K_PLIST_HACK (implied by PYDISTUTILS_AUTOPLIST) Generated with FreeBSD Port Tools 0.99_8 (mode: change, diff: ports)
Responsible Changed From-To: freebsd-ports-bugs->freebsd-python freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool)
Responsible Changed From-To: freebsd-python->wg I'll take it.
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 <xmj chaot.net> (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 <bsd.port.mk> 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 _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed. Thanks!