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 544221382C5 for ; Tue, 20 Apr 2021 01:50:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 51E75E0863; Tue, 20 Apr 2021 01:50:16 +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 39FEFE0863 for ; Tue, 20 Apr 2021 01:50:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 B9CA933E6A3 for ; Tue, 20 Apr 2021 01:50:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 245E3646 for ; Tue, 20 Apr 2021 01:50:13 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1618883389.af5e791f5cc0b8d4ed12074f1ee73a00d35a51f5.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xssstate/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/xssstate/xssstate-1.1.ebuild X-VCS-Directories: x11-misc/xssstate/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: af5e791f5cc0b8d4ed12074f1ee73a00d35a51f5 X-VCS-Branch: master Date: Tue, 20 Apr 2021 01:50:13 +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: 2c407748-c2a0-4065-92aa-eb941795ba4a X-Archives-Hash: 637b1b00387c385c034cad36696901fd commit: af5e791f5cc0b8d4ed12074f1ee73a00d35a51f5 Author: Sam James gentoo org> AuthorDate: Tue Apr 20 01:46:09 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Apr 20 01:49:49 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af5e791f x11-misc/xssstate: port to EAPI 7 Signed-off-by: Sam James gentoo.org> x11-misc/xssstate/xssstate-1.1.ebuild | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/x11-misc/xssstate/xssstate-1.1.ebuild b/x11-misc/xssstate/xssstate-1.1.ebuild index 194e85aa60e..0dbd9da68b1 100644 --- a/x11-misc/xssstate/xssstate-1.1.ebuild +++ b/x11-misc/xssstate/xssstate-1.1.ebuild @@ -1,8 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit epatch toolchain-funcs +EAPI=7 + +inherit toolchain-funcs DESCRIPTION="A simple tool to retrieve the X screensaver state" HOMEPAGE="https://tools.suckless.org/x/xssstate" @@ -11,7 +12,6 @@ SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" RDEPEND=" x11-libs/libX11 @@ -22,8 +22,13 @@ DEPEND=" x11-base/xorg-proto " +PATCHES=( + "${FILESDIR}"/${PN}-1.0.20130103-gentoo.patch +) + src_prepare() { - epatch "${FILESDIR}"/${PN}-1.0.20130103-gentoo.patch + default + tc-export CC }