Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/prompt_toolkit/
Date: Sun, 28 Oct 2018 22:40:04
Message-Id: 1540766213.1e8deaadf48e8db2769b422b50d4df270799762c.monsieurp@gentoo
1 commit: 1e8deaadf48e8db2769b422b50d4df270799762c
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 21 20:40:21 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 28 22:36:53 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e8deaad
7
8 dev-python/prompt_toolkit: version bump.
9
10 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
11 Package-Manager: Portage-2.3.49, Repoman-2.3.10
12
13 dev-python/prompt_toolkit/Manifest | 1 +
14 .../prompt_toolkit/prompt_toolkit-2.0.6.ebuild | 30 ++++++++++++++++++++++
15 2 files changed, 31 insertions(+)
16
17 diff --git a/dev-python/prompt_toolkit/Manifest b/dev-python/prompt_toolkit/Manifest
18 index c0b955e3fda..a217f76b600 100644
19 --- a/dev-python/prompt_toolkit/Manifest
20 +++ b/dev-python/prompt_toolkit/Manifest
21 @@ -1 +1,2 @@
22 DIST prompt_toolkit-1.0.15.tar.gz 243734 BLAKE2B b27e61bb444360abe95714e2014fcacf2355da0540b21af35cc40cb0f0115d0a3b027236235a89a95c1ec1fa947bf5b88b236b737fab5de78e7bd5fc798aa764 SHA512 10981be2ed8b71d0cd9f663c4de047cec9664d9276968c6eec40dc45b388d1acf8eba07d534369254f178931079bf39b04eb2ceac06aa63a2021ebf62387b2f5
23 +DIST prompt_toolkit-2.0.6.tar.gz 339714 BLAKE2B f969edef98d25930e4d61c1500bb9c8d731dea29e8d154e6baa2ab4045ceaf9d577d46024734a255cc15a4c13685582309e9d2fe7ae3320257f6fd1f9981ada6 SHA512 37082011ee5b8d6fd9febef95c92494ed6108b9ad8c64ac580b69c3464781a2f0dcef5b1c4d06fe309a3036932f7c622042e6b2293acf2ab6f9f2aa3c48d9322
24
25 diff --git a/dev-python/prompt_toolkit/prompt_toolkit-2.0.6.ebuild b/dev-python/prompt_toolkit/prompt_toolkit-2.0.6.ebuild
26 new file mode 100644
27 index 00000000000..8bf3a1119b1
28 --- /dev/null
29 +++ b/dev-python/prompt_toolkit/prompt_toolkit-2.0.6.ebuild
30 @@ -0,0 +1,30 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Building powerful interactive command lines in Python"
41 +HOMEPAGE="https://pypi.org/project/prompt_toolkit/ https://github.com/jonathanslenders/python-prompt-toolkit"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +SLOT="0"
45 +LICENSE="BSD"
46 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
47 +IUSE="test"
48 +
49 +RDEPEND="
50 + >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
51 + dev-python/wcwidth[${PYTHON_USEDEP}]"
52 +
53 +DEPEND="
54 + ${RDEPEND}
55 + dev-python/setuptools[${PYTHON_USEDEP}]
56 + test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
57 +
58 +python_test() {
59 + py.test || die
60 +}