diff options
| author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2013-10-31 00:52:31 -0400 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2013-11-25 15:25:35 -0500 |
| commit | 3b81f3d5bb38fc67bb9ffb06b75385aebd60ae3b (patch) | |
| tree | 7c5e6ef61206ffd6adc00c59bc21616c7811e6e5 | |
| parent | 2366317a61248a09c7261adac6a6abfe15ef4ca1 (diff) | |
| download | meta-cloud-services-3b81f3d5bb38fc67bb9ffb06b75385aebd60ae3b.tar.gz | |
python-ceilometerclient: introduce ceilometer client and CLI applications
To support the horizon dashboard, we require at least the ceilometer client
application and libraries. The full server/application will be introduced
later.`
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
| -rw-r--r-- | meta-openstack/recipes-devtools/python/python-ceilometerclient_git.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-ceilometerclient_git.bb b/meta-openstack/recipes-devtools/python/python-ceilometerclient_git.bb new file mode 100644 index 0000000..f3848d4 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-ceilometerclient_git.bb | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | DESCRIPTION = "CLI and python client library for OpenStack Ceilometer" | ||
| 2 | HOMEPAGE = "https://launchpad.net/ceilometer" | ||
| 3 | SECTION = "devel/python" | ||
| 4 | LICENSE = "Apache-2.0" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658" | ||
| 6 | |||
| 7 | RDEPENDS_${PN} +="python-cliff \ | ||
| 8 | python-httplib2 \ | ||
| 9 | python-iso8601 \ | ||
| 10 | python-prettytable \ | ||
| 11 | python-pyparsing \ | ||
| 12 | python-simplejson \ | ||
| 13 | " | ||
| 14 | |||
| 15 | PR = "r0" | ||
| 16 | |||
| 17 | SRC_URI = "git://github.com/openstack/python-ceilometerclient.git;branch=master" | ||
| 18 | |||
| 19 | PV="git${SRCPV}" | ||
| 20 | SRCREV="067b76d9a821c3acb60d93787396d25b729a7421" | ||
| 21 | S = "${WORKDIR}/git" | ||
| 22 | |||
| 23 | inherit setuptools | ||
