1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00

- Update to 0.8.5

PR:		186487
Submitted by:	Johannes Jost Meixner (maintainer)
This commit is contained in:
Olivier Duchateau 2014-02-10 19:27:13 +00:00
parent f9b419b53e
commit 49bf77c0ef
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=343674
3 changed files with 6 additions and 21 deletions

View File

@ -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>

View File

@ -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

View File

@ -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']
)