diff options
| author | Vu Tran <vu.tran@windriver.com> | 2014-06-20 09:25:27 -0400 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-06-23 15:54:54 -0400 |
| commit | 4e538f21389aada4b51f90f8235af605a0779aa4 (patch) | |
| tree | 57d788120f221a3cda54a4b23fbf6c643f4b4a83 /meta-openstack/recipes-devtools/python/python-pecan_0.5.0.bb | |
| parent | 12d1a1749933ce0bfe0fff8f4856e3eaa5003c68 (diff) | |
| download | meta-cloud-services-4e538f21389aada4b51f90f8235af605a0779aa4.tar.gz | |
add python-pecan 0.5.0 bb file
One of the ceilometer builtin test
ceilometer.tests.api.v2.test_list_events_scenarios.TestListEvents.test_all_trailing_slash
failed as it tries to test with trailing slash.
The root cause is in pecan package, and the following two upstream
commits fix the issue:
Upstream 0e18b1f7d490695f4988d92c83bf239cf2937bf6 from
https://github.com/stackforge/pecan.git branch master
Upstream 573846e01209327030db146909de03e97cd8a858 from
https://github.com/stackforge/pecan.git branch master
Instead of back porting these commits, it's better to uprev
python-pecan to 0.5.0 version which also contains these commits.
Also remove meta-openstack/recipes-devtools/python/python-pecan_0.4.2.bb
Signed-off-by: Vu Tran <vu.tran@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-pecan_0.5.0.bb')
| -rw-r--r-- | meta-openstack/recipes-devtools/python/python-pecan_0.5.0.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-pecan_0.5.0.bb b/meta-openstack/recipes-devtools/python/python-pecan_0.5.0.bb new file mode 100644 index 0000000..ea546f8 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-pecan_0.5.0.bb | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | DESCRIPTION = "WSGI object-dispatching web framework" | ||
| 2 | HOMEPAGE = "https://pypi.python.org/pypi/pecan/" | ||
| 3 | SECTION = "devel/python" | ||
| 4 | LICENSE = "BSD" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=d846877d24bbb3d7a00a985c90378e8c" | ||
| 6 | |||
| 7 | PR = "r0" | ||
| 8 | SRCNAME = "pecan" | ||
| 9 | |||
| 10 | SRC_URI = "https://pypi.python.org/packages/source/p/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \ | ||
| 11 | " | ||
| 12 | |||
| 13 | SRC_URI[md5sum] = "819ea890e8a0412717b8aa791595725f" | ||
| 14 | SRC_URI[sha256sum] = "726d000cc2b5078de560a9a69e29637c59fc93b6707b292a56bdb0a466555922" | ||
| 15 | |||
| 16 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
| 17 | |||
| 18 | inherit setuptools | ||
| 19 | |||
| 20 | RDEPENDS_${PN} = "python-webob \ | ||
| 21 | python-mako \ | ||
| 22 | python-webtest \ | ||
| 23 | python-six \ | ||
| 24 | python-logutils \ | ||
| 25 | " | ||
