py-FormEncode: updated to 1.3.1
1.3.1 release to turn off universal wheels
This commit is contained in:
parent
85ec19548d
commit
5bcb5a508a
3 changed files with 28 additions and 8 deletions
|
@ -1,16 +1,19 @@
|
|||
# $NetBSD: Makefile,v 1.2 2016/06/08 17:43:43 wiz Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2017/10/27 15:47:31 adam Exp $
|
||||
|
||||
DISTNAME= FormEncode-1.3.0
|
||||
DISTNAME= FormEncode-1.3.1
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
||||
CATEGORIES= www python
|
||||
MASTER_SITES= ${MASTER_SITE_PYPI:=F/FormEncode/}
|
||||
EXTRACT_SUFX= .zip
|
||||
|
||||
MAINTAINER= pkgsrc-users@NetBSD.org
|
||||
HOMEPAGE= http://formencode.org/
|
||||
COMMENT= HTML form validation, generation, and conversion package
|
||||
LICENSE= python-software-foundation
|
||||
|
||||
BUILD_DEPENDS+= ${PYPKGPREFIX}-country-[0-9]*:../../geography/py-country
|
||||
BUILD_DEPENDS+= ${PYPKGPREFIX}-dns-[0-9]*:../../net/py-dns
|
||||
BUILD_DEPENDS+= ${PYPKGPREFIX}-nose-[0-9]*:../../devel/py-nose
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
.include "../../lang/python/egg.mk"
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
$NetBSD: distinfo,v 1.2 2015/11/04 02:47:23 agc Exp $
|
||||
$NetBSD: distinfo,v 1.3 2017/10/27 15:47:31 adam Exp $
|
||||
|
||||
SHA1 (FormEncode-1.3.0.zip) = 2c7728781bcff8b29f9cc8a84bd5d6f4282542e0
|
||||
RMD160 (FormEncode-1.3.0.zip) = 4bf6b287625ff59127e8ca2ca717b59aeb0c883f
|
||||
SHA512 (FormEncode-1.3.0.zip) = 12c7c9fa36173c209682a6e1d68a074c64c9a5bd30e4f6b6b851b55d43c350ce1f79f666a9176add65f6bde554bc5deeb82ac965005f9457c4c2b0447af0cea9
|
||||
Size (FormEncode-1.3.0.zip) = 347674 bytes
|
||||
SHA1 (FormEncode-1.3.1.tar.gz) = d0e99770043cd724d586633fd9e700944ae5adf4
|
||||
RMD160 (FormEncode-1.3.1.tar.gz) = 2a9a47791bf31eec71456b6029a154223e8e4e73
|
||||
SHA512 (FormEncode-1.3.1.tar.gz) = 5f53d4e868c70adf2615f3f18ca1053b037abc14e0e23f553237af24b77666ce6489390106d1c2be02fe85e63a216722dc5e459c1c41e748d76c332521974626
|
||||
Size (FormEncode-1.3.1.tar.gz) = 197305 bytes
|
||||
SHA1 (patch-setup.py) = c560e9817f9854c6ec2ecf09baefae6c37c965e7
|
||||
|
|
16
www/py-FormEncode/patches/patch-setup.py
Normal file
16
www/py-FormEncode/patches/patch-setup.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
$NetBSD: patch-setup.py,v 1.1 2017/10/27 15:47:31 adam Exp $
|
||||
|
||||
dnspython3 has been superseded by the regular dnspython
|
||||
|
||||
--- setup.py.orig 2017-10-27 15:37:17.000000000 +0000
|
||||
+++ setup.py
|
||||
@@ -14,8 +14,7 @@ version = '1.3.1'
|
||||
if not '2.6' <= sys.version < '3.0' and not '3.2' <= sys.version:
|
||||
raise ImportError('Python version not supported')
|
||||
|
||||
-tests_require = ['nose', 'pycountry',
|
||||
- 'dnspython' if sys.version < '3.0' else 'dnspython3']
|
||||
+tests_require = ['nose', 'pycountry', 'dnspython']
|
||||
|
||||
doctests = ['docs/htmlfill.txt', 'docs/Validator.txt',
|
||||
'formencode/tests/non_empty.txt']
|
Loading…
Reference in a new issue