Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-util/sc-controller/, games-util/sc-controller/files/
Date: Tue, 28 Dec 2021 17:10:36
Message-Id: 1640710810.50749dd21676d72d4bddb92102da9e6a8d23ca65.ionen@gentoo
1 commit: 50749dd21676d72d4bddb92102da9e6a8d23ca65
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 28 15:02:46 2021 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 28 17:00:10 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50749dd2
7
8 games-util/sc-controller: drop 0.4.8.1
9
10 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
11
12 games-util/sc-controller/Manifest | 1 -
13 .../sc-controller/files/status-icon-click.patch | 28 ------------------
14 .../sc-controller/sc-controller-0.4.8.1.ebuild | 33 ----------------------
15 3 files changed, 62 deletions(-)
16
17 diff --git a/games-util/sc-controller/Manifest b/games-util/sc-controller/Manifest
18 index 38b205222bdc..b712ecee7617 100644
19 --- a/games-util/sc-controller/Manifest
20 +++ b/games-util/sc-controller/Manifest
21 @@ -1,2 +1 @@
22 -DIST sc-controller-0.4.8.1.tar.gz 2520167 BLAKE2B 40c8e366519ec2a6d80b31c2b342fba2664fa35f3a889e222665f8f5cd4d59dd912804f6cdf4ecd844ab94075f5f45f88a61138ac1c0cb528652c9fd9b710afa SHA512 bc57bd381c71e94c0771ecdb08f95326d0c1478e25cdf3955b71c203abe6cb78091ca977deb8a1e954b5b1b65a6df487f8b8921920b1eb672aa6f1f5554a4847
23 DIST sc-controller-0.4.8.2.tar.gz 2520528 BLAKE2B 0c98e1fd49e846909ec0a78c5bbf48731de464ab79ebe3e1b0370e2a6f176e925e6f2b288c17358221b2e50be0cd783f31f05324ac585aec310967d148ce5011 SHA512 8d157e871fa519ebd3eee27dd1c0ff1afe6f79201df12578aa31f3cbc62974bd7ba47c8a097870b693a7abaacaadd1e502012c9664c0aecddbd982fa10c7f84d
24
25 diff --git a/games-util/sc-controller/files/status-icon-click.patch b/games-util/sc-controller/files/status-icon-click.patch
26 deleted file mode 100644
27 index 46b39553b483..000000000000
28 --- a/games-util/sc-controller/files/status-icon-click.patch
29 +++ /dev/null
30 @@ -1,28 +0,0 @@
31 -From b1388d0e768f0bedd5704ffae9b13500ad325308 Mon Sep 17 00:00:00 2001
32 -From: James Le Cuirot <chewi@g.o>
33 -Date: Sat, 17 Oct 2020 21:36:49 +0100
34 -Subject: [PATCH] Fix TypeError when clicking on the status icon
35 -
36 -The error was:
37 -
38 - TypeError: GObject.emit() argument 1 must be str, not bytes
39 ----
40 - scc/gui/statusicon.py | 2 +-
41 - 1 file changed, 1 insertion(+), 1 deletion(-)
42 -
43 -diff --git a/scc/gui/statusicon.py b/scc/gui/statusicon.py
44 -index 61ef9e96..83600492 100644
45 ---- a/scc/gui/statusicon.py
46 -+++ b/scc/gui/statusicon.py
47 -@@ -322,7 +322,7 @@ class StatusIconProxy(StatusIcon):
48 - self._load_fallback()
49 -
50 - def _on_click(self, *args):
51 -- self.emit(b"clicked")
52 -+ self.emit("clicked")
53 -
54 - def _on_notify_active_gtk(self, *args):
55 - if self._status_fb:
56 ---
57 -2.26.2
58 -
59
60 diff --git a/games-util/sc-controller/sc-controller-0.4.8.1.ebuild b/games-util/sc-controller/sc-controller-0.4.8.1.ebuild
61 deleted file mode 100644
62 index f5cb8a83901e..000000000000
63 --- a/games-util/sc-controller/sc-controller-0.4.8.1.ebuild
64 +++ /dev/null
65 @@ -1,33 +0,0 @@
66 -# Copyright 1999-2020 Gentoo Authors
67 -# Distributed under the terms of the GNU General Public License v2
68 -
69 -EAPI=7
70 -
71 -DISTUTILS_SINGLE_IMPL=1
72 -DISTUTILS_USE_SETUPTOOLS=no
73 -PYTHON_COMPAT=( python3_{7,8,9} )
74 -
75 -inherit distutils-r1 xdg
76 -
77 -DESCRIPTION="User-mode driver and GTK-based GUI for Steam Controllers and others"
78 -HOMEPAGE="https://github.com/Ryochan7/sc-controller/"
79 -SRC_URI="https://github.com/Ryochan7/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
80 -LICENSE="GPL-2 CC0-1.0"
81 -SLOT="0"
82 -KEYWORDS="~amd64 ~x86"
83 -IUSE="+udev"
84 -
85 -RDEPEND="
86 - $(python_gen_cond_dep '
87 - dev-python/pygobject[${PYTHON_USEDEP},cairo]
88 - dev-python/pylibacl[${PYTHON_USEDEP}]
89 - dev-python/python-evdev[${PYTHON_USEDEP}]
90 - ')
91 - gnome-base/librsvg
92 - x11-libs/gtk+:3
93 - udev? ( games-util/game-device-udev-rules )
94 -"
95 -
96 -PATCHES=(
97 - "${FILESDIR}"/status-icon-click.patch
98 -)