From: Sujith H Date: Fri, 22 Aug 2014 06:25:05 +0000 (+0530) Subject: python-pyparted: Add recipe X-Git-Tag: rev_ivi_2015_02_04~1475 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7436b0804d5e0dddeea0ef076362269c878a6963;p=scm%2Fbb%2Ftizen-distro.git 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. (From meta-openembedded rev: faf83c51dd4e79419e5dd1abfba96c26a09ac982) Signed-off-by: Christopher Larson Signed-off-by: Sujith H Signed-off-by: Martin Jansa Signed-off-by: Patrick Ohly --- diff --git a/meta-openembedded/meta-python/recipes-extended/python-pyparted/python-pyparted_3.9.bb b/meta-openembedded/meta-python/recipes-extended/python-pyparted/python-pyparted_3.9.bb new file mode 100644 index 0000000..919b301 --- /dev/null +++ b/meta-openembedded/meta-python/recipes-extended/python-pyparted/python-pyparted_3.9.bb @@ -0,0 +1,21 @@ +DESCRIPTION = "pyparted is a set of Python modules that provide Python programmers \ +an interface to libparted, the GNU parted library for disk partitioning and \ +filesystem manipulation." +SUMMARY = "Python bindings for libparted" +HOMEPAGE = "https://fedorahosted.org/pyparted/" +LICENSE = "GPL-2.0+" +LIC_FILES_CHKSUM = "\ + file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b \ + file://src/_pedmodule.c;startline=10;endline=22;md5=70c62bd73782a03f56a0571a9f08ea46 \ +" +DEPENDS += "parted" + +SRC_URI = "https://fedorahosted.org/releases/p/y/pyparted/pyparted-${PV}.tar.gz" +SRC_URI[md5sum] = "f16c7ef7f5fa4a43fcb2a4654b487e39" +SRC_URI[sha256sum] = "a56712e3d058ce3d859c158236dbbf45224018919efd3d880ea80f9e0d0bebbb" +S = "${WORKDIR}/pyparted-${PV}" + +inherit distutils + +RDEPENDS_${PN} += "python-stringold python-codecs python-math" +BBCLASSEXTEND += "native"