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/colorama/
Date: Sun, 13 Dec 2015 14:05:47
Message-Id: 1450015528.c0b8961075092ce40bc7eb0879d4c8f4c1b58cae.jlec@gentoo
1 commit: c0b8961075092ce40bc7eb0879d4c8f4c1b58cae
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 13 11:21:17 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 13 14:05:28 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0b89610
7
8 dev-python/colorama: Version Bump
9
10 Package-Manager: portage-2.2.26
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/colorama/Manifest | 1 +
14 dev-python/colorama/colorama-0.3.5.ebuild | 26 ++++++++++++++++++++++++++
15 2 files changed, 27 insertions(+)
16
17 diff --git a/dev-python/colorama/Manifest b/dev-python/colorama/Manifest
18 index d221e07..2c108f8 100644
19 --- a/dev-python/colorama/Manifest
20 +++ b/dev-python/colorama/Manifest
21 @@ -1 +1,2 @@
22 DIST colorama-0.3.3.tar.gz 22765 SHA256 eb21f2ba718fbf357afdfdf6f641ab393901c7ca8d9f37edd0bee4806ffa269c SHA512 8e6177ea60ab8f1267ce982f23803a9d2eb0c4550d7eac4776416d62a99d1ce03254fc64cc959ca95e2409ceeff081d4d19359c383e969dfb921b44c56914495 WHIRLPOOL e5fe6c0046b558abdde260d9d89e3cbe197165f99fb4f7134c14fff95e6c1e92b3472a95001d847ab58e8445c87f21774a71f629771593934ea070838c765461
23 +DIST colorama-0.3.5.tar.gz 24520 SHA256 0880a751afcb111881b437a846a93e540c7e1346030ba7bd7fda03434371fbc3 SHA512 a7d17fd51d4a2338903bdee356245ef639300f5001a0b24bd7e74f46a6188a1f8f3d7270195f75391f2553fe4b0767e661159a5fe9293e1eea5834b98d0f4e57 WHIRLPOOL 1195da18c06c11f0dd6e4606d111fa5aad3aee1c18ac97aebde4ee2a1829cda32d236fd4a84a314eae65ed997fb17dbcf377a3858de52d9636863e4296c954e2
24
25 diff --git a/dev-python/colorama/colorama-0.3.5.ebuild b/dev-python/colorama/colorama-0.3.5.ebuild
26 new file mode 100644
27 index 0000000..9ce4094
28 --- /dev/null
29 +++ b/dev-python/colorama/colorama-0.3.5.ebuild
30 @@ -0,0 +1,26 @@
31 +# Copyright 1999-2015 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=5
36 +
37 +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="ANSI escape character sequences for colored terminal text & cursor positioning"
42 +HOMEPAGE="
43 + https://code.google.com/p/colorama/
44 + https://pypi.python.org/pypi/colorama
45 + https://github.com/tartley/colorama"
46 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
47 +
48 +LICENSE="BSD"
49 +SLOT="0"
50 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
51 +IUSE="examples"
52 +
53 +python_install_all() {
54 + use examples && local EXAMPLES=( demos/. )
55 + distutils-r1_python_install_all
56 +}