Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-power/switcheroo-control/
Date: Thu, 29 Dec 2022 10:44:40
Message-Id: 1672310665.6748725db4aec61990c9493cef340bb189cc28b2.pacho@gentoo
1 commit: 6748725db4aec61990c9493cef340bb189cc28b2
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 29 10:44:13 2022 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 29 10:44:25 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6748725d
7
8 sys-power/switcheroo-control: drop 2.4
9
10 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
11
12 sys-power/switcheroo-control/Manifest | 1 -
13 .../switcheroo-control-2.4.ebuild | 42 ----------------------
14 2 files changed, 43 deletions(-)
15
16 diff --git a/sys-power/switcheroo-control/Manifest b/sys-power/switcheroo-control/Manifest
17 index 0df8a9135e34..14c2fac1ed9e 100644
18 --- a/sys-power/switcheroo-control/Manifest
19 +++ b/sys-power/switcheroo-control/Manifest
20 @@ -1,2 +1 @@
21 -DIST switcheroo-control-2.4.tar.xz 27964 BLAKE2B f85014ad6696e301bafd75b694f5c130498171d95b0330d2996568737cbcd677eef5256bc47638bf87d178d6fe099f3c53bd710a1534db20f1dbe5fbe51681c7 SHA512 47f071b17cbb520d862800ef2d8389ada1130be96a8c1efed9be6793081b5826355ad30b0feeba1cc9eda792b4c943ffc852d12648b0c5e74f25c207d151c1c3
22 DIST switcheroo-control-2.6.tar.xz 29996 BLAKE2B 98204a1d0f3b92cc2b98ad9f382313aed4da5877ac6be607c48ee9386bd25087301e249907a7e1385eea357f0a3ce5fb2936fac688923dfa3555a9870f0d2e58 SHA512 ac8867a839ae958676f5c5c7bb4c25cbbcf70eb35a696bb3d80b388c31a9722e75311c041c4c60b8f1d00f405af97dd9173e99780a2be3c621ac759c4986a2d2
23
24 diff --git a/sys-power/switcheroo-control/switcheroo-control-2.4.ebuild b/sys-power/switcheroo-control/switcheroo-control-2.4.ebuild
25 deleted file mode 100644
26 index edf3b3edbb4b..000000000000
27 --- a/sys-power/switcheroo-control/switcheroo-control-2.4.ebuild
28 +++ /dev/null
29 @@ -1,42 +0,0 @@
30 -# Copyright 2021-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -inherit meson
35 -
36 -DESCRIPTION="D-Bus service to check the availability of dual-GPU"
37 -HOMEPAGE="https://gitlab.freedesktop.org/hadess/switcheroo-control/"
38 -SRC_URI="https://gitlab.freedesktop.org/hadess/switcheroo-control/uploads/accd4a9492979bfd91b587ae7e18d3a2/${P}.tar.xz"
39 -
40 -LICENSE="GPL-3"
41 -SLOT="0"
42 -IUSE="gtk-doc test"
43 -
44 -KEYWORDS="amd64"
45 -
46 -RDEPEND="
47 - >=dev-libs/glib-2.56.0:2
48 - >=dev-libs/libgudev-232:=
49 - sys-apps/systemd
50 -"
51 -DEPEND="${RDEPEND}"
52 -BDEPEND="
53 - gtk-doc? ( dev-util/gtk-doc )
54 - test? ( dev-util/umockdev )
55 -"
56 -
57 -RESTRICT="!test? ( test )"
58 -
59 -src_configure() {
60 - local emesonargs=(
61 - $(meson_use gtk-doc gtk_doc)
62 - )
63 - meson_src_configure
64 -}
65 -
66 -pkg_postinst() {
67 - if [[ -z "${REPLACING_VERSIONS}" ]]; then
68 - elog "You need to run systemd and enable the service:"
69 - elog "# systemctl enable switcheroo-control"
70 - fi
71 -}