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 A5F8D1580B9 for ; Sun, 22 Aug 2021 19:38:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CD7CFE0893; Sun, 22 Aug 2021 19:38:04 +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 3DF92E0893 for ; Sun, 22 Aug 2021 19:38:04 +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 6793433BE95 for ; Sun, 22 Aug 2021 19:38:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B0ED88D2 for ; Sun, 22 Aug 2021 19:38:00 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1629661040.cf1c085da275cc54aa237618f82308831027892d.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/gsmc/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-electronics/gsmc/gsmc-1.1-r2.ebuild X-VCS-Directories: sci-electronics/gsmc/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: cf1c085da275cc54aa237618f82308831027892d X-VCS-Branch: master Date: Sun, 22 Aug 2021 19:38:00 +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: 0be46e30-fa52-4d62-bb13-bf2919e7c2ef X-Archives-Hash: 9239ba89f8eb3c80585dbfb7b3d7c324 commit: cf1c085da275cc54aa237618f82308831027892d Author: Jakov Smolic sartura hr> AuthorDate: Sun Aug 22 19:37:20 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Aug 22 19:37:20 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf1c085d sci-electronics/gsmc: Port to EAPI 8 Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: David Seifert gentoo.org> sci-electronics/gsmc/gsmc-1.1-r2.ebuild | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/sci-electronics/gsmc/gsmc-1.1-r2.ebuild b/sci-electronics/gsmc/gsmc-1.1-r2.ebuild index ee9e8125fd8..a3da3ce6921 100644 --- a/sci-electronics/gsmc/gsmc-1.1-r2.ebuild +++ b/sci-electronics/gsmc/gsmc-1.1-r2.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="5" +EAPI=8 -inherit autotools epatch +inherit autotools DESCRIPTION="A GTK program for doing Smith Chart calculations" HOMEPAGE="https://www.qsl.net/ik5nax/" @@ -12,17 +12,20 @@ SRC_URI="https://www.qsl.net/ik5nax/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" -CDEPEND=" +DEPEND=" dev-libs/glib:2 - x11-libs/gtk+:2" -DEPEND="${CDEPEND} - virtual/pkgconfig" -RDEPEND="${CDEPEND}" + x11-libs/gtk+:2 +" +RDEPEND="${DEPEND}" +BDEPEND="virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}"/${P}-autotools.patch +) src_prepare() { - epatch "${FILESDIR}/${P}-autotools.patch" + default eautoreconf }