Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/colorama/
Date: Wed, 26 Apr 2017 08:20:13
Message-Id: 1493194792.3978fc7c1b55d62d7d8e7062774200beb97d4ba2.radhermit@gentoo
1 commit: 3978fc7c1b55d62d7d8e7062774200beb97d4ba2
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 26 07:57:19 2017 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 26 08:19:52 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3978fc7c
7
8 dev-python/colorama: version bump to 0.3.8
9
10 dev-python/colorama/Manifest | 1 +
11 dev-python/colorama/colorama-0.3.8.ebuild | 29 +++++++++++++++++++++++++++++
12 2 files changed, 30 insertions(+)
13
14 diff --git a/dev-python/colorama/Manifest b/dev-python/colorama/Manifest
15 index 661dc270b45..34a6c0a6759 100644
16 --- a/dev-python/colorama/Manifest
17 +++ b/dev-python/colorama/Manifest
18 @@ -1,2 +1,3 @@
19 DIST colorama-0.3.3.tar.gz 22765 SHA256 eb21f2ba718fbf357afdfdf6f641ab393901c7ca8d9f37edd0bee4806ffa269c SHA512 8e6177ea60ab8f1267ce982f23803a9d2eb0c4550d7eac4776416d62a99d1ce03254fc64cc959ca95e2409ceeff081d4d19359c383e969dfb921b44c56914495 WHIRLPOOL e5fe6c0046b558abdde260d9d89e3cbe197165f99fb4f7134c14fff95e6c1e92b3472a95001d847ab58e8445c87f21774a71f629771593934ea070838c765461
20 DIST colorama-0.3.7.tar.gz 24602 SHA256 e043c8d32527607223652021ff648fbb394d5e19cba9f1a698670b338c9d782b SHA512 4d6241afbcbc82c4451911587fd6a54ab1ecb43ca113f465b6966ceb44c79f074220317c249055e28b7023b90a5015819a8048ed11bcc1feb85a2d36df15f3cf WHIRLPOOL 5fd0b482fcb77fbbb27bb2d162aed19ceb92ae9c793e4121f39921aec6bcb3d5dacc50ede010f369aef3cacef425faac5bceea423d3a6c176735dfd8112853cb
21 +DIST colorama-0.3.8.tar.gz 25043 SHA256 66c0470b1aab193890761e959103a1d99d609a2158f14ab27fb1afedc99aacc9 SHA512 daccbae90c986bbb23d87b6fce97e53fafce0284ee5578b642d925bcd8f162919e61065494a5b31ed3d2c6b28b6543fdbf84c477745f6540ea607e2d13cde319 WHIRLPOOL a20c6dda74ad54e7deed0cab9cd4a228f29028f9afe225a428f26f2b04e3efdc02bc2eedf90b9ad46cd5f0d94b92917d6aacfff92e9a0fa406d268e69ee1ad6e
22
23 diff --git a/dev-python/colorama/colorama-0.3.8.ebuild b/dev-python/colorama/colorama-0.3.8.ebuild
24 new file mode 100644
25 index 00000000000..3dd40613fdd
26 --- /dev/null
27 +++ b/dev-python/colorama/colorama-0.3.8.ebuild
28 @@ -0,0 +1,29 @@
29 +# Copyright 1999-2017 Gentoo Foundation
30 +# Distributed under the terms of the GNU General Public License v2
31 +
32 +EAPI=6
33 +
34 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
35 +
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="ANSI escape character sequences for colored terminal text & cursor positioning"
39 +HOMEPAGE="
40 + https://pypi.python.org/pypi/colorama
41 + https://github.com/tartley/colorama"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="BSD"
45 +SLOT="0"
46 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
47 +IUSE="examples"
48 +
49 +python_install_all() {
50 + distutils-r1_python_install_all
51 +
52 + if use examples; then
53 + insinto /usr/share/doc/${PF}/examples
54 + doins -r demos/.
55 + docompress -x /usr/share/doc/${PF}/examples
56 + fi
57 +}