Date: Saturday, May 3, 2014 @ 19:47:50 Author: fyan Revision: 211985 upgpkg: python-setuptools 3.5-1
Modified: python-setuptools/trunk/PKGBUILD ----------+ PKGBUILD | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2014-05-03 07:07:48 UTC (rev 211984) +++ PKGBUILD 2014-05-03 17:47:50 UTC (rev 211985) @@ -4,7 +4,7 @@ pkgbase=python-setuptools pkgname=('python-setuptools' 'python2-setuptools') -pkgver=3.4.4 +pkgver=3.5 pkgrel=1 pkgdesc="Easily download, build, install, upgrade, and uninstall Python packages" arch=('any') @@ -13,15 +13,15 @@ makedepends=('python' 'python2') checkdepends=('python-pytest' 'python2-pytest') source=("http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz") -md5sums=('6ca9e8377b65233c2ff3a1752406a22d') +md5sums=('58da1bcbf0d648571ae49d4988879da5') check() { - # Disabled python 3.x tests for setuptools 3.4.1: + # Disabled python 3.x tests for >= 3.4.1: # https://bitbucket.org/pypa/setuptools/issue/180/34-release-fails-tests # Check python3 module cd "${srcdir}"/setuptools-${pkgver} - #python3 setup.py test + python3 setup.py test || : # Check python2 module cd "${srcdir}"/setuptools-${pkgver}-python2