Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/sensei-raw-ctl/
Date: Sun, 27 Feb 2022 00:54:31
Message-Id: 1645922374.afc5309a6205e9c93e3ea52144b2224284783e78.sam@gentoo
1 commit: afc5309a6205e9c93e3ea52144b2224284783e78
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 27 00:39:34 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 27 00:39:34 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afc5309a
7
8 sys-apps/sensei-raw-ctl: update EAPI 6 -> 8
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 .../sensei-raw-ctl-0.0_pre20180729-r1.ebuild | 29 ++++++++++++++++++++
13 .../sensei-raw-ctl-0.0_pre20180729.ebuild | 32 ----------------------
14 2 files changed, 29 insertions(+), 32 deletions(-)
15
16 diff --git a/sys-apps/sensei-raw-ctl/sensei-raw-ctl-0.0_pre20180729-r1.ebuild b/sys-apps/sensei-raw-ctl/sensei-raw-ctl-0.0_pre20180729-r1.ebuild
17 new file mode 100644
18 index 000000000000..9fbcd198a62f
19 --- /dev/null
20 +++ b/sys-apps/sensei-raw-ctl/sensei-raw-ctl-0.0_pre20180729-r1.ebuild
21 @@ -0,0 +1,29 @@
22 +# Copyright 1999-2022 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=8
26 +
27 +inherit cmake
28 +
29 +MY_COMMIT="175d72ee849afe6e3547739132103cb26acf9173"
30 +DESCRIPTION="SteelSeries Sensei Raw configuration tool"
31 +HOMEPAGE="https://git.janouch.name/p/sensei-raw-ctl"
32 +SRC_URI="https://git.janouch.name/p/sensei-raw-ctl/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
33 +S="${WORKDIR}/${PN}"
34 +
35 +LICENSE="ISC"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86"
38 +IUSE="gtk"
39 +
40 +DEPEND="virtual/libusb:1
41 + gtk? ( x11-libs/gtk+:3 )"
42 +RDEPEND="${DEPEND}"
43 +
44 +src_configure() {
45 + local mycmakeargs=(
46 + -DBUILD_GUI=$(usex gtk)
47 + )
48 +
49 + cmake_src_configure
50 +}
51
52 diff --git a/sys-apps/sensei-raw-ctl/sensei-raw-ctl-0.0_pre20180729.ebuild b/sys-apps/sensei-raw-ctl/sensei-raw-ctl-0.0_pre20180729.ebuild
53 deleted file mode 100644
54 index 15ba0f2e8246..000000000000
55 --- a/sys-apps/sensei-raw-ctl/sensei-raw-ctl-0.0_pre20180729.ebuild
56 +++ /dev/null
57 @@ -1,32 +0,0 @@
58 -# Copyright 1999-2020 Gentoo Authors
59 -# Distributed under the terms of the GNU General Public License v2
60 -
61 -EAPI=6
62 -
63 -EGIT_COMMIT="175d72ee849afe6e3547739132103cb26acf9173"
64 -
65 -inherit cmake-utils
66 -
67 -DESCRIPTION="SteelSeries Sensei Raw configuration tool"
68 -HOMEPAGE="https://git.janouch.name/p/sensei-raw-ctl"
69 -SRC_URI="https://git.janouch.name/p/sensei-raw-ctl/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
70 -
71 -LICENSE="ISC"
72 -SLOT="0"
73 -KEYWORDS="~amd64 ~x86"
74 -IUSE="gtk"
75 -
76 -DEPEND="
77 - virtual/libusb:1
78 - gtk? ( x11-libs/gtk+:3 )
79 -"
80 -RDEPEND="${DEPEND}"
81 -
82 -S="${WORKDIR}/${PN}"
83 -
84 -src_configure() {
85 - local mycmakeargs=(
86 - "-DBUILD_GUI=$(usex gtk)"
87 - )
88 - cmake-utils_src_configure
89 -}