From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id CD9411384B4 for ; Sun, 13 Dec 2015 14:05:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 329F021C04A; Sun, 13 Dec 2015 14:05:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4808421C04C for ; Sun, 13 Dec 2015 14:05:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9ED82340924 for ; Sun, 13 Dec 2015 14:05:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A979ED24 for ; Sun, 13 Dec 2015 14:05:37 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1450015528.c0b8961075092ce40bc7eb0879d4c8f4c1b58cae.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/colorama/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/colorama/Manifest dev-python/colorama/colorama-0.3.5.ebuild X-VCS-Directories: dev-python/colorama/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: c0b8961075092ce40bc7eb0879d4c8f4c1b58cae X-VCS-Branch: master Date: Sun, 13 Dec 2015 14:05:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c71dce6a-99d6-4009-8788-bf4ffa9ab20f X-Archives-Hash: 8c33d8141e9009dd9fc01ed39a6fdb37 commit: c0b8961075092ce40bc7eb0879d4c8f4c1b58cae Author: Justin Lecher gentoo org> AuthorDate: Sun Dec 13 11:21:17 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Dec 13 14:05:28 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0b89610 dev-python/colorama: Version Bump Package-Manager: portage-2.2.26 Signed-off-by: Justin Lecher gentoo.org> dev-python/colorama/Manifest | 1 + dev-python/colorama/colorama-0.3.5.ebuild | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/dev-python/colorama/Manifest b/dev-python/colorama/Manifest index d221e07..2c108f8 100644 --- a/dev-python/colorama/Manifest +++ b/dev-python/colorama/Manifest @@ -1 +1,2 @@ DIST colorama-0.3.3.tar.gz 22765 SHA256 eb21f2ba718fbf357afdfdf6f641ab393901c7ca8d9f37edd0bee4806ffa269c SHA512 8e6177ea60ab8f1267ce982f23803a9d2eb0c4550d7eac4776416d62a99d1ce03254fc64cc959ca95e2409ceeff081d4d19359c383e969dfb921b44c56914495 WHIRLPOOL e5fe6c0046b558abdde260d9d89e3cbe197165f99fb4f7134c14fff95e6c1e92b3472a95001d847ab58e8445c87f21774a71f629771593934ea070838c765461 +DIST colorama-0.3.5.tar.gz 24520 SHA256 0880a751afcb111881b437a846a93e540c7e1346030ba7bd7fda03434371fbc3 SHA512 a7d17fd51d4a2338903bdee356245ef639300f5001a0b24bd7e74f46a6188a1f8f3d7270195f75391f2553fe4b0767e661159a5fe9293e1eea5834b98d0f4e57 WHIRLPOOL 1195da18c06c11f0dd6e4606d111fa5aad3aee1c18ac97aebde4ee2a1829cda32d236fd4a84a314eae65ed997fb17dbcf377a3858de52d9636863e4296c954e2 diff --git a/dev-python/colorama/colorama-0.3.5.ebuild b/dev-python/colorama/colorama-0.3.5.ebuild new file mode 100644 index 0000000..9ce4094 --- /dev/null +++ b/dev-python/colorama/colorama-0.3.5.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="ANSI escape character sequences for colored terminal text & cursor positioning" +HOMEPAGE=" + https://code.google.com/p/colorama/ + https://pypi.python.org/pypi/colorama + https://github.com/tartley/colorama" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="examples" + +python_install_all() { + use examples && local EXAMPLES=( demos/. ) + distutils-r1_python_install_all +}