pkgsrc/archivers/py-zstandard/Makefile
adam 80d0900a33 py-zstandard: updated to 0.12.0
0.12.0:

Backwards Compatibility Notes
* Support for Python 3.4 has been dropped since Python 3.4 is no longer
  a supported Python version upstream. (But it will likely continue to
  work until Python 2.7 support is dropped and we port to Python 3.5+
  APIs.)

Bug Fixes
* Fix ``ZstdDecompressor.__init__`` on 64-bit big-endian systems.
* Fix memory leak in ``ZstdDecompressionReader.seek()``.

Changes
* CI transitioned to Azure Pipelines (from AppVeyor and Travis CI).
* Switched to ``pytest`` for running tests (from ``nose``).
* Bundled zstandard library upgraded from 1.3.8 to 1.4.3.
2019-09-19 16:50:57 +00:00

21 lines
672 B
Makefile

# $NetBSD: Makefile,v 1.12 2019/09/19 16:50:57 adam Exp $
DISTNAME= zstandard-0.12.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"