diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2017-03-10 13:23:48 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-11 16:09:14 +0000 |
commit | 647dd10215546c0f1bda2de1ee68e3f5bba07377 (patch) | |
tree | 4d894a1cf02e011345c050c435314e7ae26aacb4 /meta | |
parent | 63904f6d11e58148a372d964d77a5bb6fbfd6fce (diff) | |
download | poky-647dd10215546c0f1bda2de1ee68e3f5bba07377.tar.gz |
python-iniparse: add a recipe
python-iniparse is required by dnf.
(From OE-Core rev: 6c6f1b318005f4f2e21027b308ab6cb89aefdd19)
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/python/python-iniparse_0.4.bb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python-iniparse_0.4.bb b/meta/recipes-devtools/python/python-iniparse_0.4.bb new file mode 100644 index 0000000000..f2515759b1 --- /dev/null +++ b/meta/recipes-devtools/python/python-iniparse_0.4.bb | |||
@@ -0,0 +1,17 @@ | |||
1 | SUMMARY = "Accessing and Modifying INI files" | ||
2 | HOMEPAGE = "https://pypi.python.org/pypi/iniparse/" | ||
3 | LICENSE = "MIT & PSF" | ||
4 | LIC_FILES_CHKSUM = "file://LICENSE-PSF;md5=1c78a5bb3584b353496d5f6f34edb4b2 \ | ||
5 | file://LICENSE;md5=52f28065af11d69382693b45b5a8eb54" | ||
6 | |||
7 | SRC_URI = "https://files.pythonhosted.org/packages/source/i/iniparse/iniparse-${PV}.tar.gz" | ||
8 | SRC_URI[md5sum] = "5e573e9e9733d97623881ce9bbe5eca6" | ||
9 | SRC_URI[sha256sum] = "abc1ee12d2cfb2506109072d6c21e40b6c75a3fe90a9c924327d80bc0d99c054" | ||
10 | |||
11 | inherit distutils | ||
12 | |||
13 | RDEPENDS_${PN} += "python-core" | ||
14 | |||
15 | BBCLASSEXTEND = "native" | ||
16 | |||
17 | S = "${WORKDIR}/iniparse-${PV}" | ||