Gentoo Archives: gentoo-dev

From: "Michał Górny" <mgorny@g.o>
To: gentoo-dev@l.g.o
Cc: "Michał Górny" <mgorny@g.o>
Subject: [gentoo-dev] [PATCH 3/5] distutils-r1.eclass: Bump minimal build system versions
Date: Tue, 31 Jan 2023 11:46:14
Message-Id: 20230131114515.145519-3-mgorny@gentoo.org
In Reply to: [gentoo-dev] [PATCH 1/5] distutils-r1.eclass: esetup.py, omit setup.cfg check in PEP517 mode by "Michał Górny"
1 Signed-off-by: Michał Górny <mgorny@g.o>
2 ---
3 eclass/distutils-r1.eclass | 20 ++++++++++----------
4 1 file changed, 10 insertions(+), 10 deletions(-)
5
6 diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass
7 index 65d48a19e73d..0bf5d51a363e 100644
8 --- a/eclass/distutils-r1.eclass
9 +++ b/eclass/distutils-r1.eclass
10 @@ -195,7 +195,7 @@ _distutils_set_globals() {
11 fi
12
13 bdep='
14 - >=dev-python/gpep517-9[${PYTHON_USEDEP}]
15 + >=dev-python/gpep517-13[${PYTHON_USEDEP}]
16 '
17 case ${DISTUTILS_USE_PEP517} in
18 flit)
19 @@ -210,7 +210,7 @@ _distutils_set_globals() {
20 ;;
21 hatchling)
22 bdep+='
23 - >=dev-python/hatchling-1.11.1[${PYTHON_USEDEP}]
24 + >=dev-python/hatchling-1.12.2[${PYTHON_USEDEP}]
25 '
26 ;;
27 jupyter)
28 @@ -220,7 +220,7 @@ _distutils_set_globals() {
29 ;;
30 maturin)
31 bdep+='
32 - >=dev-util/maturin-0.13.7[${PYTHON_USEDEP}]
33 + >=dev-util/maturin-0.14.10[${PYTHON_USEDEP}]
34 '
35 ;;
36 no)
37 @@ -229,33 +229,33 @@ _distutils_set_globals() {
38 ;;
39 meson-python)
40 bdep+='
41 - >=dev-python/meson-python-0.11.0[${PYTHON_USEDEP}]
42 + >=dev-python/meson-python-0.12.0[${PYTHON_USEDEP}]
43 '
44 ;;
45 pbr)
46 bdep+='
47 - >=dev-python/pbr-5.11.0[${PYTHON_USEDEP}]
48 + >=dev-python/pbr-5.11.1[${PYTHON_USEDEP}]
49 '
50 ;;
51 pdm)
52 bdep+='
53 - >=dev-python/pdm-pep517-1.0.5[${PYTHON_USEDEP}]
54 + >=dev-python/pdm-pep517-1.0.6[${PYTHON_USEDEP}]
55 '
56 ;;
57 poetry)
58 bdep+='
59 - >=dev-python/poetry-core-1.3.2[${PYTHON_USEDEP}]
60 + >=dev-python/poetry-core-1.4.0[${PYTHON_USEDEP}]
61 '
62 ;;
63 setuptools)
64 bdep+='
65 - >=dev-python/setuptools-65.5.1[${PYTHON_USEDEP}]
66 + >=dev-python/setuptools-65.7.0[${PYTHON_USEDEP}]
67 >=dev-python/wheel-0.38.4[${PYTHON_USEDEP}]
68 '
69 ;;
70 sip)
71 bdep+='
72 - >=dev-python/sip-6.7.5[${PYTHON_USEDEP}]
73 + >=dev-python/sip-6.7.5-r1[${PYTHON_USEDEP}]
74 '
75 ;;
76 standalone)
77 @@ -270,7 +270,7 @@ _distutils_set_globals() {
78 eqawarn "is enabled."
79 fi
80 else
81 - local setuptools_dep='>=dev-python/setuptools-65.5.1[${PYTHON_USEDEP}]'
82 + local setuptools_dep='>=dev-python/setuptools-65.7.0[${PYTHON_USEDEP}]'
83
84 case ${DISTUTILS_USE_SETUPTOOLS:-bdepend} in
85 no|manual)
86 --
87 2.39.1