diff options
author | Michael Lippautz <michael.lippautz@gmail.com> | 2011-07-05 20:31:55 +0200 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-07-09 11:35:36 +0200 |
commit | 32626159e648e7b0b7ab9956c2fc8b91bb1e645c (patch) | |
tree | ab5cfc020c95bc8c0bf67923c0d0c9d78161c150 /meta-oe/recipes-devtools/python | |
parent | b77b973a58d1edd6d077013f6e71268b2e9294f2 (diff) | |
download | meta-openembedded-32626159e648e7b0b7ab9956c2fc8b91bb1e645c.tar.gz |
python-pyudev: Add version 0.11 (initial recipe)
Signed-off-by: Michael Lippautz <michael.lippautz@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/python')
-rw-r--r-- | meta-oe/recipes-devtools/python/python-pyudev_0.11.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/python/python-pyudev_0.11.bb b/meta-oe/recipes-devtools/python/python-pyudev_0.11.bb new file mode 100644 index 000000000..03a948a61 --- /dev/null +++ b/meta-oe/recipes-devtools/python/python-pyudev_0.11.bb | |||
@@ -0,0 +1,22 @@ | |||
1 | DESCRIPTION = "A libudev binding" | ||
2 | HOMEPAGE = "http://pypi.python.org/pypi/pyudev" | ||
3 | SECTION = "devel/python" | ||
4 | LICENSE = "GPLv2" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343" | ||
6 | PR = "r0" | ||
7 | |||
8 | SRCNAME = "pyudev" | ||
9 | SRC_URI = "http://pypi.python.org/packages/source/p/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" | ||
10 | SRC_URI[md5sum] = "dca4e69da387f9a6683ee4b5c27ca66a" | ||
11 | SRC_URI[sha256sum] = "0acfa500219f4bcf711f35c1b2041d035b4bf5f302eca5038572ee788d9e584a" | ||
12 | |||
13 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
14 | |||
15 | inherit setuptools | ||
16 | |||
17 | RDEPENDS_${PN} = "\ | ||
18 | python-ctypes \ | ||
19 | python-subprocess \ | ||
20 | python-misc \ | ||
21 | libudev \ | ||
22 | " | ||