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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 86E8E15ACFB for ; Mon, 10 Apr 2023 07:37:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9B44E0864; Mon, 10 Apr 2023 07:37:34 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ABF4AE0864 for ; Mon, 10 Apr 2023 07:37:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B4782340D0A for ; Mon, 10 Apr 2023 07:37:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C805EA40 for ; Mon, 10 Apr 2023 07:37:30 +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: <1681112243.dbb0db9a8e0d6bbae1750a2ce5b539aed41b8b3a.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/iverilog/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-electronics/iverilog/iverilog-9999.ebuild X-VCS-Directories: sci-electronics/iverilog/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: dbb0db9a8e0d6bbae1750a2ce5b539aed41b8b3a X-VCS-Branch: master Date: Mon, 10 Apr 2023 07:37:30 +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: 6ce91153-a767-4b12-8206-7572a028e323 X-Archives-Hash: 03ba40a5aa807ebe9be0ef1958e0b3ae commit: dbb0db9a8e0d6bbae1750a2ce5b539aed41b8b3a Author: Huang Rui gmail com> AuthorDate: Fri Mar 31 04:23:06 2023 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Mon Apr 10 07:37:23 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbb0db9a sci-electronics/iverilog: EAPI 7 -> 8, fix long lines Signed-off-by: Huang Rui gmail.com> Closes: https://github.com/gentoo/gentoo/pull/30419 Signed-off-by: Joonas Niilola gentoo.org> sci-electronics/iverilog/iverilog-9999.ebuild | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/sci-electronics/iverilog/iverilog-9999.ebuild b/sci-electronics/iverilog/iverilog-9999.ebuild index de6fe18b47c9..43fe2c27ba04 100644 --- a/sci-electronics/iverilog/iverilog-9999.ebuild +++ b/sci-electronics/iverilog/iverilog-9999.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit autotools @@ -47,10 +47,12 @@ src_prepare() { eautoconf # Precompiling lexor_keyword.gperf - gperf -o -i 7 -C -k 1-4,6,9,\$ -H keyword_hash -N check_identifier -t ./lexor_keyword.gperf > lexor_keyword.cc || die + gperf -o -i 7 -C -k 1-4,6,9,\$ -H keyword_hash -N check_identifier -t ./lexor_keyword.gperf \ + > lexor_keyword.cc || die # Precompiling vhdlpp/lexor_keyword.gperf cd vhdlpp || die - gperf -o -i 7 --ignore-case -C -k 1-4,6,9,\$ -H keyword_hash -N check_identifier -t ./lexor_keyword.gperf > lexor_keyword.cc || die + gperf -o -i 7 --ignore-case -C -k 1-4,6,9,\$ -H keyword_hash -N check_identifier -t ./lexor_keyword.gperf \ + > lexor_keyword.cc || die } src_install() {