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/tabulate/
Date: Mon, 05 Dec 2016 22:57:42
Message-Id: 1480978654.33f0cee4685b55800019832c3a2135720d3bccca.monsieurp@gentoo
1 commit: 33f0cee4685b55800019832c3a2135720d3bccca
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 5 22:57:20 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 5 22:57:34 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33f0cee4
7
8 dev-python/tabulate: version bump.
9
10 Package-Manager: portage-2.3.0
11
12 dev-python/tabulate/Manifest | 1 +
13 dev-python/tabulate/tabulate-0.7.7.ebuild | 35 +++++++++++++++++++++++++++++++
14 2 files changed, 36 insertions(+)
15
16 diff --git a/dev-python/tabulate/Manifest b/dev-python/tabulate/Manifest
17 index b0f127b..86f1dc7 100644
18 --- a/dev-python/tabulate/Manifest
19 +++ b/dev-python/tabulate/Manifest
20 @@ -1,3 +1,4 @@
21 DIST tabulate-0.7.2.tar.gz 19792 SHA256 532ccab8d9e4659a5f016d84814df86cc04763785e9de2739e890d956dc82d8f SHA512 49cbaf26004032889743937615a6f27a0728016013d81a3a0dfea0d3b25904aed333e59e697fb5040a61d68dfa6c8f8e7c1dd0b0ac4b470f424a26e62bf0a5d8 WHIRLPOOL 30cf8386c5961e3c0674e1c4b490cc21789644d6ad37e0dd9cdb46608220a26fd377b2ed8c34522c7dd8284692287c713b4bed58b229541cfb7aecc5d74c9ca7
22 DIST tabulate-0.7.3.tar.gz 22315 SHA256 8a59a61ed6ddfdb009f15917e0f006cc5842f9daa72c519593b7a095e645532a SHA512 1932627e50f00caa14b8a393dd005cf5cc096c80918c4f943526560c0409561e9f8063e4ca0610b1c7e9006119ba6f56294c3b256d1ba60c1c52ea7da62ad67b WHIRLPOOL 77f8794536ab4a72eb32708296f24c68889877228cc9d4735ec177cf5e82b0bdd17cd46854e2a3ebf84b7295b897b6c171a842faf22538f157b7b681e1124ef0
23 DIST tabulate-0.7.5.tar.gz 29844 SHA256 9071aacbd97a9a915096c1aaf0dc684ac2672904cd876db5904085d6dac9810e SHA512 dfc79e5fc2774520c117c4a2ee65ebe38f65430bda19697d443893a6eaad117de56c4b4c5157cdb8b09871c4eb452bc0b040b331602b6ab547b4326eb5c145eb WHIRLPOOL 719d507db5796960535c56e15f472130830715433f620bd92cb8c521a9ea58780286bf0f5f6fc32abe357cc185053d68505381e32b8e75c9334d5b5965ee85f2
24 +DIST tabulate-0.7.7.tar.gz 39140 SHA256 83a0b8e17c09f012090a50e1e97ae897300a72b35e0c86c0b53d3bd2ae86d8c6 SHA512 36ea77577e36fad28efa9b1c10686a4a795acdea77be4f8b442b38f45d70993245b4b473b0ce146f3d24eb49f186ec47ada332a9a3973ac2786d5a46b7358213 WHIRLPOOL 7d64e01b9a2d4ed41733b67e4108e233ba97ca95029f4f82c1b73f489dd0e17589cfbe071fd83969422779e73eb7fc1e5b7d48c891b3dcd647a9d4266900a462
25
26 diff --git a/dev-python/tabulate/tabulate-0.7.7.ebuild b/dev-python/tabulate/tabulate-0.7.7.ebuild
27 new file mode 100644
28 index 00000000..9c951da
29 --- /dev/null
30 +++ b/dev-python/tabulate/tabulate-0.7.7.ebuild
31 @@ -0,0 +1,35 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=5
37 +
38 +PYTHON_COMPAT=( python2_7 python{3_4,3_5} )
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="Pretty-print tabular data"
43 +HOMEPAGE="https://pypi.python.org/pypi/tabulate"
44 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 +
46 +SLOT="0"
47 +LICENSE="MIT"
48 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
49 +IUSE="test"
50 +
51 +RDEPEND=""
52 +DEPEND="${RDEPEND}
53 + test? ( virtual/python-funcsigs[${PYTHON_USEDEP}] )
54 +"
55 +
56 +# Missing something:
57 +#
58 +# from common import assert_equal
59 +RESTRICT=test
60 +
61 +python_test() {
62 + local testcase
63 + for testcase in test/*py; do
64 + ${PYTHON} ${testcase} || die
65 + done
66 +}