Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
patrick 12/03/09 09:18:26
Modified: ChangeLog
Added: pyudev-0.15.ebuild
Log:
Bump
(Portage version: 2.2.0_alpha90/cvs/Linux x86_64)
Revision Changes Path
1.12 dev-python/pyudev/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyudev/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyudev/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyudev/ChangeLog?r1=1.11&r2=1.12
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyudev/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog 12 Feb 2012 20:00:12 -0000 1.11
+++ ChangeLog 9 Mar 2012 09:18:26 -0000 1.12
@@ -1,6 +1,11 @@
# ChangeLog for dev-python/pyudev
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyudev/ChangeLog,v 1.11 2012/02/12 20:00:12 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyudev/ChangeLog,v 1.12 2012/03/09 09:18:26 patrick Exp $
+
+*pyudev-0.15 (09 Mar 2012)
+
+ 09 Mar 2012; Patrick Lauer <patrick@g.o> +pyudev-0.15.ebuild:
+ Bump
12 Feb 2012; Mike Gilbert <floppym@g.o> pyudev-0.11.ebuild,
pyudev-0.12.ebuild, pyudev-0.13.ebuild:
1.1 dev-python/pyudev/pyudev-0.15.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyudev/pyudev-0.15.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyudev/pyudev-0.15.ebuild?rev=1.1&content-type=text/plain
Index: pyudev-0.15.ebuild
===================================================================
# 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.1 2012/03/09 09:18:26 patrick 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
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 )"
DOCS="CHANGES.rst README.rst"
src_prepare() {
distutils_src_prepare
# 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
}
|
|