Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/qtile/
Date: Sun, 17 Nov 2019 05:09:13
Message-Id: 1573967215.4df2345ce55e456a06e9be4e64f94e2f4e483c9d.radhermit@gentoo
1 commit: 4df2345ce55e456a06e9be4e64f94e2f4e483c9d
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 17 04:58:59 2019 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 17 05:06:55 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4df2345c
7
8 x11-wm/qtile: remove old
9
10 Signed-off-by: Tim Harder <radhermit <AT> gentoo.org>
11
12 x11-wm/qtile/Manifest | 1 -
13 x11-wm/qtile/qtile-0.13.0.ebuild | 67 ----------------------------------------
14 2 files changed, 68 deletions(-)
15
16 diff --git a/x11-wm/qtile/Manifest b/x11-wm/qtile/Manifest
17 index a014287b967..9d8a3cfa00e 100644
18 --- a/x11-wm/qtile/Manifest
19 +++ b/x11-wm/qtile/Manifest
20 @@ -1,2 +1 @@
21 -DIST qtile-0.13.0.tar.gz 468271 BLAKE2B e5e95b5bc56a06469e903f025946e6d0ea7b36501d017dd1470950c04a3ae1b35ec56b2a3c12f52daee75ae7b009c26285f49c0fa1ec5dda4993b2cf2da8a40c SHA512 06e6b32952c77c6b44872d5a52e0d196d5bb23c38da5d8acc2bba571f4d5fbadd8a7311f47e9301fb72a45c92b0255a90911edd12442392206da311fb7ada286
22 DIST qtile-0.14.2.tar.gz 492274 BLAKE2B b5418424a4cea6844d500ea00b4fa5c4b93d529503a3ece1f651c82cd1c63689d8ba95a706fd97e7d93cf823a6155196d724f18e47f9fe283e4df2586e55b56f SHA512 c6653e8dca24cef4b1cf48c26b2a0feb4bc125a1c966e0a3ea078fd1d1bba9c7306facf620438795aa2d2daecbd6e58bcda954753ab6b27f6c0cbead3766d8c0
23
24 diff --git a/x11-wm/qtile/qtile-0.13.0.ebuild b/x11-wm/qtile/qtile-0.13.0.ebuild
25 deleted file mode 100644
26 index 50512cc747c..00000000000
27 --- a/x11-wm/qtile/qtile-0.13.0.ebuild
28 +++ /dev/null
29 @@ -1,67 +0,0 @@
30 -# Copyright 1999-2019 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
35 -
36 -inherit distutils-r1 virtualx
37 -
38 -if [[ ${PV} == 9999* ]] ; then
39 - EGIT_REPO_URI="https://github.com/qtile/qtile.git"
40 - inherit git-r3
41 -else
42 - SRC_URI="https://github.com/qtile/qtile/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 - KEYWORDS="~amd64 ~x86"
44 -fi
45 -
46 -DESCRIPTION="A full-featured, hackable tiling window manager written in Python"
47 -HOMEPAGE="http://qtile.org/"
48 -
49 -LICENSE="MIT"
50 -SLOT="0"
51 -IUSE="test"
52 -# docs require sphinxcontrib-blockdiag and sphinxcontrib-seqdiag
53 -
54 -RDEPEND="
55 - x11-libs/cairo[xcb]
56 - x11-libs/pango
57 - dev-python/setuptools[${PYTHON_USEDEP}]
58 - >=dev-python/cairocffi-0.7[${PYTHON_USEDEP}]
59 - >=dev-python/cffi-1.1.0[${PYTHON_USEDEP}]
60 - >=dev-python/six-1.4.1[${PYTHON_USEDEP}]
61 - >=dev-python/xcffib-0.5.0[${PYTHON_USEDEP}]
62 - $(python_gen_cond_dep 'dev-python/trollius[${PYTHON_USEDEP}]' 'python2*')
63 -"
64 -DEPEND="${RDEPEND}
65 - test? (
66 - dev-python/pytest[${PYTHON_USEDEP}]
67 - dev-python/pytest-cov[${PYTHON_USEDEP}]
68 - dev-python/xvfbwrapper[${PYTHON_USEDEP}]
69 - x11-base/xorg-server[xephyr]
70 - x11-apps/xeyes
71 - x11-apps/xcalc
72 - x11-apps/xclock
73 - )
74 -"
75 -
76 -# display retry backoff slowness and failures
77 -RESTRICT="test"
78 -
79 -PATCHES=( "${FILESDIR}"/${PN}-0.12.0-tests.patch )
80 -
81 -python_test() {
82 - # force usage of built module
83 - rm -rf "${S}"/libqtile || die
84 - PYTHONPATH="${BUILD_DIR}/lib" py.test -v "${S}"/test || die "tests failed under ${EPYTHON}"
85 -}
86 -
87 -python_install_all() {
88 - local DOCS=( CHANGELOG README.rst )
89 - distutils-r1_python_install_all
90 -
91 - insinto /usr/share/xsessions
92 - doins resources/qtile.desktop
93 -
94 - exeinto /etc/X11/Sessions
95 - newexe "${FILESDIR}"/${PN}-session ${PN}
96 -}