summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-memcached_git.bb
diff options
context:
space:
mode:
authorMark Asselstine <asselsm@gmail.com>2016-02-03 20:41:06 -0500
committerBruce Ashfield <bruce.ashfield@windriver.com>2016-02-05 14:42:17 -0500
commit3dd375570e0c1bc3a94d1d821946c511b17b1382 (patch)
tree02df0ad801228de173b3ca88ac5862c7e5d9d3f0 /meta-openstack/recipes-devtools/python/python-memcached_git.bb
parentac446f3bc8a6df622f3551952f055064847f6f0e (diff)
downloadmeta-cloud-services-3dd375570e0c1bc3a94d1d821946c511b17b1382.tar.gz
python-*: uprev to versions required for liberty
This is a collection of recipe uprevs that bring various packages up to the version required to support the liberty release. These uprevs are mostly trivial with the expected SRC_URI and CHECKSUM updates along with updates to the list of dependencies. Where possible recipes have been updated to use git to facilitate future uprevs. For python-futures we need to add a PREFERRED_VERSION to ensure the git version will take precedence over a versioned recipe found in another layer. Signed-off-by: Mark Asselstine <asselsm@gmail.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-memcached_git.bb')
-rw-r--r--meta-openstack/recipes-devtools/python/python-memcached_git.bb23
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-memcached_git.bb b/meta-openstack/recipes-devtools/python/python-memcached_git.bb
new file mode 100644
index 0000000..9237af3
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-memcached_git.bb
@@ -0,0 +1,23 @@
1SUMMARY = "Pure python memcached client"
2DESCRIPTION = "\
3 This software is a 100% Python interface to the memcached memory cache daemon. \
4 It is the client side software which allows storing values in one or more, possibly remote, \
5 memcached servers. Search google for memcached for more information."
6HOMEPAGE = "https://pypi.python.org/pypi/python-memcached/"
7SECTION = "devel/python"
8LICENSE = "PSF"
9LIC_FILES_CHKSUM = "file://PSF.LICENSE;md5=7dd786e8594f1e787da94a946557b40e"
10
11PV = "1.57+git${SRCPV}"
12SRCREV = "664bd3e23fe500fbde4c70636e2d24c8fd2f35af"
13
14SRC_URI = "git://github.com/linsomniac/${BPN}.git"
15
16S = "${WORKDIR}/git"
17
18inherit setuptools
19
20RDEPENDS_${PN} += " \
21 python-six \
22 "
23