diff options
author | 2015-12-08 18:33:18 +0100 | |
---|---|---|
committer | 2015-12-11 12:11:28 -0500 | |
commit | 6c62c2b8b39f3bef855b3e5c22736a0de21f96ca (patch) | |
tree | 7c283892d5f2d377677a39afb54cc6c50574b142 | |
parent | 000b16d16134a68326218bc7f6debd7cf3a56378 (diff) | |
download | meta-cloud-services-6c62c2b8b39f3bef855b3e5c22736a0de21f96ca.tar.gz meta-cloud-services-6c62c2b8b39f3bef855b3e5c22736a0de21f96ca.tar.bz2 meta-cloud-services-6c62c2b8b39f3bef855b3e5c22736a0de21f96ca.zip |
python-repoze.lru: add new recipe
It's required by python-routes.
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r-- | meta-openstack/recipes-devtools/python/python-repoze.lru_0.6.bb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-repoze.lru_0.6.bb b/meta-openstack/recipes-devtools/python/python-repoze.lru_0.6.bb new file mode 100644 index 00000000..60a749fd --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-repoze.lru_0.6.bb @@ -0,0 +1,20 @@ +SUMMARY = "A tiny LRU cache implementation and decorator" +DESCRIPTION = "repoze.lru is a LRU (least recently used) cache implementation. \ +Keys and values that are not used frequently will be evicted from the cache faster \ +than keys and values that are used frequently. \ +" +HOMEPAGE = "https://pypi.python.org/pypi/repoze.lru" +SECTION = "devel/python" +LICENSE = "BSD-derived" +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2c33cdbc6bc9ae6e5d64152fdb754292" + +SRCNAME = "repoze.lru" + +SRC_URI = "http://pypi.python.org/packages/source/r/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" + +SRC_URI[md5sum] = "2c3b64b17a8e18b405f55d46173e14dd" +SRC_URI[sha256sum] = "0f7a323bf716d3cb6cb3910cd4fccbee0b3d3793322738566ecce163b01bbd31" + +S = "${WORKDIR}/${SRCNAME}-${PV}" + +inherit setuptools |