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 F1AFC138334 for ; Fri, 10 May 2019 10:01:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 09FEFE087A; Fri, 10 May 2019 10:01:27 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E60C0E087A for ; Fri, 10 May 2019 10:01:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A0118343F31 for ; Fri, 10 May 2019 10:01:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 41E115E1 for ; Fri, 10 May 2019 10:01:23 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1557482475.4f5c24e5e8991b3cff452dc6ef5c445f88367fbb.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-apps/radeon-profile-daemon/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-apps/radeon-profile-daemon/radeon-profile-daemon-20190309-r1.ebuild X-VCS-Directories: x11-apps/radeon-profile-daemon/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 4f5c24e5e8991b3cff452dc6ef5c445f88367fbb X-VCS-Branch: master Date: Fri, 10 May 2019 10:01:23 +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: 64f61c36-dd84-465d-b9e5-37feee062bc0 X-Archives-Hash: 27c0f5e57747ce6b19fb5d14a9c0f21c commit: 4f5c24e5e8991b3cff452dc6ef5c445f88367fbb Author: Lars Wendler gentoo org> AuthorDate: Fri May 10 10:00:14 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Fri May 10 10:01:15 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f5c24e5 x11-apps/radeon-profile-daemon: Removed old. Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: Lars Wendler gentoo.org> .../radeon-profile-daemon-20190309-r1.ebuild | 49 ---------------------- 1 file changed, 49 deletions(-) diff --git a/x11-apps/radeon-profile-daemon/radeon-profile-daemon-20190309-r1.ebuild b/x11-apps/radeon-profile-daemon/radeon-profile-daemon-20190309-r1.ebuild deleted file mode 100644 index ca74330cfd3..00000000000 --- a/x11-apps/radeon-profile-daemon/radeon-profile-daemon-20190309-r1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit qmake-utils systemd - -DESCRIPTION="Daemon for radeon-profile GUI" -HOMEPAGE="https://github.com/marazmista/radeon-profile-daemon" -if [[ "${PV}" == 99999999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/marazmista/radeon-profile-daemon.git" -else - SRC_URI="https://github.com/marazmista/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi -LICENSE="GPL-2" -SLOT="0" - -IUSE="" - -RDEPEND=" - dev-qt/qtcore:5 - dev-qt/qtnetwork:5 -" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/${P}/${PN}" - -src_prepare() { - default - sed \ - -e '/^bin\.path/s@/bin@/sbin@' \ - -e "/^service\.path/s@=.*\$@= $(systemd_get_systemunitdir)@" \ - -i radeon-profile-daemon.pro || die - sed \ - -e '/^ExecStart/s@/bin/@/sbin/@' \ - -i extra/${PN}.service || die -} - -src_configure() { - eqmake5 -} - -src_install() { - emake INSTALL_ROOT="${D}" install - - newinitd "${FILESDIR}"/${PN}.initd ${PN} -}