diff options
author | 2014-06-20 09:25:27 -0400 | |
---|---|---|
committer | 2014-06-23 15:55:46 -0400 | |
commit | 086c7e200f44ddd08020f2e6a6af70ef075d11c1 (patch) | |
tree | f3c319e42bc8cd0f0b4f4a0bcadad80da33561d3 /meta-openstack | |
parent | 151af59e64caf7ad0a94a3fe5df3a32f3b2da220 (diff) | |
download | meta-cloud-services-086c7e200f44ddd08020f2e6a6af70ef075d11c1.tar.gz meta-cloud-services-086c7e200f44ddd08020f2e6a6af70ef075d11c1.tar.bz2 meta-cloud-services-086c7e200f44ddd08020f2e6a6af70ef075d11c1.zip |
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')
-rw-r--r-- | meta-openstack/recipes-devtools/python/python-pecan_0.4.2.bb | 17 | ||||
-rw-r--r-- | meta-openstack/recipes-devtools/python/python-pecan_0.5.0.bb | 25 |
2 files changed, 25 insertions, 17 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-pecan_0.4.2.bb b/meta-openstack/recipes-devtools/python/python-pecan_0.4.2.bb deleted file mode 100644 index 9af3c0a2..00000000 --- a/meta-openstack/recipes-devtools/python/python-pecan_0.4.2.bb +++ /dev/null @@ -1,17 +0,0 @@ -DESCRIPTION = "WSGI object-dispatching web framework" -HOMEPAGE = "https://pypi.python.org/pypi/pecan/" -SECTION = "devel/python" -LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://LICENSE;md5=d846877d24bbb3d7a00a985c90378e8c" - -PR = "r0" -SRCNAME = "pecan" - -SRC_URI = "https://pypi.python.org/packages/source/p/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" - -SRC_URI[md5sum] = "2321ce0eb09ab4ba4cf184b55a6e3c21" -SRC_URI[sha256sum] = "72aea7ffe4085944beec4134ad8bff31fcea13cf900f11e9b31f7470863916f8" - -S = "${WORKDIR}/${SRCNAME}-${PV}" - -inherit setuptools 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 00000000..ea546f86 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-pecan_0.5.0.bb @@ -0,0 +1,25 @@ +DESCRIPTION = "WSGI object-dispatching web framework" +HOMEPAGE = "https://pypi.python.org/pypi/pecan/" +SECTION = "devel/python" +LICENSE = "BSD" +LIC_FILES_CHKSUM = "file://LICENSE;md5=d846877d24bbb3d7a00a985c90378e8c" + +PR = "r0" +SRCNAME = "pecan" + +SRC_URI = "https://pypi.python.org/packages/source/p/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \ +" + +SRC_URI[md5sum] = "819ea890e8a0412717b8aa791595725f" +SRC_URI[sha256sum] = "726d000cc2b5078de560a9a69e29637c59fc93b6707b292a56bdb0a466555922" + +S = "${WORKDIR}/${SRCNAME}-${PV}" + +inherit setuptools + +RDEPENDS_${PN} = "python-webob \ + python-mako \ + python-webtest \ + python-six \ + python-logutils \ +" |