diff options
author | Mart Raudsepp <leio@gentoo.org> | 2017-05-28 18:15:02 +0300 |
---|---|---|
committer | Mart Raudsepp <leio@gentoo.org> | 2017-05-28 18:24:07 +0300 |
commit | ee467530004dde053a8c7eac249eb4fc4a87457a (patch) | |
tree | c89959118239b8c2eb2c6db87bd09b8cc3b845b2 /dev-python/dbusmock/dbusmock-0.16.7.ebuild | |
parent | gnome-base/gnome-settings-daemon-3.24: some dependency fixes, disable failing... (diff) | |
download | gentoo-ee467530004dde053a8c7eac249eb4fc4a87457a.tar.gz gentoo-ee467530004dde053a8c7eac249eb4fc4a87457a.tar.bz2 gentoo-ee467530004dde053a8c7eac249eb4fc4a87457a.zip |
dev-python/dbusmock: New package for easily running tests by D-Bus requiring software
Needed by gnome-settings-daemon power plugin tests
Diffstat (limited to 'dev-python/dbusmock/dbusmock-0.16.7.ebuild')
-rw-r--r-- | dev-python/dbusmock/dbusmock-0.16.7.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/dev-python/dbusmock/dbusmock-0.16.7.ebuild b/dev-python/dbusmock/dbusmock-0.16.7.ebuild new file mode 100644 index 000000000000..7eebfd8ebe4f --- /dev/null +++ b/dev-python/dbusmock/dbusmock-0.16.7.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) +PYTHON_REQ_USE="xml(+)" + +inherit distutils-r1 + +MY_PN="python-${PN}" +MY_P="${MY_PN}-${PV}" +S="${WORKDIR}/${MY_P}" + +DESCRIPTION="Easily create mock objects on D-Bus for software testing" +HOMEPAGE="https://github.com/martinpitt/python-dbusmock" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-3+" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +RDEPEND=" + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + >=dev-python/setuptools-17.1[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + )" + +PATCHES=( + "${FILESDIR}"/${PV}-disable-pyflakes-test.patch +) + +python_test() { + nosetests --verbose || die "tests fail under ${EPYTHON}" +} + +python_install_all() { + local DOCS=( NEWS README.rst ) + + distutils-r1_python_install_all +} |