summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools
diff options
context:
space:
mode:
authorKeith Holman <Keith.Holman@windriver.com>2014-06-06 10:13:50 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2014-06-09 09:45:08 -0400
commitd87f119962094dc2cedc43b91e648e7238237213 (patch)
treefa656316c6fd3ccb7e320ac03e1d204a421b4486 /meta-openstack/recipes-devtools
parent0a227428033c4b32857d2ed4b827f2342ada84df (diff)
downloadmeta-cloud-services-d87f119962094dc2cedc43b91e648e7238237213.tar.gz
termcolor: added recipe and dependency
Some packages require the termcolor package, which is used to generate colour output on terminal screens. This change provides a recipe for installing the termcolor package. Signed-off-by: Keith Holman <Keith.Holman@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools')
-rw-r--r--meta-openstack/recipes-devtools/python/python-termcolor_1.1.0.bb26
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-termcolor_1.1.0.bb b/meta-openstack/recipes-devtools/python/python-termcolor_1.1.0.bb
new file mode 100644
index 0000000..d365d61
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-termcolor_1.1.0.bb
@@ -0,0 +1,26 @@
1#
2# Copyright (C) 2014 Wind River Systems, Inc.
3#
4DESCRIPTION = "ANSII Color formatting for output in terminal"
5HOMEPAGE = "https://pypi.python.org/pypi/termcolor"
6SECTION = "devel/python"
7LICENSE = "MIT"
8LIC_FILES_CHKSUM = "file://COPYING.txt;md5=809e8749b63567978acfbd81d9f6a27d"
9
10PR = "r0"
11SRCNAME = "termcolor"
12
13SRC_URI = "https://pypi.python.org/packages/source/t/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \
14 "
15
16SRC_URI[md5sum] = "043e89644f8909d462fbbfa511c768df"
17SRC_URI[sha256sum] = "1d6d69ce66211143803fbc56652b41d73b4a400a2891d7bf7a1cdf4c02de613b"
18
19S = "${WORKDIR}/${SRCNAME}-${PV}"
20
21inherit distutils
22
23DEPENDS += " \
24 python-pip \
25 "
26