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/4] distutils-r1.eclass: Bump min dep versions
Date: Sun, 02 Oct 2022 16:19:36
Message-Id: 20221002161840.5552-3-mgorny@gentoo.org
In Reply to: [gentoo-dev] [PATCH 1/4] distutils-r1.eclass: Remove obsolete DUS=pyproject.toml support 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 8fd652ff1e13..d667b31191e2 100644
8 --- a/eclass/distutils-r1.eclass
9 +++ b/eclass/distutils-r1.eclass
10 @@ -202,7 +202,7 @@ _distutils_set_globals() {
11 fi
12
13 bdep='
14 - >=dev-python/gpep517-8[${PYTHON_USEDEP}]
15 + >=dev-python/gpep517-9[${PYTHON_USEDEP}]
16 '
17 case ${DISTUTILS_USE_PEP517} in
18 flit)
19 @@ -212,22 +212,22 @@ _distutils_set_globals() {
20 ;;
21 flit_scm)
22 bdep+='
23 - dev-python/flit_scm[${PYTHON_USEDEP}]
24 + >=dev-python/flit_scm-1.7.0[${PYTHON_USEDEP}]
25 '
26 ;;
27 hatchling)
28 bdep+='
29 - >=dev-python/hatchling-1.3.1[${PYTHON_USEDEP}]
30 + >=dev-python/hatchling-1.8.1[${PYTHON_USEDEP}]
31 '
32 ;;
33 jupyter)
34 bdep+='
35 - >=dev-python/jupyter_packaging-0.12.0-r1[${PYTHON_USEDEP}]
36 + >=dev-python/jupyter_packaging-0.12.3[${PYTHON_USEDEP}]
37 '
38 ;;
39 maturin)
40 bdep+='
41 - >=dev-util/maturin-0.12.20[${PYTHON_USEDEP}]
42 + >=dev-util/maturin-0.13.3[${PYTHON_USEDEP}]
43 '
44 ;;
45 no)
46 @@ -236,17 +236,17 @@ _distutils_set_globals() {
47 ;;
48 meson-python)
49 bdep+='
50 - dev-python/meson-python[${PYTHON_USEDEP}]
51 + >=dev-python/meson-python-0.9.0[${PYTHON_USEDEP}]
52 '
53 ;;
54 pbr)
55 bdep+='
56 - >=dev-python/pbr-5.9.0[${PYTHON_USEDEP}]
57 + >=dev-python/pbr-5.10.0[${PYTHON_USEDEP}]
58 '
59 ;;
60 pdm)
61 bdep+='
62 - >=dev-python/pdm-pep517-1.0.2[${PYTHON_USEDEP}]
63 + >=dev-python/pdm-pep517-1.0.4[${PYTHON_USEDEP}]
64 '
65 ;;
66 poetry)
67 @@ -256,7 +256,7 @@ _distutils_set_globals() {
68 ;;
69 setuptools)
70 bdep+='
71 - >=dev-python/setuptools-62.6.0[${PYTHON_USEDEP}]
72 + >=dev-python/setuptools-65.3.0[${PYTHON_USEDEP}]
73 dev-python/wheel[${PYTHON_USEDEP}]
74 '
75 ;;
76 @@ -277,7 +277,7 @@ _distutils_set_globals() {
77 eqawarn "is enabled."
78 fi
79 else
80 - local setuptools_dep='>=dev-python/setuptools-42.0.2[${PYTHON_USEDEP}]'
81 + local setuptools_dep='>=dev-python/setuptools-65.3.0[${PYTHON_USEDEP}]'
82
83 case ${DISTUTILS_USE_SETUPTOOLS:-bdepend} in
84 no|manual)
85 --
86 2.37.3