752602b116
Changes 0.13.0: * ``pytest-xdist`` ``pytest`` extension is now installed so tests can be run in parallel. * CI now builds ``manylinux2010`` and ``manylinux2014`` binary wheels instead of a mix of ``manylinux2010`` and ``manylinux1``. * Official support for Python 3.8 has been added. * Bundled zstandard library upgraded from 1.4.3 to 1.4.4. * Python code has been reformatted with black.
21 lines
672 B
Makefile
21 lines
672 B
Makefile
# $NetBSD: Makefile,v 1.14 2019/12/29 16:53:13 adam Exp $
|
|
|
|
DISTNAME= zstandard-0.13.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= archivers python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=z/zstandard/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/indygreg/python-zstandard
|
|
COMMENT= Zstandard bindings for Python
|
|
LICENSE= modified-bsd
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-cffi>=1.11:../../devel/py-cffi
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-hypothesis-[0-9]*:../../devel/py-hypothesis
|
|
|
|
PYSETUPBUILDARGS+= --system-zstd
|
|
|
|
BUILDLINK_API_DEPENDS.zstd+= zstd>=1.4.0
|
|
.include "../../archivers/zstd/buildlink3.mk"
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|