3d8bf340af
1.1.0 (2021-05-06) Add support for Python 3.10. Pre-built binary wheels for 3.10 are not currently available for all platforms. The greenlet ABI is different on Python 3.10 from all previous versions, but as 3.10 was never supported before, and the ABI has not changed on other Python versions, this is not considered a reason to change greenlet's major version.
19 lines
541 B
Makefile
19 lines
541 B
Makefile
# $NetBSD: Makefile,v 1.12 2021/07/05 12:01:45 adam Exp $
|
|
|
|
DISTNAME= greenlet-1.1.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=g/greenlet/}
|
|
|
|
MAINTAINER= kamel.derouiche@gmail.com
|
|
HOMEPAGE= https://github.com/python-greenlet/greenlet
|
|
COMMENT= Lightweight in-process concurrent programming
|
|
LICENSE= mit
|
|
|
|
USE_LANGUAGES= c c++
|
|
|
|
do-test:
|
|
cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHONBIN} -m unittest discover greenlet.tests
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|