Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/beagle/
Date: Sun, 17 Oct 2021 19:25:23
Message-Id: 1634498667.1709d2c762a68b4ae007aa6fedc056b2f2ff7c6b.arthurzam@gentoo
1 commit: 1709d2c762a68b4ae007aa6fedc056b2f2ff7c6b
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 17 19:06:16 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 17 19:24:27 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1709d2c7
7
8 dev-python/beagle: enable py3.10, py3.9
9
10 Manually reviewed all code, and manually run some codes.
11
12 Closes: https://bugs.gentoo.org/812299
13 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
14
15 dev-python/beagle/beagle-0.3.0.ebuild | 17 ++++++++++-------
16 1 file changed, 10 insertions(+), 7 deletions(-)
17
18 diff --git a/dev-python/beagle/beagle-0.3.0.ebuild b/dev-python/beagle/beagle-0.3.0.ebuild
19 index cb43007e419..08451f90451 100644
20 --- a/dev-python/beagle/beagle-0.3.0.ebuild
21 +++ b/dev-python/beagle/beagle-0.3.0.ebuild
22 @@ -1,9 +1,9 @@
23 -# Copyright 1999-2020 Gentoo Authors
24 +# Copyright 1999-2021 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 EAPI=7
28 -PYTHON_COMPAT=( python3_7 python3_8 )
29 -DISTUTILS_USE_SETUPTOOLS=rdepend
30 +
31 +PYTHON_COMPAT=( python3_{8..10} )
32 inherit distutils-r1
33
34 DESCRIPTION="Command line client for Hound, the code search tool."
35 @@ -14,9 +14,12 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
36 LICENSE="Apache-2.0"
37 SLOT="0"
38 KEYWORDS="~amd64 ~x86"
39 -IUSE=""
40
41 -DEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]"
42 -RDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
43 +# setuptools is needed as rdepend, https://github.com/beaglecli/beagle/pull/14
44 +RDEPEND="
45 + dev-python/setuptools[${PYTHON_USEDEP}]
46 + >=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
47 >=dev-python/cliff-2.11.0[${PYTHON_USEDEP}]
48 - >=dev-python/requests-2.18.4[${PYTHON_USEDEP}]"
49 + >=dev-python/requests-2.18.4[${PYTHON_USEDEP}]
50 +"
51 +BDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]"