summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-oauthlib_0.7.2.bb
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2015-03-09 10:57:26 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2015-03-09 10:57:26 -0400
commitff75c955954b32c1aa6fa301303e9df5ef53078e (patch)
tree85a2d2deeb12b289d4c729c4f5985fb72795fffd /meta-openstack/recipes-devtools/python/python-oauthlib_0.7.2.bb
parent1bd3d61e2c24a8f404ee41fb291c401a9fc9c937 (diff)
downloadmeta-cloud-services-ff75c955954b32c1aa6fa301303e9df5ef53078e.tar.gz
support libs: round2 refresh
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-oauthlib_0.7.2.bb')
-rw-r--r--meta-openstack/recipes-devtools/python/python-oauthlib_0.7.2.bb35
1 files changed, 35 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-oauthlib_0.7.2.bb b/meta-openstack/recipes-devtools/python/python-oauthlib_0.7.2.bb
new file mode 100644
index 0000000..01c2ac2
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-oauthlib_0.7.2.bb
@@ -0,0 +1,35 @@
1DESCRIPTION = "A generic, spec-compliant, thorough implementation of the OAuth request-signing logic"
2HOMEPAGE = "https://github.com/idan/oauthlib"
3SECTION = "devel/python"
4LICENSE = "Apache-2"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=5ba9ce41463615e082609806255bce1b"
6
7PR = "r1"
8
9SRCNAME = "oauthlib"
10SRC_URI = "http://pypi.python.org/packages/source/o/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
11
12SRC_URI[md5sum] = "eb60abdb002b9c08d248707b79a1cc92"
13SRC_URI[sha256sum] = "a051f04ee8ec3305055ab34d87b36c9a449375e07c7d6a05bcafa48329cac7c3"
14
15S = "${WORKDIR}/${SRCNAME}-${PV}"
16
17inherit setuptools
18
19# DEPENDS_default: python-pip
20
21DEPENDS += " \
22 python-pip \
23 "
24
25# RDEPENDS_default:
26RDEPENDS_${PN} += " \
27 "
28
29do_install_append() {
30 perm_files=`find "${D}${PYTHON_SITEPACKAGES_DIR}/" -name "top_level.txt"`
31 for f in $perm_files; do
32 chmod 644 "${f}"
33 done
34}
35