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, 15 May 2021 13:24:30
Message-Id: 1621085063.0d63fa83bbb1df0a24db3fd5caf9718a05040ead.zlogene@gentoo
1 commit: 0d63fa83bbb1df0a24db3fd5caf9718a05040ead
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 15 13:22:39 2021 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sat May 15 13:24:23 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d63fa83
7
8 x11-wm/qtile: Version bump (v0.17.0)
9
10 Package-Manager: Portage-3.0.17, Repoman-3.0.2
11 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
12
13 x11-wm/qtile/Manifest | 1 +
14 x11-wm/qtile/qtile-0.17.0.ebuild | 46 ++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 47 insertions(+)
16
17 diff --git a/x11-wm/qtile/Manifest b/x11-wm/qtile/Manifest
18 index 3b0163762cb..a8500cbec56 100644
19 --- a/x11-wm/qtile/Manifest
20 +++ b/x11-wm/qtile/Manifest
21 @@ -1 +1,2 @@
22 DIST qtile-0.16.1.tar.gz 324668 BLAKE2B 1f75f5dbcab6180dcf778e28108e70b6dd01105fa275aadf4a53d96ab84f3b759cb8553bcf3de2011b0990d61adc9269663afa32b83d1aa9c052b00ef9e89358 SHA512 aea42f7f6799a88b586167a57f5b5ab6f1c5bb663dec352d15eb47ce0d37fb23c31d1631cab8178c71be5ae714ec12c35a350377383dba1749a98cd45c22515b
23 +DIST qtile-0.17.0.tar.gz 336235 BLAKE2B f2290ab823b31cd8ed512f076018a8df19bbfedbb7d5c6932eee7cd46c341a08af04ed0d99f4391d1b3ccc07eb33015bbf0050c1c5d749bace4fb6dcfcb71ac9 SHA512 bfe51aabef2d48693c5bb7525cf67b1bb99cf3af5a653cd81d523e5adaa4767a43e7a87db14f9b85fae3a9e414af41a2e66736556eb1552d099755ba6f39caeb
24
25 diff --git a/x11-wm/qtile/qtile-0.17.0.ebuild b/x11-wm/qtile/qtile-0.17.0.ebuild
26 new file mode 100644
27 index 00000000000..184c5988510
28 --- /dev/null
29 +++ b/x11-wm/qtile/qtile-0.17.0.ebuild
30 @@ -0,0 +1,46 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DISTUTILS_USE_SETUPTOOLS=rdepend
37 +
38 +PYTHON_COMPAT=( python3_{7,8,9} )
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="A full-featured, hackable tiling window manager written in Python"
43 +HOMEPAGE="http://qtile.org/"
44 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 +
46 +LICENSE="MIT"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~x86"
49 +
50 +RESTRICT="test"
51 +
52 +# requires internet and specific
53 +# pulseaudio settings
54 +
55 +RDEPEND="
56 + x11-libs/cairo[X,xcb(+)]
57 + x11-libs/pango
58 + dev-python/setuptools[${PYTHON_USEDEP}]
59 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
60 + >=dev-python/cairocffi-0.9.0[${PYTHON_USEDEP}]
61 + >=dev-python/cffi-1.1.0[${PYTHON_USEDEP}]
62 + >=dev-python/six-1.4.1[${PYTHON_USEDEP}]
63 + >=dev-python/xcffib-0.8.1[${PYTHON_USEDEP}]
64 + media-sound/pulseaudio
65 +"
66 +
67 +python_install_all() {
68 + local DOCS=( CHANGELOG README.rst )
69 + distutils-r1_python_install_all
70 +
71 + insinto /usr/share/xsessions
72 + doins resources/qtile.desktop
73 +
74 + exeinto /etc/X11/Sessions
75 + newexe "${FILESDIR}"/${PN}-session ${PN}
76 +}