diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-03-09 21:25:55 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-03-09 21:25:55 +0000 |
commit | cdc4ad00daed0aabf49d51899dedfc82632983a1 (patch) | |
tree | c979b3c86f7c4fc38d052cd33fba359f66682abd | |
parent | Add dev-python/pyudev to python herd. Describe "pygobject", "pyqt4" and "pysi... (diff) | |
download | gentoo-2-cdc4ad00daed0aabf49d51899dedfc82632983a1.tar.gz gentoo-2-cdc4ad00daed0aabf49d51899dedfc82632983a1.tar.bz2 gentoo-2-cdc4ad00daed0aabf49d51899dedfc82632983a1.zip |
Version bump (bug #347297).
(Portage version: 2.2.0_alpha26_p10/cvs/Linux x86_64)
-rw-r--r-- | dev-python/pyudev/ChangeLog | 10 | ||||
-rw-r--r-- | dev-python/pyudev/pyudev-0.9.ebuild | 46 |
2 files changed, 54 insertions, 2 deletions
diff --git a/dev-python/pyudev/ChangeLog b/dev-python/pyudev/ChangeLog index b0574627c66f..355d5b7c03f0 100644 --- a/dev-python/pyudev/ChangeLog +++ b/dev-python/pyudev/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/pyudev -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyudev/ChangeLog,v 1.1 2010/07/25 00:52:59 sbriesen Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyudev/ChangeLog,v 1.2 2011/03/09 21:25:55 arfrever Exp $ + +*pyudev-0.9 (09 Mar 2011) + + 09 Mar 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +pyudev-0.9.ebuild: + Version bump (bug #347297). *pyudev-0.2 (25 Jul 2010) diff --git a/dev-python/pyudev/pyudev-0.9.ebuild b/dev-python/pyudev/pyudev-0.9.ebuild new file mode 100644 index 000000000000..d82d37db7df4 --- /dev/null +++ b/dev-python/pyudev/pyudev-0.9.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyudev/pyudev-0.9.ebuild,v 1.1 2011/03/09 21:25:55 arfrever Exp $ + +EAPI="3" +PYTHON_DEPEND="*:2.6" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="2.[45] *-jython" +DISTUTILS_SRC_TEST="py.test" + +inherit distutils + +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="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="pygobject pyqt4 pyside" + +RDEPEND=">=sys-fs/udev-151 + pygobject? ( dev-python/pygobject ) + pyqt4? ( dev-python/PyQt4 ) + pyside? ( dev-python/pyside )" +DEPEND="${RDEPEND} + dev-python/setuptools" + +DOCS="CHANGES.rst README.rst" + +src_prepare() { + distutils_src_prepare + + if ! use pygobject; then + rm -f pyudev/glib.py + fi + if ! use pyqt4; then + rm -f pyudev/pyqt4.py + fi + if ! use pyside; then + rm -f pyudev/pyside.py + fi + if ! use pyqt4 && ! use pyside; then + rm -f pyudev/_qt_base.py + fi +} |