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 112821382C5 for ; Mon, 21 Dec 2020 11:06:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 07E572BC054; Mon, 21 Dec 2020 11:06:55 +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 E494A2BC054 for ; Mon, 21 Dec 2020 11:06:54 +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 1059A340FC9 for ; Mon, 21 Dec 2020 11:06:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3A5C1478 for ; Mon, 21 Dec 2020 11:06:50 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1608543975.6b72077a167556167760a0c12dc77c9c7844a49f.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: net-im/srain/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-im/srain/srain-1.1.1.ebuild X-VCS-Directories: net-im/srain/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 6b72077a167556167760a0c12dc77c9c7844a49f X-VCS-Branch: master Date: Mon, 21 Dec 2020 11:06:50 +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: c810912e-1193-4bab-8ebb-5cacaeb92249 X-Archives-Hash: 025f80eb965eb2b59188e500eae5af4f commit: 6b72077a167556167760a0c12dc77c9c7844a49f Author: Theo Anderson posteo de> AuthorDate: Mon Dec 21 09:40:25 2020 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Mon Dec 21 09:46:15 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6b72077a net-im/srain: remove references to live ebuild Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Theo Anderson posteo.de> net-im/srain/srain-1.1.1.ebuild | 27 +++++++++------------------ 1 file changed, 9 insertions(+), 18 deletions(-) diff --git a/net-im/srain/srain-1.1.1.ebuild b/net-im/srain/srain-1.1.1.ebuild index 68e4cac6..6acec6d0 100644 --- a/net-im/srain/srain-1.1.1.ebuild +++ b/net-im/srain/srain-1.1.1.ebuild @@ -3,36 +3,27 @@ EAPI=7 -inherit eutils xdg +inherit xdg DESCRIPTION="Modern, beautiful IRC client written in GTK+ 3" HOMEPAGE="https://github.com/SrainApp/srain" - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/SrainApp/${PN}.git" - KEYWORDS="" -else - MY_PV="${PV/_rc/rc}" - MY_P="${PN}-${MY_PV}" - SRC_URI="https://github.com/SrainApp/${PN}/archive/${MY_PV}.tar.gz -> ${MY_P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~x86" - S="${WORKDIR}/${MY_P}" -fi +SRC_URI="https://github.com/SrainApp/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3" SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" IUSE="debug" +RDEPEND=" + >=x11-libs/gtk+-3.22.0 + x11-libs/libnotify +" DEPEND=" + ${RDEPEND} dev-libs/libconfig net-libs/libsoup " -RDEPEND="${DEPEND} - >=x11-libs/gtk+-3.22.0 - x11-libs/libnotify -" -src_configure(){ +src_configure() { econf $(use_enable debug) }