blob: 26fc17d31c60919cde0a2d2c9316a26fd1fff77c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyudev/pyudev-0.15.ebuild,v 1.3 2012/04/29 14:52:19 maekke Exp $
EAPI="4"
PYTHON_DEPEND="*:2.6"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.[45] *-jython"
DISTUTILS_SRC_TEST="py.test" # FIXME: some tests are known to fail
inherit distutils eutils
DESCRIPTION="Python binding to libudev"
HOMEPAGE="http://packages.python.org/pyudev/ http://pypi.python.org/pypi/pyudev"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="pygobject pyqt4 pyside"
RDEPEND=">=sys-fs/udev-151
pygobject? ( dev-python/pygobject:2 )
pyqt4? ( dev-python/PyQt4 )
pyside? ( dev-python/pyside )"
DEPEND="${RDEPEND}
dev-python/setuptools
test? ( dev-python/mock
dev-cpp/gccxml )"
DOCS="CHANGES.rst README.rst"
src_prepare() {
distutils_src_prepare
epatch "${FILESDIR}"/${PN}_wrapped_test.patch
# tests: fix run_path
sed -i -e "s|== \('/run/udev'\)|in (\1,'/dev/.udev')|g" tests/test_core.py
if ! use pygobject; then
rm -f pyudev/glib.py
sed -i -e "s|[, ]*GlibBinding()||g" tests/test_observer.py
fi
if ! use pyqt4; then
rm -f pyudev/pyqt4.py
sed -i -e "s|Qt4Binding('PyQt4')[, ]*||g" tests/test_observer.py
fi
if ! use pyside; then
rm -f pyudev/pyside.py
sed -i -e "s|Qt4Binding('PySide')[, ]*||g" tests/test_observer.py
fi
if ! use pyqt4 && ! use pyside; then
rm -f pyudev/_qt_base.py
fi
if ! use pyqt4 && ! use pyside && ! use pygobject; then
rm -f tests/test_observer.py
fi
}
|