Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/qtile/
Date: Sat, 12 Sep 2020 11:19:35
Message-Id: 1599909558.2d81dd59208f5d4c962def13a13bc31cbae41775.zlogene@gentoo
1 commit: 2d81dd59208f5d4c962def13a13bc31cbae41775
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 12 11:19:18 2020 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 12 11:19:18 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d81dd59
7
8 x11-wm/qtile: Drop live ebuild
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
12
13 x11-wm/qtile/qtile-9999.ebuild | 66 ------------------------------------------
14 1 file changed, 66 deletions(-)
15
16 diff --git a/x11-wm/qtile/qtile-9999.ebuild b/x11-wm/qtile/qtile-9999.ebuild
17 deleted file mode 100644
18 index 1115fc9d170..00000000000
19 --- a/x11-wm/qtile/qtile-9999.ebuild
20 +++ /dev/null
21 @@ -1,66 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -PYTHON_COMPAT=( python3_{7,8} )
28 -
29 -inherit distutils-r1 virtualx
30 -
31 -if [[ ${PV} == 9999* ]] ; then
32 - EGIT_REPO_URI="https://github.com/qtile/qtile.git"
33 - inherit git-r3
34 -else
35 - SRC_URI="https://github.com/qtile/qtile/archive/v${PV}.tar.gz -> ${P}.tar.gz"
36 - KEYWORDS="~amd64 ~x86"
37 -fi
38 -
39 -DESCRIPTION="A full-featured, hackable tiling window manager written in Python"
40 -HOMEPAGE="http://qtile.org/"
41 -
42 -LICENSE="MIT"
43 -SLOT="0"
44 -IUSE="test"
45 -# docs require sphinxcontrib-blockdiag and sphinxcontrib-seqdiag
46 -
47 -RDEPEND="
48 - x11-libs/cairo[X,xcb(+)]
49 - x11-libs/pango
50 - dev-python/setuptools[${PYTHON_USEDEP}]
51 - >=dev-python/cairocffi-0.9.0[${PYTHON_USEDEP}]
52 - >=dev-python/cffi-1.1.0[${PYTHON_USEDEP}]
53 - >=dev-python/six-1.4.1[${PYTHON_USEDEP}]
54 - >=dev-python/xcffib-0.8.1[${PYTHON_USEDEP}]
55 -"
56 -BDEPEND="
57 - test? (
58 - dev-python/pytest[${PYTHON_USEDEP}]
59 - dev-python/xvfbwrapper[${PYTHON_USEDEP}]
60 - x11-base/xorg-server[xephyr]
61 - x11-apps/xeyes
62 - x11-apps/xcalc
63 - x11-apps/xclock
64 - )
65 -"
66 -
67 -# display retry backoff slowness and failures
68 -RESTRICT="test"
69 -
70 -PATCHES=( "${FILESDIR}"/${PN}-0.12.0-tests.patch )
71 -
72 -python_test() {
73 - # force usage of built module
74 - rm -rf "${S}"/libqtile || die
75 - PYTHONPATH="${BUILD_DIR}/lib" py.test -v "${S}"/test || die "tests failed under ${EPYTHON}"
76 -}
77 -
78 -python_install_all() {
79 - local DOCS=( CHANGELOG README.rst )
80 - distutils-r1_python_install_all
81 -
82 - insinto /usr/share/xsessions
83 - doins resources/qtile.desktop
84 -
85 - exeinto /etc/X11/Sessions
86 - newexe "${FILESDIR}"/${PN}-session ${PN}
87 -}