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/bpython/
Date: Fri, 02 Sep 2022 17:37:52
Message-Id: 1662140259.2dc56fc92671917922e30cbc7405ab1782f51e21.mgorny@gentoo
1 commit: 2dc56fc92671917922e30cbc7405ab1782f51e21
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 2 16:21:35 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 2 17:37:39 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dc56fc9
7
8 dev-python/bpython: Bump to 0.23
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/bpython/Manifest | 1 +
13 dev-python/bpython/bpython-0.23.ebuild | 44 ++++++++++++++++++++++++++++++++++
14 2 files changed, 45 insertions(+)
15
16 diff --git a/dev-python/bpython/Manifest b/dev-python/bpython/Manifest
17 index 82fee5093f84..ed26796a02da 100644
18 --- a/dev-python/bpython/Manifest
19 +++ b/dev-python/bpython/Manifest
20 @@ -1 +1,2 @@
21 DIST bpython-0.22.1.tar.gz 217294 BLAKE2B 907b51753182add775d3e2ba08c3999d30ba23ab13d59f364d03ce5f22191e1a90031f7c3b5477fd00c94342a5ee204aa2618a7cd1a9470bbc898cfc266ba9bd SHA512 6b29235c41b645c3658812b8c80637d1e76029a6386f8628e5c681b2f3fdea653f89a12f4e28f55381464755e04fa7a33f023f096e75d889d5a588222c0d06c3
22 +DIST bpython-0.23.tar.gz 222241 BLAKE2B eae70242323534dacada4d3d181ec4fba5fd384dc124bec7f28db887d2f1fb5b49ec6bc169d4a93db9de88dee82d714d502f2b2b1de5d9d01073f7504430cc23 SHA512 b25b68a690b838fef0c5dbb05565db4373ebb3611278b9f94db792ef25a43f59e3e9b7ac1ad0f571ae442948748b6c5e28888c6aa0f592cdf8499223cfded217
23
24 diff --git a/dev-python/bpython/bpython-0.23.ebuild b/dev-python/bpython/bpython-0.23.ebuild
25 new file mode 100644
26 index 000000000000..b557b80cbb9e
27 --- /dev/null
28 +++ b/dev-python/bpython/bpython-0.23.ebuild
29 @@ -0,0 +1,44 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Syntax highlighting and autocompletion for the Python interpreter"
41 +HOMEPAGE="
42 + https://www.bpython-interpreter.org/
43 + https://github.com/bpython/bpython/
44 + https://pypi.org/project/bpython/
45 +"
46 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
47 +
48 +LICENSE="MIT"
49 +SLOT="0"
50 +IUSE="clipboard +jedi urwid watch"
51 +KEYWORDS="~amd64 ~riscv ~x86"
52 +
53 +RDEPEND="
54 + >=dev-python/curtsies-0.4.0[${PYTHON_USEDEP}]
55 + dev-python/cwcwidth[${PYTHON_USEDEP}]
56 + dev-python/greenlet[${PYTHON_USEDEP}]
57 + dev-python/pygments[${PYTHON_USEDEP}]
58 + dev-python/pyxdg[${PYTHON_USEDEP}]
59 + dev-python/requests[${PYTHON_USEDEP}]
60 + clipboard? ( dev-python/pyperclip[${PYTHON_USEDEP}] )
61 + jedi? ( dev-python/jedi[${PYTHON_USEDEP}] )
62 + urwid? ( dev-python/urwid[${PYTHON_USEDEP}] )
63 + watch? ( dev-python/watchdog[${PYTHON_USEDEP}] )
64 +"
65 +# sphinx is used implicitly to build manpages
66 +BDEPEND="
67 + dev-python/sphinx[${PYTHON_USEDEP}]
68 +"
69 +
70 +DOCS=( AUTHORS.rst CHANGELOG.rst )
71 +
72 +distutils_enable_sphinx doc/sphinx/source --no-autodoc
73 +distutils_enable_tests unittest