diff options
author | Sujith H <Sujith_Haridasan@mentor.com> | 2014-08-22 11:55:05 +0530 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-08-23 13:20:54 +0200 |
commit | faf83c51dd4e79419e5dd1abfba96c26a09ac982 (patch) | |
tree | a245d3bf053450fae0efc2a908072701f123cd63 | |
parent | 78038840cccee0464e4d84ba8cfc4d3cec9e369d (diff) | |
download | meta-openembedded-faf83c51dd4e79419e5dd1abfba96c26a09ac982.tar.gz |
python-pyparted: Add recipe
This recipe will provide a set of Python modules that
provide Python programmers an interface to libparted,
the GNU parted library for disk partitioning and filesystem
manipulation.
Signed-off-by: Christopher Larson <chris_larson@mentor.com>
Signed-off-by: Sujith H <Sujith_Haridasan@mentor.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-python/recipes-extended/python-pyparted/python-pyparted_3.9.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta-python/recipes-extended/python-pyparted/python-pyparted_3.9.bb b/meta-python/recipes-extended/python-pyparted/python-pyparted_3.9.bb new file mode 100644 index 000000000..919b301db --- /dev/null +++ b/meta-python/recipes-extended/python-pyparted/python-pyparted_3.9.bb | |||
@@ -0,0 +1,21 @@ | |||
1 | DESCRIPTION = "pyparted is a set of Python modules that provide Python programmers \ | ||
2 | an interface to libparted, the GNU parted library for disk partitioning and \ | ||
3 | filesystem manipulation." | ||
4 | SUMMARY = "Python bindings for libparted" | ||
5 | HOMEPAGE = "https://fedorahosted.org/pyparted/" | ||
6 | LICENSE = "GPL-2.0+" | ||
7 | LIC_FILES_CHKSUM = "\ | ||
8 | file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b \ | ||
9 | file://src/_pedmodule.c;startline=10;endline=22;md5=70c62bd73782a03f56a0571a9f08ea46 \ | ||
10 | " | ||
11 | DEPENDS += "parted" | ||
12 | |||
13 | SRC_URI = "https://fedorahosted.org/releases/p/y/pyparted/pyparted-${PV}.tar.gz" | ||
14 | SRC_URI[md5sum] = "f16c7ef7f5fa4a43fcb2a4654b487e39" | ||
15 | SRC_URI[sha256sum] = "a56712e3d058ce3d859c158236dbbf45224018919efd3d880ea80f9e0d0bebbb" | ||
16 | S = "${WORKDIR}/pyparted-${PV}" | ||
17 | |||
18 | inherit distutils | ||
19 | |||
20 | RDEPENDS_${PN} += "python-stringold python-codecs python-math" | ||
21 | BBCLASSEXTEND += "native" | ||