diff options
author | olivierd <olivierd@FreeBSD.org> | 2014-02-10 19:27:13 +0000 |
---|---|---|
committer | olivierd <olivierd@FreeBSD.org> | 2014-02-10 19:27:13 +0000 |
commit | ba8e8a2f70c5e19b570a28b17f6646414a88144d (patch) | |
tree | 12e6670f9d56b598ca148cdc2ce3e31fd9cf480b /devel | |
parent | b1e2a1e417efbfee613ccfec8338214414f2fbe4 (diff) | |
download | FreeBSD-ports-ba8e8a2f70c5e19b570a28b17f6646414a88144d.zip FreeBSD-ports-ba8e8a2f70c5e19b570a28b17f6646414a88144d.tar.gz |
- Update to 0.8.5
PR: 186487
Submitted by: Johannes Jost Meixner (maintainer)
Diffstat (limited to 'devel')
-rw-r--r-- | devel/py-xmltodict/Makefile | 5 | ||||
-rw-r--r-- | devel/py-xmltodict/distinfo | 4 | ||||
-rw-r--r-- | devel/py-xmltodict/files/patch-setup.py | 18 |
3 files changed, 6 insertions, 21 deletions
diff --git a/devel/py-xmltodict/Makefile b/devel/py-xmltodict/Makefile index 0635b12..b7e488f 100644 --- a/devel/py-xmltodict/Makefile +++ b/devel/py-xmltodict/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xmltodict -PORTVERSION= 0.8.3 +PORTVERSION= 0.8.5 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,4 +16,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes PYDISTUTILS_AUTOPLIST= yes +regression-test: build + @cd ${WRKSRC} && nosetests + .include <bsd.port.mk> diff --git a/devel/py-xmltodict/distinfo b/devel/py-xmltodict/distinfo index 25e8d9d..2d7f6e4 100644 --- a/devel/py-xmltodict/distinfo +++ b/devel/py-xmltodict/distinfo @@ -1,2 +1,2 @@ -SHA256 (xmltodict-0.8.3.tar.gz) = c532590ec58960dc3cca5bd0d4aa4a8774d8a7be537450a23896c5d15c796f55 -SIZE (xmltodict-0.8.3.tar.gz) = 12239 +SHA256 (xmltodict-0.8.5.tar.gz) = 4ba343343316aefa3111cd1e6b889478e6c46cecc6ee7447a996cc9612ad88ba +SIZE (xmltodict-0.8.5.tar.gz) = 34049 diff --git a/devel/py-xmltodict/files/patch-setup.py b/devel/py-xmltodict/files/patch-setup.py deleted file mode 100644 index 7821def..0000000 --- a/devel/py-xmltodict/files/patch-setup.py +++ /dev/null @@ -1,18 +0,0 @@ ---- ./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'] - ) |