2015-01-11 14:21:16 +03:00
|
|
|
# Copyright 1999-2015 Gentoo Foundation
|
2014-05-04 20:43:30 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-02-07 23:13:52 +03:00
|
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/colorama/colorama-0.3.3.ebuild,v 1.2 2015/02/07 17:55:23 radhermit Exp $
|
2014-05-04 20:43:30 +04:00
|
|
|
|
|
|
|
EAPI=5
|
2015-01-11 14:21:16 +03:00
|
|
|
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
|
2014-05-04 20:43:30 +04:00
|
|
|
|
|
|
|
inherit distutils-r1
|
|
|
|
|
2014-08-12 13:29:40 +04:00
|
|
|
DESCRIPTION="Makes ANSI escape character sequences for producing colored terminal text & cursor positioning"
|
2015-02-07 23:13:52 +03:00
|
|
|
HOMEPAGE="http://code.google.com/p/colorama/ https://pypi.python.org/pypi/colorama https://github.com/tartley/colorama"
|
2014-05-04 20:43:30 +04:00
|
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="BSD"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
|
|
|
IUSE="examples"
|
|
|
|
|
|
|
|
python_install_all() {
|
|
|
|
use examples && local EXAMPLES=( demos/. )
|
|
|
|
distutils-r1_python_install_all
|
|
|
|
}
|