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/pudb/
Date: Fri, 29 Oct 2021 09:16:56
Message-Id: 1635498981.1691890636893f91dfcb48e167137dfd9378d68b.mgorny@gentoo
1 commit: 1691890636893f91dfcb48e167137dfd9378d68b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 29 09:10:06 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 29 09:16:21 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16918906
7
8 dev-python/pudb: Bump to 2021.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pudb/Manifest | 1 +
13 dev-python/pudb/pudb-2021.2.ebuild | 26 ++++++++++++++++++++++++++
14 2 files changed, 27 insertions(+)
15
16 diff --git a/dev-python/pudb/Manifest b/dev-python/pudb/Manifest
17 index 84ab9915352..e65dc10a3dc 100644
18 --- a/dev-python/pudb/Manifest
19 +++ b/dev-python/pudb/Manifest
20 @@ -1 +1,2 @@
21 DIST pudb-2021.1.tar.gz 216707 BLAKE2B 1287fa48607e9b73dd0bed063b29933dd4de6ab598ad99217ab13a719a6b9654765bc44c28150962ba22703733a4e956c39e843414444c3b7fff67cefe70d7d8 SHA512 54d62f1342ab461e58a382c0eb654ecc9d3bd759844bab2f0a339e91ba805670e4dc7ccd84e8188f34e06a07ac770f1c0cddd4a4ef916885af0bdc638db81fcf
22 +DIST pudb-2021.2.tar.gz 216306 BLAKE2B a3c4fce5515e49851ac0e2ec73aa4364d3311dbd64060181198315ec0aeeb860d95f34d09004a86bb73269252362a966e541547d19c6db74ffd51a0535a0942c SHA512 f6d07b752268115b8e833e5aac5e5984e77beaf02fd7d2ab91e0b94c61f4c32d639f4ed75d262e66526c00bec03c6c3cefb92d77d8bdb330eb5cb73f9bec009c
23
24 diff --git a/dev-python/pudb/pudb-2021.2.ebuild b/dev-python/pudb/pudb-2021.2.ebuild
25 new file mode 100644
26 index 00000000000..caf71861de1
27 --- /dev/null
28 +++ b/dev-python/pudb/pudb-2021.2.ebuild
29 @@ -0,0 +1,26 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="A full-screen, console-based Python debugger"
39 +HOMEPAGE="https://pypi.org/project/pudb/"
40 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 +
42 +LICENSE="MIT"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +
46 +RDEPEND="
47 + dev-python/urwid[${PYTHON_USEDEP}]
48 + dev-python/urwid_readline[${PYTHON_USEDEP}]
49 + dev-python/pygments[${PYTHON_USEDEP}]"
50 +BDEPEND="
51 + test? (
52 + dev-python/pytest-mock[${PYTHON_USEDEP}]
53 + )"
54 +
55 +distutils_enable_tests pytest