diff options
Diffstat (limited to 'dev-python/pyudev/pyudev-0.15.ebuild')
-rw-r--r-- | dev-python/pyudev/pyudev-0.15.ebuild | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/dev-python/pyudev/pyudev-0.15.ebuild b/dev-python/pyudev/pyudev-0.15.ebuild deleted file mode 100644 index 26fc17d..0000000 --- a/dev-python/pyudev/pyudev-0.15.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# 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 -} |