Gentoo Archives: gentoo-commits

From: Patrick McLean <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/openrgb/
Date: Wed, 22 Sep 2021 00:05:32
Message-Id: 1632269111.bed361b9aaf3ef583b5362d05f381d819ee72290.chutzpah@gentoo
1 commit: bed361b9aaf3ef583b5362d05f381d819ee72290
2 Author: Alexey Sokolov <alexey+gentoo <AT> asokolov <DOT> org>
3 AuthorDate: Tue Sep 14 20:14:19 2021 +0000
4 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 22 00:05:11 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bed361b9
7
8 app-misc/openrgb: drop 0.6-r0
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
12 Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
13
14 app-misc/openrgb/openrgb-0.6.ebuild | 57 -------------------------------------
15 1 file changed, 57 deletions(-)
16
17 diff --git a/app-misc/openrgb/openrgb-0.6.ebuild b/app-misc/openrgb/openrgb-0.6.ebuild
18 deleted file mode 100644
19 index c356d7aff6f..00000000000
20 --- a/app-misc/openrgb/openrgb-0.6.ebuild
21 +++ /dev/null
22 @@ -1,57 +0,0 @@
23 -# Copyright 2020-2021 Gentoo Authors
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=7
27 -
28 -inherit qmake-utils
29 -
30 -if [[ ${PV} == *9999* ]]; then
31 - inherit git-r3
32 - EGIT_REPO_URI=${EGIT_REPO_URI:-"https://gitlab.com/CalcProgrammer1/OpenRGB"}
33 -else
34 - SRC_URI="https://gitlab.com/CalcProgrammer1/OpenRGB/-/archive/release_${PV}/OpenRGB-release_${PV}.tar.bz2"
35 - S="${WORKDIR}/OpenRGB-release_${PV}"
36 - KEYWORDS="~amd64 ~x86"
37 - PATCHES=(
38 - "${FILESDIR}"/OpenRGB-0.5-build-system.patch
39 - )
40 -fi
41 -
42 -DESCRIPTION="Open source RGB lighting control that doesn't depend on manufacturer software"
43 -HOMEPAGE="https://gitlab.com/CalcProgrammer1/OpenRGB/"
44 -LICENSE="GPL-2"
45 -SLOT="0"
46 -
47 -RDEPEND="
48 - dev-libs/hidapi:=
49 - dev-qt/qtcore:5
50 - dev-qt/qtgui:5
51 - dev-qt/qtwidgets:5
52 - virtual/libusb:1
53 -"
54 -DEPEND="
55 - ${RDEPEND}
56 - dev-cpp/nlohmann_json
57 -"
58 -BDEPEND="
59 - virtual/pkgconfig
60 -"
61 -
62 -PATCHES+=(
63 - "${FILESDIR}"/OpenRGB-0.6-pkgconf.patch
64 -)
65 -
66 -src_prepare() {
67 - default
68 - rm -r dependencies/{hidapi,libusb,json}* || die
69 -}
70 -
71 -src_configure() {
72 - eqmake5 INCLUDEPATH+="${ESYSROOT}/usr/include/nlohmann"
73 -}
74 -
75 -src_install() {
76 - emake INSTALL_ROOT="${ED}" install
77 -
78 - dodoc README.md OpenRGB.patch
79 -}