Gentoo Archives: gentoo-commits

From: Andrey Grozin <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/prompt_toolkit/
Date: Thu, 30 Mar 2017 18:13:06
Message-Id: 1490897571.88bcf0537c2456de964eb546e45164c4840185d1.grozin@gentoo
1 commit: 88bcf0537c2456de964eb546e45164c4840185d1
2 Author: Andrey Grozin <grozin <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 30 18:12:51 2017 +0000
4 Commit: Andrey Grozin <grozin <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 30 18:12:51 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88bcf053
7
8 dev-python/prompt_toolkit: bump to 1.0.14, python3_6 added
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-python/prompt_toolkit/Manifest | 1 +
13 .../prompt_toolkit/prompt_toolkit-1.0.14.ebuild | 30 ++++++++++++++++++++++
14 2 files changed, 31 insertions(+)
15
16 diff --git a/dev-python/prompt_toolkit/Manifest b/dev-python/prompt_toolkit/Manifest
17 index 4ace9a5ffd5..6bc19fe29b2 100644
18 --- a/dev-python/prompt_toolkit/Manifest
19 +++ b/dev-python/prompt_toolkit/Manifest
20 @@ -1,3 +1,4 @@
21 DIST prompt_toolkit-1.0.0.tar.gz 212138 SHA256 5108ed9e6e40d28cb1dc90ba563987859231289700d0def999007b08f4f74ea4 SHA512 84908871df84d82b0fd0e31c1bef63b3dde38d8e3c1459d3d5466cfda68ef48477eba5a2d4c5af831e7a3fa42ab57c56f771f8050b53223638683cee27281647 WHIRLPOOL a141f2ed1bc57ef9b663877094c9fe3e4a751a59f72c327da479872bfdd48b7b70ba78f3d4be2c397acb699d2adf272a8df5c8db7b3999b2711dd1b62d4a3d0d
22 DIST prompt_toolkit-1.0.13.tar.gz 240895 SHA256 33d68ca09f76cd73287fde7df5748ffacf26a8238dd61ee81ac50860ea7c6776 SHA512 9018133a7cf20c40b85d78a1622ad63a12b32994d054c7b8a593502929b6f01138d407e25f2de549a44a5d5091074e440960bc230c357806ef1507f19e15b1dd WHIRLPOOL 9121b44db7300d489821555f0bef2effb472e059b2980c0705f4006fa8d112114832e59fb7ef6f1ff6e9b442c39a7b03f05a4de908b61e52e94df4f0166f438b
23 +DIST prompt_toolkit-1.0.14.tar.gz 241612 SHA256 cc66413b1b4b17021675d9f2d15d57e640b06ddfd99bb724c73484126d22622f SHA512 909bf50bf0095a8cc37581fc7384f9035eb9d6fd0d16a914e8912693476262cfe0b0c78643ba1c629bd907c861981a9740155927148fcff554446ebb4fd80959 WHIRLPOOL 5967bab046f70bfb74ee8e548fb3a7c5cdfeb328498176db28cf3cea5c47233697e193d4e47f0ae688718c228867b4a9b8a1c7227ce0a94b3e9b30441ec44961
24 DIST prompt_toolkit-1.0.3.tar.gz 221875 SHA256 805e026f0cbad27467e93f9dd3e3777718d401a62788c1e84ca038e967ad8ba2 SHA512 c7615c42c7923bb2cefb8db536405976975d25a7df110698e9664f205d3428b6bbf6ca2aba8b0d85957296fcac0bf65752d025cabdb25c80f149f9b92c0c445d WHIRLPOOL 61390865c3f6ad7ed258c481484b6da9211c6053761ed3716977f43b00697c79e3f24443ee4695c1a4d1aea2105e2cf171df92685d42be62ac508c4f3deeb9f1
25
26 diff --git a/dev-python/prompt_toolkit/prompt_toolkit-1.0.14.ebuild b/dev-python/prompt_toolkit/prompt_toolkit-1.0.14.ebuild
27 new file mode 100644
28 index 00000000000..aee90f07c2e
29 --- /dev/null
30 +++ b/dev-python/prompt_toolkit/prompt_toolkit-1.0.14.ebuild
31 @@ -0,0 +1,30 @@
32 +# Copyright 1999-2017 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Building powerful interactive command lines in Python"
42 +HOMEPAGE="https://pypi.python.org/pypi/prompt_toolkit/ https://github.com/jonathanslenders/python-prompt-toolkit"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +SLOT="0"
46 +LICENSE="BSD"
47 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
48 +IUSE="test"
49 +
50 +RDEPEND="
51 + >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
52 + dev-python/wcwidth[${PYTHON_USEDEP}]
53 +"
54 +DEPEND="${RDEPEND}
55 + dev-python/setuptools[${PYTHON_USEDEP}]
56 + test? ( dev-python/pytest[${PYTHON_USEDEP}] )
57 +"
58 +
59 +python_test() {
60 + py.test || die
61 +}