Tue Apr 30 09:41:51 2024 UTC (26d)
python: remove support for hypothesis from versioned_dependencies.mk


(wiz)
diff -r1.103 -r1.104 pkgsrc/lang/python/versioned_dependencies.mk

cvs diff -r1.103 -r1.104 pkgsrc/lang/python/versioned_dependencies.mk (expand / switch to unified diff)

--- pkgsrc/lang/python/versioned_dependencies.mk 2024/04/30 09:28:37 1.103
+++ pkgsrc/lang/python/versioned_dependencies.mk 2024/04/30 09:41:51 1.104
@@ -1,25 +1,25 @@ @@ -1,25 +1,25 @@
1# $NetBSD: versioned_dependencies.mk,v 1.103 2024/04/30 09:28:37 wiz Exp $ 1# $NetBSD: versioned_dependencies.mk,v 1.104 2024/04/30 09:41:51 wiz Exp $
2# 2#
3# This file determines which separate distribution of a Python 3# This file determines which separate distribution of a Python
4# package is used as dependency, depending on the Python version 4# package is used as dependency, depending on the Python version
5# used. 5# used.
6# 6#
7# === User-settable variables === 7# === User-settable variables ===
8# 8#
9# PYTHON_VERSIONED_DEPENDENCIES 9# PYTHON_VERSIONED_DEPENDENCIES
10# The Python package which should be added as a dependency. 10# The Python package which should be added as a dependency.
11# 11#
12# Possible values: OpenSSL Pillow X cairo cffi coverage cryptography dns hypothesis pip setuptools setuptools_scm test 12# Possible values: OpenSSL Pillow X cairo cffi coverage cryptography dns pip setuptools setuptools_scm test
13# Default: (nothing) 13# Default: (nothing)
14# 14#
15 15
16.include "../../lang/python/pyversion.mk" 16.include "../../lang/python/pyversion.mk"
17 17
18# _PY_VERS_PKG.${PYTHON_VERSION}.${pkg} is the path used for the dependency 18# _PY_VERS_PKG.${PYTHON_VERSION}.${pkg} is the path used for the dependency
19# for a specific Python version. This can be "missing", if this Python 19# for a specific Python version. This can be "missing", if this Python
20# version is not supported for this package. 20# version is not supported for this package.
21# 21#
22# _PY_VERS_PKG.default.${pkg} is the fallback version if a specific version 22# _PY_VERS_PKG.default.${pkg} is the fallback version if a specific version
23# isn't known. 23# isn't known.
24# 24#
25# _PY_VERS_PKG.dependency.${PKG} flags packages that need Rust-specific 25# _PY_VERS_PKG.dependency.${PKG} flags packages that need Rust-specific
@@ -41,29 +41,26 @@ _PY_VERS_PKG.27.cairo= graphics/py-cair @@ -41,29 +41,26 @@ _PY_VERS_PKG.27.cairo= graphics/py-cair
41_PY_VERS_PKG.default.cffi= devel/py-cffi 41_PY_VERS_PKG.default.cffi= devel/py-cffi
42_PY_VERS_PKG.27.cffi= devel/py27-cffi 42_PY_VERS_PKG.27.cffi= devel/py27-cffi
43 43
44_PY_VERS_PKG.default.coverage= devel/py-coverage 44_PY_VERS_PKG.default.coverage= devel/py-coverage
45_PY_VERS_PKG.27.coverage= devel/py27-coverage 45_PY_VERS_PKG.27.coverage= devel/py27-coverage
46 46
47_PY_VERS_PKG.default.cryptography= security/py-cryptography 47_PY_VERS_PKG.default.cryptography= security/py-cryptography
48_PY_VERS_PKG.27.cryptography= security/py27-cryptography 48_PY_VERS_PKG.27.cryptography= security/py27-cryptography
49_PY_VERS_PKG.dependency.cryptography= yes 49_PY_VERS_PKG.dependency.cryptography= yes
50 50
51_PY_VERS_PKG.default.dns= net/py-dns 51_PY_VERS_PKG.default.dns= net/py-dns
52_PY_VERS_PKG.27.dns= net/py-dns1 52_PY_VERS_PKG.27.dns= net/py-dns1
53 53
54_PY_VERS_PKG.default.hypothesis= devel/py-hypothesis 
55_PY_VERS_PKG.27.hypothesis= devel/py-hypothesis4 
56 
57_PY_VERS_PKG.default.pip= devel/py-pip 54_PY_VERS_PKG.default.pip= devel/py-pip
58_PY_VERS_PKG.27.pip= devel/py-pip20 55_PY_VERS_PKG.27.pip= devel/py-pip20
59 56
60_PY_VERS_PKG.default.setuptools= devel/py-setuptools 57_PY_VERS_PKG.default.setuptools= devel/py-setuptools
61_PY_VERS_PKG.27.setuptools= devel/py-setuptools44 58_PY_VERS_PKG.27.setuptools= devel/py-setuptools44
62 59
63_PY_VERS_PKG.default.setuptools_scm= devel/py-setuptools_scm 60_PY_VERS_PKG.default.setuptools_scm= devel/py-setuptools_scm
64_PY_VERS_PKG.27.setuptools_scm= devel/py-setuptools_scm5 61_PY_VERS_PKG.27.setuptools_scm= devel/py-setuptools_scm5
65 62
66_PY_VERS_PKG.default.test= devel/py-test 63_PY_VERS_PKG.default.test= devel/py-test
67_PY_VERS_PKG.27.test= devel/py-test4 64_PY_VERS_PKG.27.test= devel/py-test4
68 65
69.for pattern in ${PYTHON_VERSIONED_DEPENDENCIES} 66.for pattern in ${PYTHON_VERSIONED_DEPENDENCIES}