From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2C887158012 for ; Wed, 22 Sep 2021 00:05:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3FE20E07B3; Wed, 22 Sep 2021 00:05:31 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 22717E07B3 for ; Wed, 22 Sep 2021 00:05:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1B743342D00 for ; Wed, 22 Sep 2021 00:05:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 808D3EA for ; Wed, 22 Sep 2021 00:05:28 +0000 (UTC) From: "Patrick McLean" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick McLean" Message-ID: <1632269111.bed361b9aaf3ef583b5362d05f381d819ee72290.chutzpah@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/openrgb/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/openrgb/openrgb-0.6.ebuild X-VCS-Directories: app-misc/openrgb/ X-VCS-Committer: chutzpah X-VCS-Committer-Name: Patrick McLean X-VCS-Revision: bed361b9aaf3ef583b5362d05f381d819ee72290 X-VCS-Branch: master Date: Wed, 22 Sep 2021 00:05:28 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0f8287c2-e4ca-41cd-be26-e2a80f50bd72 X-Archives-Hash: d9e80894a9e5325293ffa36f857084b0 commit: bed361b9aaf3ef583b5362d05f381d819ee72290 Author: Alexey Sokolov asokolov org> AuthorDate: Tue Sep 14 20:14:19 2021 +0000 Commit: Patrick McLean gentoo org> CommitDate: Wed Sep 22 00:05:11 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bed361b9 app-misc/openrgb: drop 0.6-r0 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Alexey Sokolov asokolov.org> Signed-off-by: Patrick McLean gentoo.org> app-misc/openrgb/openrgb-0.6.ebuild | 57 ------------------------------------- 1 file changed, 57 deletions(-) diff --git a/app-misc/openrgb/openrgb-0.6.ebuild b/app-misc/openrgb/openrgb-0.6.ebuild deleted file mode 100644 index c356d7aff6f..00000000000 --- a/app-misc/openrgb/openrgb-0.6.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 2020-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit qmake-utils - -if [[ ${PV} == *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI=${EGIT_REPO_URI:-"https://gitlab.com/CalcProgrammer1/OpenRGB"} -else - SRC_URI="https://gitlab.com/CalcProgrammer1/OpenRGB/-/archive/release_${PV}/OpenRGB-release_${PV}.tar.bz2" - S="${WORKDIR}/OpenRGB-release_${PV}" - KEYWORDS="~amd64 ~x86" - PATCHES=( - "${FILESDIR}"/OpenRGB-0.5-build-system.patch - ) -fi - -DESCRIPTION="Open source RGB lighting control that doesn't depend on manufacturer software" -HOMEPAGE="https://gitlab.com/CalcProgrammer1/OpenRGB/" -LICENSE="GPL-2" -SLOT="0" - -RDEPEND=" - dev-libs/hidapi:= - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtwidgets:5 - virtual/libusb:1 -" -DEPEND=" - ${RDEPEND} - dev-cpp/nlohmann_json -" -BDEPEND=" - virtual/pkgconfig -" - -PATCHES+=( - "${FILESDIR}"/OpenRGB-0.6-pkgconf.patch -) - -src_prepare() { - default - rm -r dependencies/{hidapi,libusb,json}* || die -} - -src_configure() { - eqmake5 INCLUDEPATH+="${ESYSROOT}/usr/include/nlohmann" -} - -src_install() { - emake INSTALL_ROOT="${ED}" install - - dodoc README.md OpenRGB.patch -}