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/texttable/
Date: Mon, 18 Feb 2019 19:41:47
Message-Id: 1550518890.b6e4598c4d1fba5073698f2b50e10655a64eb5a1.monsieurp@gentoo
1 commit: b6e4598c4d1fba5073698f2b50e10655a64eb5a1
2 Author: Joonas Niilola <juippis <AT> gmail <DOT> com>
3 AuthorDate: Mon Feb 18 13:24:16 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 18 19:41:30 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6e4598c
7
8 dev-python/texttable: bump to 1.6.1.
9
10 Package-Manager: Portage[mgorny]-2.3.51.1
11 Signed-off-by: Joonas Niilola <juippis <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/11095
13 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
14
15 dev-python/texttable/Manifest | 1 +
16 dev-python/texttable/texttable-1.6.1.ebuild | 34 +++++++++++++++++++++++++++++
17 2 files changed, 35 insertions(+)
18
19 diff --git a/dev-python/texttable/Manifest b/dev-python/texttable/Manifest
20 index 1dbde3195a0..cb388efceca 100644
21 --- a/dev-python/texttable/Manifest
22 +++ b/dev-python/texttable/Manifest
23 @@ -1,2 +1,3 @@
24 DIST texttable-0.9.1.tar.gz 11074 BLAKE2B 465738a7b980f2a216d63b268044c1a1b8c0deb986fd398f0ba0ae30ab84020ac6f179b5314a2071592c38443f9cb86387b9ed573342533af9e825000472ebe5 SHA512 7ec37336ef4b253879d0232dcdb4500cad33ecce1067dd7ea26c221dc2c003ee56360bdbd1dd1e00133301c51c67fb2fe9b1703628804a65f2a6ab8a1e830e50
25 DIST texttable-1.6.0.tar.gz 10733 BLAKE2B 80a9b8a224ebaa37066df6a3aaccda6237224976076755b8f81a27eb20e3ef1c0811a529a877778b5ea7b1345ad16d510a7f3d9b6a1caadc582f34015faabb4e SHA512 df685004f24b8c1e7aa1bd6a44c658599805f1a0c6999a4a3e95ecf3a68499f515bea9cb5ccd54f5ee2563af15e9fcde2a7e1827934e4a1fc83c9ae2f5e88a52
26 +DIST texttable-1.6.1.tar.gz 11185 BLAKE2B d3fd85de8b6fa14ec6c520c0c0049ee043285fecaf7d31fbc1f361e0c9a27b66a75caf8aa0f85109523143f36ba2da47818ce91c4946c0b4d5391a0a4c5d9028 SHA512 72d4bb5c4f03b1f9dbfc4b1e375ad754e92610f71e65c7e9a0b7bdc88b3753254b143aa607570d49cfca56a3cf889a819e12ea184fdf34594f1f5d118de3c12c
27
28 diff --git a/dev-python/texttable/texttable-1.6.1.ebuild b/dev-python/texttable/texttable-1.6.1.ebuild
29 new file mode 100644
30 index 00000000000..7b84c8a238b
31 --- /dev/null
32 +++ b/dev-python/texttable/texttable-1.6.1.ebuild
33 @@ -0,0 +1,34 @@
34 +# Copyright 1999-2019 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +PYTHON_COMPAT=( python{2_7,3_{5,6,7}} )
40 +
41 +inherit distutils-r1
42 +
43 +DESCRIPTION="Module for creating simple ASCII tables"
44 +HOMEPAGE="https://github.com/foutaise/texttable https://pypi.org/project/texttable/"
45 +SRC_URI="https://github.com/foutaise/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~x86"
50 +IUSE="cjk test"
51 +
52 +RESTRICT="!test? ( test )"
53 +
54 +DEPEND="
55 + dev-python/setuptools[${PYTHON_USEDEP}]
56 + test? (
57 + dev-python/pytest[${PYTHON_USEDEP}]
58 + dev-python/wcwidth[${PYTHON_USEDEP}]
59 + cjk? ( dev-python/cjkwrap[${PYTHON_USEDEP}] )
60 + )
61 +"
62 +RDEPEND="dev-python/wcwidth[${PYTHON_USEDEP}]
63 + cjk? ( dev-python/cjkwrap[${PYTHON_USEDEP}] )"
64 +
65 +python_test() {
66 + pytest -vv tests.py || die
67 +}