622bd69c05
1.11.0: - Pull request 178: `with_metaclass` now properly proxies `__prepare__` to the underlying metaclass. - Pull request 191: Allow `with_metaclass` to work with metaclasses implemented in C. - Pull request 203: Add parse_http_list and parse_keqv_list to moved urllib.request. - Pull request 172 and issue 171: Add unquote_to_bytes to moved urllib.parse. - Pull request 167: Add `six.moves.getoutput`. - Pull request 80: Add `six.moves.urllib_parse.splitvalue`. - Pull request 75: Add `six.moves.email_mime_image`. - Pull request 72: Avoid creating reference cycles through tracebacks in `reraise`.
26 lines
682 B
Makefile
26 lines
682 B
Makefile
# $NetBSD: Makefile,v 1.12 2017/09/18 07:01:53 adam Exp $
|
|
|
|
DISTNAME= six-1.11.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel lang python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=s/six/}
|
|
|
|
MAINTAINER= nils@NetBSD.org
|
|
HOMEPAGE= https://pypi.python.org/pypi/six/
|
|
COMMENT= Python 2 and 3 compatibility utilities
|
|
LICENSE= mit
|
|
|
|
# TEST_DEPENDS
|
|
# not enabled because this is a bootstrap package
|
|
#BUILD_DEPENDS+= ${PYPKGPREFIX}-py-[0-9]*:../../devel/py-py
|
|
#BUILD_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
#BOOTSTRAP_SETUPTOOLS= yes
|
|
|
|
do-test:
|
|
cd ${WRKSRC} && py.test-${PYVERSSUFFIX}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|