summaryrefslogtreecommitdiff
path: root/archivers
diff options
context:
space:
mode:
authorleot <leot@pkgsrc.org>2019-12-17 10:50:41 +0000
committerleot <leot@pkgsrc.org>2019-12-17 10:50:41 +0000
commit54d5dc0e44edc6376e7ddc6295a7afd65aefaafc (patch)
tree426e421fdd85d48495178b92615c7d709d1a0c68 /archivers
parent473e6f0f50ffdedf1de008980c31c42b7455a694 (diff)
downloadpkgsrc-54d5dc0e44edc6376e7ddc6295a7afd65aefaafc.tar.gz
py-zstandard: Use bundled zstd because not adapted to zstd-1.4.4
At least ZSTD_FRAMEHEADERSIZE_MIN and ZSTD_FRAMEHEADERSIZE_PREFIX macros in 1.4.4 needs a `format' argument but py-zstandard is not adapted to 1.4.4 yet. PKGREVISION++
Diffstat (limited to 'archivers')
-rw-r--r--archivers/py-zstandard/Makefile15
1 files changed, 10 insertions, 5 deletions
diff --git a/archivers/py-zstandard/Makefile b/archivers/py-zstandard/Makefile
index 07124183128..439bbaf826d 100644
--- a/archivers/py-zstandard/Makefile
+++ b/archivers/py-zstandard/Makefile
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.12 2019/09/19 16:50:57 adam Exp $
+# $NetBSD: Makefile,v 1.13 2019/12/17 10:50:41 leot Exp $
DISTNAME= zstandard-0.12.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
+PKGREVISION= 1
CATEGORIES= archivers python
MASTER_SITES= ${MASTER_SITE_PYPI:=z/zstandard/}
@@ -13,9 +14,13 @@ 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"
+#
+# XXX: At the moment py-zstandard only supports zstd<1.4.3, use bundled
+# XXX: zstd instead.
+#
+#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"