diff options
author | Mikle Kolyada <zlogene@gentoo.org> | 2020-09-12 14:19:18 +0300 |
---|---|---|
committer | Mikle Kolyada <zlogene@gentoo.org> | 2020-09-12 14:19:18 +0300 |
commit | 2d81dd59208f5d4c962def13a13bc31cbae41775 (patch) | |
tree | 46bb3589f7ff56e5900ac4f0f60c401f0e7666e1 | |
parent | x11-wm/qtile: Stabilize 0.15.1 amd64, #733616 (diff) | |
download | gentoo-2d81dd59.tar.gz gentoo-2d81dd59.tar.bz2 gentoo-2d81dd59.zip |
x11-wm/qtile: Drop live ebuild
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
-rw-r--r-- | x11-wm/qtile/qtile-9999.ebuild | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/x11-wm/qtile/qtile-9999.ebuild b/x11-wm/qtile/qtile-9999.ebuild deleted file mode 100644 index 1115fc9d170d..000000000000 --- a/x11-wm/qtile/qtile-9999.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8} ) - -inherit distutils-r1 virtualx - -if [[ ${PV} == 9999* ]] ; then - EGIT_REPO_URI="https://github.com/qtile/qtile.git" - inherit git-r3 -else - SRC_URI="https://github.com/qtile/qtile/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -DESCRIPTION="A full-featured, hackable tiling window manager written in Python" -HOMEPAGE="http://qtile.org/" - -LICENSE="MIT" -SLOT="0" -IUSE="test" -# docs require sphinxcontrib-blockdiag and sphinxcontrib-seqdiag - -RDEPEND=" - x11-libs/cairo[X,xcb(+)] - x11-libs/pango - dev-python/setuptools[${PYTHON_USEDEP}] - >=dev-python/cairocffi-0.9.0[${PYTHON_USEDEP}] - >=dev-python/cffi-1.1.0[${PYTHON_USEDEP}] - >=dev-python/six-1.4.1[${PYTHON_USEDEP}] - >=dev-python/xcffib-0.8.1[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/xvfbwrapper[${PYTHON_USEDEP}] - x11-base/xorg-server[xephyr] - x11-apps/xeyes - x11-apps/xcalc - x11-apps/xclock - ) -" - -# display retry backoff slowness and failures -RESTRICT="test" - -PATCHES=( "${FILESDIR}"/${PN}-0.12.0-tests.patch ) - -python_test() { - # force usage of built module - rm -rf "${S}"/libqtile || die - PYTHONPATH="${BUILD_DIR}/lib" py.test -v "${S}"/test || die "tests failed under ${EPYTHON}" -} - -python_install_all() { - local DOCS=( CHANGELOG README.rst ) - distutils-r1_python_install_all - - insinto /usr/share/xsessions - doins resources/qtile.desktop - - exeinto /etc/X11/Sessions - newexe "${FILESDIR}"/${PN}-session ${PN} -} |