diff options
| author | Keith Holman <Keith.Holman@windriver.com> | 2014-06-06 10:13:50 -0400 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-06-09 10:49:38 -0400 |
| commit | 0233f9ddd25ca66f23fe4b25c48dffa46626b370 (patch) | |
| tree | 7007aa3a2cc755eb3d66fa8b167c69fe7baca1cd /meta-openstack | |
| parent | 182090b8495c54150ea622ae40ae749c8cb1875b (diff) | |
| download | meta-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.bb | 26 |
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 | # | ||
| 4 | DESCRIPTION = "ANSII Color formatting for output in terminal" | ||
| 5 | HOMEPAGE = "https://pypi.python.org/pypi/termcolor" | ||
| 6 | SECTION = "devel/python" | ||
| 7 | LICENSE = "MIT" | ||
| 8 | LIC_FILES_CHKSUM = "file://COPYING.txt;md5=809e8749b63567978acfbd81d9f6a27d" | ||
| 9 | |||
| 10 | PR = "r0" | ||
| 11 | SRCNAME = "termcolor" | ||
| 12 | |||
| 13 | SRC_URI = "https://pypi.python.org/packages/source/t/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \ | ||
| 14 | " | ||
| 15 | |||
| 16 | SRC_URI[md5sum] = "043e89644f8909d462fbbfa511c768df" | ||
| 17 | SRC_URI[sha256sum] = "1d6d69ce66211143803fbc56652b41d73b4a400a2891d7bf7a1cdf4c02de613b" | ||
| 18 | |||
| 19 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
| 20 | |||
| 21 | inherit distutils | ||
| 22 | |||
| 23 | DEPENDS += " \ | ||
| 24 | python-pip \ | ||
| 25 | " | ||
| 26 | |||
