Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xflux-gui/
Date: Wed, 08 May 2019 22:56:59
Message-Id: 1557356172.f5c489f0bc0c69fa0f9083538ae1b3c508dd43a6.asturm@gentoo
1 commit: f5c489f0bc0c69fa0f9083538ae1b3c508dd43a6
2 Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
3 AuthorDate: Fri May 3 20:38:48 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed May 8 22:56:12 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5c489f0
7
8 x11-misc/xflux-gui: bump to version 1.2.0
9
10 Also bumped to EAPI=7 and migrated from gnome2-utils to xdg-utils.
11 This version drops support for python2, but support for python3 was added.
12
13 Package-Manager: Portage-2.3.65, Repoman-2.3.12
14 Signed-off-by: Conrad Kostecki <conrad <AT> kostecki.com>
15 Closes: https://github.com/gentoo/gentoo/pull/11793
16 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
17
18 x11-misc/xflux-gui/Manifest | 1 +
19 x11-misc/xflux-gui/xflux-gui-1.2.0.ebuild | 37 +++++++++++++++++++++++++++++++
20 2 files changed, 38 insertions(+)
21
22 diff --git a/x11-misc/xflux-gui/Manifest b/x11-misc/xflux-gui/Manifest
23 index 2618b655026..8642d080fb0 100644
24 --- a/x11-misc/xflux-gui/Manifest
25 +++ b/x11-misc/xflux-gui/Manifest
26 @@ -1,2 +1,3 @@
27 DIST fluxgui-a3b55da976053fc978b29d191db52dfb8da2f8ee.tar.gz 30667 BLAKE2B bb9b3d3fa2f40acf3248e5cdd91a82c3f736937c03451aba41280b25fc541a3db23c6a57f2ef97ac1ce415d289c0442a387462415827009c68f169f91da589e2 SHA512 d4571f3a64c1f532642f86d4de50d5807afb856179debab77e4495dc48060c68a635d38990d174fbb67169317d7107356344507285271b0bb058f056c1e39a37
28 DIST xflux-gui-1.1.10.tar.gz 18828 BLAKE2B a249533ace4ff6293ff9b99a455943c1f099628bec97c2730473f8a9550ba38e78e775a10a0f77c160180f5f5d354ac8c8ac924c1a2eb9f48861491583c93285 SHA512 5e8057e47fe2cc8a59758e9ab6b3adc6a8281b42f6b517e3e1327e5470c82a326c853d5d389fd62f6d6c439be4ab70a6c8771ece87e5b8c90a33775f8b7cd54d
29 +DIST xflux-gui-1.2.0.tar.gz 31831 BLAKE2B ad6b29f75cf5c287efdb4c1eaa12610a6fd2d4515e7f77cb991f0140d9de1128981ae274a1503f7c5bb83ff84f8dc124ba64e5abdd2e97c1d7157c84df51bead SHA512 244c11efbf58112d3d84209142faafbbe46b33df1edf13e122945ff767fc6a394c147979c0086bd88cb41ee7c80b5bd87016b3e158f3a959f3aca8bda47707d2
30
31 diff --git a/x11-misc/xflux-gui/xflux-gui-1.2.0.ebuild b/x11-misc/xflux-gui/xflux-gui-1.2.0.ebuild
32 new file mode 100644
33 index 00000000000..17a3f60962e
34 --- /dev/null
35 +++ b/x11-misc/xflux-gui/xflux-gui-1.2.0.ebuild
36 @@ -0,0 +1,37 @@
37 +# Copyright 1999-2019 Gentoo Authors
38 +# Distributed under the terms of the GNU General Public License v2
39 +
40 +EAPI=7
41 +
42 +PYTHON_COMPAT=( python3_{5,6,7} )
43 +
44 +inherit distutils-r1 xdg-utils
45 +
46 +DESCRIPTION="A GUI for f.lux"
47 +HOMEPAGE="https://justgetflux.com/"
48 +SRC_URI="https://github.com/${PN}/fluxgui/archive/v${PV}.tar.gz -> ${P}.tar.gz"
49 +
50 +LICENSE="MIT"
51 +SLOT="0"
52 +KEYWORDS="-* ~amd64 ~x86"
53 +
54 +RDEPEND="
55 + dev-libs/libappindicator:3
56 + dev-python/pexpect[${PYTHON_USEDEP}]
57 + dev-python/pygobject[${PYTHON_USEDEP}]
58 + dev-python/pyxdg[${PYTHON_USEDEP}]
59 + x11-libs/libXxf86vm
60 + x11-misc/xflux
61 +"
62 +
63 +S="${WORKDIR}/fluxgui-${PV}"
64 +
65 +pkg_postinst() {
66 + xdg_desktop_database_update
67 + xdg_icon_cache_update
68 +}
69 +
70 +pkg_postrm() {
71 + xdg_desktop_database_update
72 + xdg_icon_cache_update
73 +}