Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/humanfriendly/
Date: Sun, 21 Feb 2016 15:32:56
Message-Id: 1456068766.bc23e0db0633a46e568ead3e1a1683c3508d1691.jlec@gentoo
1 commit: bc23e0db0633a46e568ead3e1a1683c3508d1691
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 21 15:22:26 2016 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 21 15:32:46 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc23e0db
7
8 dev-python/humanfriendly: Version Bump
9
10 Package-Manager: portage-2.2.27
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/humanfriendly/Manifest | 1 +
14 .../humanfriendly/humanfriendly-1.44.3.ebuild | 31 ++++++++++++++++++++++
15 2 files changed, 32 insertions(+)
16
17 diff --git a/dev-python/humanfriendly/Manifest b/dev-python/humanfriendly/Manifest
18 index 181fc6a..6192629 100644
19 --- a/dev-python/humanfriendly/Manifest
20 +++ b/dev-python/humanfriendly/Manifest
21 @@ -1 +1,2 @@
22 DIST humanfriendly-1.44.1.tar.gz 44281 SHA256 a9c545dc284c8e310465dba0b2300d898a9dc0d6eba5852f7578e03ff3ffc4ea SHA512 d5467e75c2e84c50dacaaab1c14b71a536eda5b91f4fc2d6ca69f1f1e50fe0ac215ac6cbf91cf7df08456f3058dcf84f0e38f611022c295e90c936e3b8a77cc9 WHIRLPOOL 869f86cd719fb9f3810767a37f43742ff21e9664229ccc4525873c84288fff8e9f08530796f54f2f1bea3b2df0601a424c5a253a42940c2d6a99cdbe19b20627
23 +DIST humanfriendly-1.44.3.tar.gz 44682 SHA256 910a01f17d73536d53f0464c3d825e64efcb56fff80c58b383b78bfab5f934d0 SHA512 7ddba207e9946ea38ec7d4aaebe87c38ae7cec0f87d7576a8e99425f9678e7b90d830de2518ba898ba485d86e4b363022a9919dbf4fdf0b6cdd4bcf1629cd1b5 WHIRLPOOL 58683b1085e92d0d9c24a9b31c189f20a6d04f9a0eed8369ef180d0e0e66bcf878c251d61dcce905ad53223b480e1d244ff239d56b5a13d730c48952ec85007a
24
25 diff --git a/dev-python/humanfriendly/humanfriendly-1.44.3.ebuild b/dev-python/humanfriendly/humanfriendly-1.44.3.ebuild
26 new file mode 100644
27 index 0000000..eef8e50
28 --- /dev/null
29 +++ b/dev-python/humanfriendly/humanfriendly-1.44.3.ebuild
30 @@ -0,0 +1,31 @@
31 +# Copyright 1999-2016 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=6
36 +
37 +PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
38 +PYTHON_REQ_USE="threads(+)"
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="Human friendly output for text interfaces using Python"
43 +HOMEPAGE="https://pypi.python.org/pypi/humanfriendly https://humanfriendly.readthedocs.org"
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 + dev-python/setuptools[${PYTHON_USEDEP}]
54 + test? (
55 + dev-python/capturer[${PYTHON_USEDEP}]
56 + dev-python/coloredlogs[${PYTHON_USEDEP}]
57 + )
58 + "
59 +python_test() {
60 + esetup.py test
61 +}