summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKeith Holman <Keith.Holman@windriver.com>2014-06-06 10:15:34 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2014-06-09 09:45:08 -0400
commitdca93fca4f884dc8a4f5f6f37cf46a8d5c1b6ac5 (patch)
treed1c70bd2c5b1077566a1faf3fba49566a66ba7fa
parentd87f119962094dc2cedc43b91e648e7238237213 (diff)
downloadmeta-cloud-services-dca93fca4f884dc8a4f5f6f37cf46a8d5c1b6ac5.tar.gz
colorama: python package for terminal colours
Colorama is a python interface for sending ASCII terminal codes to facilitate setting cursor locations and outputting color to terminal windows. This change provides a recipe for obtaining the colorama package. Signed-off-by: Keith Holman <Keith.Holman@windriver.com>
-rw-r--r--meta-openstack/recipes-devtools/python/python-colorama_0.3.1.bb26
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-colorama_0.3.1.bb b/meta-openstack/recipes-devtools/python/python-colorama_0.3.1.bb
new file mode 100644
index 0000000..507da5e
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-colorama_0.3.1.bb
@@ -0,0 +1,26 @@
1#
2# Copyright (C) 2014 Wind River Systems, Inc.
3#
4DESCRIPTION = "Simple cross-platform colored terminal text in Python"
5HOMEPAGE = "http://pypi.python.org/pypi/colorama"
6SECTION = "devel/python"
7LICENSE = "BSD"
8LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=14d0b64047ed8f510b51ce0495995358"
9
10PR = "r0"
11SRCNAME = "colorama"
12
13SRC_URI = "http://pypi.python.org/packages/source/c/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \
14 "
15
16SRC_URI[md5sum] = "95ce8bf32f5c25adea14b809db3509cb"
17SRC_URI[sha256sum] = "012261ba542a5b18076cac0eaa3892ebe6098e170591e08a8fc0fbf8ab3d5c90"
18
19S = "${WORKDIR}/${SRCNAME}-${PV}"
20
21inherit setuptools
22
23DEPENDS += " \
24 python-pip \
25 "
26