Sun Jul 3 12:44:10 2022 UTC ()
py-hypothesis: add missing dependency on py-exceptiongroup

Bump PKGREVISION


(wiz)
diff -r1.109 -r1.110 pkgsrc/devel/py-hypothesis/Makefile

cvs diff -r1.109 -r1.110 pkgsrc/devel/py-hypothesis/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/py-hypothesis/Makefile 2022/07/02 09:10:39 1.109
+++ pkgsrc/devel/py-hypothesis/Makefile 2022/07/03 12:44:09 1.110
@@ -1,25 +1,31 @@ @@ -1,25 +1,31 @@
1# $NetBSD: Makefile,v 1.109 2022/07/02 09:10:39 adam Exp $ 1# $NetBSD: Makefile,v 1.110 2022/07/03 12:44:09 wiz Exp $
2# 2#
3# Changelog: https://hypothesis.readthedocs.io/en/latest/changes.html 3# Changelog: https://hypothesis.readthedocs.io/en/latest/changes.html
4 4
5DISTNAME= hypothesis-6.48.2 5DISTNAME= hypothesis-6.48.2
6PKGNAME= ${PYPKGPREFIX}-${DISTNAME} 6PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
 7PKGREVISION= 1
7CATEGORIES= devel python 8CATEGORIES= devel python
8MASTER_SITES= ${MASTER_SITE_PYPI:=h/hypothesis/} 9MASTER_SITES= ${MASTER_SITE_PYPI:=h/hypothesis/}
9 10
10MAINTAINER= pkgsrc-users@NetBSD.org 11MAINTAINER= pkgsrc-users@NetBSD.org
11HOMEPAGE= https://github.com/HypothesisWorks/hypothesis 12HOMEPAGE= https://github.com/HypothesisWorks/hypothesis
12COMMENT= Python library for property based testing 13COMMENT= Python library for property based testing
13LICENSE= mpl-2.0 14LICENSE= mpl-2.0
14 15
15DEPENDS+= ${PYPKGPREFIX}-attrs>=19.2.0:../../devel/py-attrs 16DEPENDS+= ${PYPKGPREFIX}-attrs>=19.2.0:../../devel/py-attrs
16DEPENDS+= ${PYPKGPREFIX}-sortedcontainers>=2.1.0:../../devel/py-sortedcontainers 17DEPENDS+= ${PYPKGPREFIX}-sortedcontainers>=2.1.0:../../devel/py-sortedcontainers
17 18
18PYTHON_VERSIONS_INCOMPATIBLE= 27 19PYTHON_VERSIONS_INCOMPATIBLE= 27
19 20
20USE_PKG_RESOURCES= yes 21USE_PKG_RESOURCES= yes
21 22
22USE_LANGUAGES= # none 23USE_LANGUAGES= # none
23 24
24.include "../../lang/python/egg.mk" 25.include "../../lang/python/egg.mk"
 26
 27.if ${_PYTHON_VERSION} == 37 || ${_PYTHON_VERSION} == 38 || ${_PYTHON_VERSION} == 39 || ${_PYTHON_VERSION} == 310
 28DEPENDS+= ${PYPKGPREFIX}-exceptiongroup>=1.0.0rc8:../../devel/py-exceptiongroup
 29.endif
 30
25.include "../../mk/bsd.pkg.mk" 31.include "../../mk/bsd.pkg.mk"