summaryrefslogtreecommitdiffstats
path: root/meta-openstack
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 10:49:38 -0400
commit0233f9ddd25ca66f23fe4b25c48dffa46626b370 (patch)
tree7007aa3a2cc755eb3d66fa8b167c69fe7baca1cd /meta-openstack
parent182090b8495c54150ea622ae40ae749c8cb1875b (diff)
downloadmeta-cloud-services-0233f9ddd25ca66f23fe4b25c48dffa46626b370.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')
-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