summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVu Tran <vu.tran@windriver.com>2014-06-20 09:25:27 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2014-06-23 15:54:54 -0400
commit4e538f21389aada4b51f90f8235af605a0779aa4 (patch)
tree57d788120f221a3cda54a4b23fbf6c643f4b4a83
parent12d1a1749933ce0bfe0fff8f4856e3eaa5003c68 (diff)
downloadmeta-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>
-rw-r--r--meta-openstack/recipes-devtools/python/python-pecan_0.4.2.bb17
-rw-r--r--meta-openstack/recipes-devtools/python/python-pecan_0.5.0.bb25
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 9af3c0a..0000000
--- a/meta-openstack/recipes-devtools/python/python-pecan_0.4.2.bb
+++ /dev/null
@@ -1,17 +0,0 @@
1DESCRIPTION = "WSGI object-dispatching web framework"
2HOMEPAGE = "https://pypi.python.org/pypi/pecan/"
3SECTION = "devel/python"
4LICENSE = "Apache-2.0"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=d846877d24bbb3d7a00a985c90378e8c"
6
7PR = "r0"
8SRCNAME = "pecan"
9
10SRC_URI = "https://pypi.python.org/packages/source/p/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
11
12SRC_URI[md5sum] = "2321ce0eb09ab4ba4cf184b55a6e3c21"
13SRC_URI[sha256sum] = "72aea7ffe4085944beec4134ad8bff31fcea13cf900f11e9b31f7470863916f8"
14
15S = "${WORKDIR}/${SRCNAME}-${PV}"
16
17inherit 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 0000000..ea546f8
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-pecan_0.5.0.bb
@@ -0,0 +1,25 @@
1DESCRIPTION = "WSGI object-dispatching web framework"
2HOMEPAGE = "https://pypi.python.org/pypi/pecan/"
3SECTION = "devel/python"
4LICENSE = "BSD"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=d846877d24bbb3d7a00a985c90378e8c"
6
7PR = "r0"
8SRCNAME = "pecan"
9
10SRC_URI = "https://pypi.python.org/packages/source/p/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \
11"
12
13SRC_URI[md5sum] = "819ea890e8a0412717b8aa791595725f"
14SRC_URI[sha256sum] = "726d000cc2b5078de560a9a69e29637c59fc93b6707b292a56bdb0a466555922"
15
16S = "${WORKDIR}/${SRCNAME}-${PV}"
17
18inherit setuptools
19
20RDEPENDS_${PN} = "python-webob \
21 python-mako \
22 python-webtest \
23 python-six \
24 python-logutils \
25"