Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ipdb/
Date: Thu, 01 Jul 2021 18:39:51
Message-Id: 1625164782.f06fc4ce29daa86dac3f5745134f423cb1fa7a21.mgorny@gentoo
1 commit: f06fc4ce29daa86dac3f5745134f423cb1fa7a21
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 1 18:31:00 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 1 18:39:42 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f06fc4ce
7
8 dev-python/ipdb: Port to py3.10
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/ipdb/ipdb-0.13.9-r1.ebuild | 25 +++++++++++++++++++++++++
13 1 file changed, 25 insertions(+)
14
15 diff --git a/dev-python/ipdb/ipdb-0.13.9-r1.ebuild b/dev-python/ipdb/ipdb-0.13.9-r1.ebuild
16 new file mode 100644
17 index 00000000000..de8bc495ece
18 --- /dev/null
19 +++ b/dev-python/ipdb/ipdb-0.13.9-r1.ebuild
20 @@ -0,0 +1,25 @@
21 +# Copyright 1999-2021 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=7
25 +
26 +DISTUTILS_USE_SETUPTOOLS=rdepend
27 +PYTHON_COMPAT=( python3_{8..10} )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="IPython-enabled pdb"
32 +HOMEPAGE="https://pypi.org/project/ipdb/"
33 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
34 +
35 +LICENSE="GPL-2"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
38 +
39 +RDEPEND=">=dev-python/ipython-7.17[${PYTHON_USEDEP}]"
40 +DEPEND="${RDEPEND}
41 + app-arch/unzip"
42 +
43 +DOCS=( HISTORY.txt )
44 +
45 +distutils_enable_tests unittest