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 331851382C5 for ; Mon, 7 Jun 2021 11:05:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D1CF6E07B3; Mon, 7 Jun 2021 11:05:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 B609FE07B3 for ; Mon, 7 Jun 2021 11:05:14 +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 CE8D9340D4D for ; Mon, 7 Jun 2021 11:05:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1FC0775B for ; Mon, 7 Jun 2021 11:05:12 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1623063905.7aa3ad8101eb97eb81c929f6ecc424e79ff6cce6.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/surf/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/surf/surf-9999.ebuild X-VCS-Directories: www-client/surf/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 7aa3ad8101eb97eb81c929f6ecc424e79ff6cce6 X-VCS-Branch: master Date: Mon, 7 Jun 2021 11:05:12 +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: a9c1d64e-808e-4101-b883-c5330c7b9ffa X-Archives-Hash: a60d64ffe86c8ffb0b1fca9ace4c6d54 commit: 7aa3ad8101eb97eb81c929f6ecc424e79ff6cce6 Author: Petr Vaněk atlas cz> AuthorDate: Wed May 19 07:34:37 2021 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Mon Jun 7 11:05:05 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7aa3ad81 www-client/surf: update live Signed-off-by: Petr Vaněk atlas.cz> Signed-off-by: Joonas Niilola gentoo.org> www-client/surf/surf-9999.ebuild | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/www-client/surf/surf-9999.ebuild b/www-client/surf/surf-9999.ebuild index d6b737a623d..19c3211f609 100644 --- a/www-client/surf/surf-9999.ebuild +++ b/www-client/surf/surf-9999.ebuild @@ -2,40 +2,44 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit git-r3 savedconfig toolchain-funcs +inherit savedconfig toolchain-funcs DESCRIPTION="a simple web browser based on WebKit/GTK+" HOMEPAGE="https://surf.suckless.org/" -EGIT_REPO_URI="https://git.suckless.org/surf" -EGIT_BRANCH="surf-webkit2" + +if [[ ${PV} == "9999" ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://git.suckless.org/surf" + EGIT_BRANCH="surf-webkit2" +else + SRC_URI="https://dl.suckless.org/${PN}/${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi LICENSE="MIT" SLOT="0" -KEYWORDS="" IUSE="tabbed" -COMMON_DEPEND=" +DEPEND=" app-crypt/gcr[gtk] dev-libs/glib:2 net-libs/webkit-gtk:4 x11-libs/gtk+:3 x11-libs/libX11 " -DEPEND=" - ${COMMON_DEPEND} - virtual/pkgconfig -" -RDEPEND=" +RDEPEND="${DEPEND} !sci-chemistry/surf - ${COMMON_DEPEND} !savedconfig? ( - >=x11-misc/dmenu-4.7 net-misc/curl x11-apps/xprop + x11-misc/dmenu x11-terms/st ) tabbed? ( x11-misc/tabbed ) " +BDEPEND=" + virtual/pkgconfig +" PATCHES=( "${FILESDIR}"/${PN}-9999-gentoo.patch )