1c23face25
Wrappers 1.3.1 | Solver 1.3.1 | 11/01/2020 allow to avoid linking against VC2014_1 on windows do not mark move constructor / assignment operator of expression as noexcept. This is to circumvent a suspected bug in the GCC compiler in the manylinux1 image. Wrappers 1.3.0 | Solver 1.3.0 | 10/21/2020 add c++ benchmarks and run them on CIs modernize the c++ code by using more c++11 features introduce move semantic in some c++ constructors to improve performances add support for Python 3.9 Wrappers 1.2.0 | Solver 1.2.0 | 03/26/2020 make the the c++ part of the code c++11 compliant use cppy for Python/C bindings
24 lines
672 B
Makefile
24 lines
672 B
Makefile
# $NetBSD: Makefile,v 1.4 2021/05/05 09:33:02 adam Exp $
|
|
|
|
DISTNAME= kiwisolver-1.3.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= math python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=k/kiwisolver/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/nucleic/kiwi
|
|
COMMENT= Fast implementation of the Cassowary constraint solver
|
|
LICENSE= modified-bsd
|
|
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
|
|
|
|
USE_LANGUAGES= c c++
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27
|
|
|
|
do-test:
|
|
cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} py/tests
|
|
|
|
.include "../../devel/py-cppy/buildlink3.mk"
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|