diff options
author | khorben <khorben@pkgsrc.org> | 2021-05-13 19:35:54 +0000 |
---|---|---|
committer | khorben <khorben@pkgsrc.org> | 2021-05-13 19:35:54 +0000 |
commit | f39072dc05424011dbf06507517a5d3a8bd5e423 (patch) | |
tree | 06f7ac4b45ced95bf6a32a68c66b89664fdf39a5 /net/py-pynng/Makefile | |
parent | 944f990b5007590d3f1aace953ab186036c211a3 (diff) | |
download | pkgsrc-f39072dc05424011dbf06507517a5d3a8bd5e423.tar.gz |
py-pynng: fix build on NetBSD
Needs a PKGREVISION bump as missing dependencies were registered as well.
Diffstat (limited to 'net/py-pynng/Makefile')
-rw-r--r-- | net/py-pynng/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/net/py-pynng/Makefile b/net/py-pynng/Makefile index 2029d8112c2..13984925183 100644 --- a/net/py-pynng/Makefile +++ b/net/py-pynng/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.2 2021/05/11 21:06:15 khorben Exp $ +# $NetBSD: Makefile,v 1.3 2021/05/13 19:35:54 khorben Exp $ DISTNAME= pynng-0.7.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +PKGREVISION= 1 CATEGORIES= net python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pynng/} @@ -10,7 +11,13 @@ HOMEPAGE= https://github.com/codypiersall/pynng COMMENT= Ergonomic bindings for nanomsg next generation (nng) in Python LICENSE= mit +USE_TOOLS+= cmake + +DEPENDS+= ${PYPKGPREFIX}-sniffio-[0-9]*:../../misc/py-sniffio + PYTHON_VERSIONS_INCOMPATIBLE= 27 .include "../../lang/python/egg.mk" +.include "../../mk/atomic64.mk" +.include "../../mk/pthread.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |