summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-httplib2_0.9.1.bb
diff options
context:
space:
mode:
authorHuang Qiyu <huangqy.fnst@cn.fujitsu.com>2017-01-23 13:22:48 +0800
committerBruce Ashfield <bruce.ashfield@windriver.com>2017-01-25 14:30:00 -0500
commit337a2d8c7d795e3a12b4c1bbd1f3b790fcaf2e4c (patch)
treebaf67236680df01f770ab761aa07c045bf91ee3f /meta-openstack/recipes-devtools/python/python-httplib2_0.9.1.bb
parent2035ed7e30c7b9e10b08f2589b368f938496a4d3 (diff)
downloadmeta-cloud-services-337a2d8c7d795e3a12b4c1bbd1f3b790fcaf2e4c.tar.gz
python-httplib2: 0.9.1 -> 0.9.2
1) Upgrade python-httplib2 from 0.9.1 to 0.9.2. 2) License checksum changed,since the version was updated. Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-httplib2_0.9.1.bb')
-rw-r--r--meta-openstack/recipes-devtools/python/python-httplib2_0.9.1.bb23
1 files changed, 0 insertions, 23 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-httplib2_0.9.1.bb b/meta-openstack/recipes-devtools/python/python-httplib2_0.9.1.bb
deleted file mode 100644
index d49361b..0000000
--- a/meta-openstack/recipes-devtools/python/python-httplib2_0.9.1.bb
+++ /dev/null
@@ -1,23 +0,0 @@
1DESCRIPTION = "A comprehensive HTTP client library"
2HOMEPAGE = "https://code.google.com/p/httplib2/"
3SECTION = "devel/python"
4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://PKG-INFO;md5=6010ef08fe55505a5e11ad1f1fb90fb8"
6
7SRCNAME = "httplib2"
8
9SRC_URI = "https://pypi.python.org/packages/source/h/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
10
11SRC_URI[md5sum] = "c49590437e4c5729505d034cd34a8528"
12SRC_URI[sha256sum] = "bc6339919a5235b9d1aaee011ca5464184098f0c47c9098001f91c97176583f5"
13
14S = "${WORKDIR}/${SRCNAME}-${PV}"
15
16inherit setuptools
17
18do_install_append() {
19 perm_files=`find "${D}${PYTHON_SITEPACKAGES_DIR}/" -name "top_level.txt"`
20 for f in $perm_files; do
21 chmod 644 "${f}"
22 done
23}