diff options
author | 2015-12-08 18:33:13 +0100 | |
---|---|---|
committer | 2015-12-11 12:11:28 -0500 | |
commit | 459f4daee834cd564096077a63631596f9020dee (patch) | |
tree | 0b50fed14ace9c4433bbb14c81ac983e043eb1d9 | |
parent | 136d8fdd392cb7d61de4cc2152298923a190beb0 (diff) | |
download | meta-cloud-services-459f4daee834cd564096077a63631596f9020dee.tar.gz meta-cloud-services-459f4daee834cd564096077a63631596f9020dee.tar.bz2 meta-cloud-services-459f4daee834cd564096077a63631596f9020dee.zip |
python-pathlib: add new recipe
It's required by python-django-pyscss.
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-pathlib_1.0.1.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-pathlib_1.0.1.bb b/meta-openstack/recipes-devtools/python/python-pathlib_1.0.1.bb new file mode 100644 index 00000000..ae26da17 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-pathlib_1.0.1.bb @@ -0,0 +1,29 @@ +SUMMARY = "Object-oriented filesystem paths" +DESCRIPTION = "pathlib offers a set of classes to handle filesystem paths. \ +It offers the following advantages over using string objects: \ +- No more cumbersome use of os and os.path functions. \ +- Embodies the semantics of different path types. \ +- Well-defined semantics, eliminating any warts or ambiguities. \ +" +HOMEPAGE = "https://pypi.python.org/pypi/pathlib" +SECTION = "devel/python" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3b6557c860f0fc867aeab30afd649753" + + +SRCNAME = "pathlib" +SRC_URI = "http://pypi.python.org/packages/source/p/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" + +SRC_URI[md5sum] = "5099ed48be9b1ee29b31c82819240537" +SRC_URI[sha256sum] = "6940718dfc3eff4258203ad5021090933e5c04707d5ca8cc9e73c94a7894ea9f" + +S = "${WORKDIR}/${SRCNAME}-${PV}" + +inherit setuptools + +DEPENDS += " \ + python-pip \ +" + +RDEPENDS_${PN} += " \ +" |