summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-pathlib_1.0.1.bb
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2015-05-13 16:51:09 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2015-05-13 16:51:09 -0400
commitab3432d7ff4ea9b7fd3dd4e04376d2b67e467eb6 (patch)
tree64737b24f22eb9e1eaaf2774f79b025a578be6ae /meta-openstack/recipes-devtools/python/python-pathlib_1.0.1.bb
parent183baafc12b846cb3dff19b380ad98c2c49fb671 (diff)
parentf7765042a4cdfb52f467869904ef92e644c4129d (diff)
downloadmeta-cloud-services-ab3432d7ff4ea9b7fd3dd4e04376d2b67e467eb6.tar.gz
Merge branch 'master' into kilo
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-pathlib_1.0.1.bb')
-rw-r--r--meta-openstack/recipes-devtools/python/python-pathlib_1.0.1.bb29
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 0000000..ae26da1
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-pathlib_1.0.1.bb
@@ -0,0 +1,29 @@
1SUMMARY = "Object-oriented filesystem paths"
2DESCRIPTION = "pathlib offers a set of classes to handle filesystem paths. \
3It offers the following advantages over using string objects: \
4- No more cumbersome use of os and os.path functions. \
5- Embodies the semantics of different path types. \
6- Well-defined semantics, eliminating any warts or ambiguities. \
7"
8HOMEPAGE = "https://pypi.python.org/pypi/pathlib"
9SECTION = "devel/python"
10LICENSE = "MIT"
11LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3b6557c860f0fc867aeab30afd649753"
12
13
14SRCNAME = "pathlib"
15SRC_URI = "http://pypi.python.org/packages/source/p/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
16
17SRC_URI[md5sum] = "5099ed48be9b1ee29b31c82819240537"
18SRC_URI[sha256sum] = "6940718dfc3eff4258203ad5021090933e5c04707d5ca8cc9e73c94a7894ea9f"
19
20S = "${WORKDIR}/${SRCNAME}-${PV}"
21
22inherit setuptools
23
24DEPENDS += " \
25 python-pip \
26"
27
28RDEPENDS_${PN} += " \
29"