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 CF361158021 for ; Tue, 22 Nov 2022 03:23:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9CC96E086F; Tue, 22 Nov 2022 03:23:27 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 77B6EE086F for ; Tue, 22 Nov 2022 03:23:27 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1FF7B340FD0 for ; Tue, 22 Nov 2022 03:23:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 797E7755 for ; Tue, 22 Nov 2022 03:23:24 +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: <1669087042.bee0d08c9993a955637119fcc33e1604050ba5eb.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/interceptty/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/interceptty/interceptty-0.6-r2.ebuild app-misc/interceptty/interceptty-0.6-r3.ebuild X-VCS-Directories: app-misc/interceptty/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: bee0d08c9993a955637119fcc33e1604050ba5eb X-VCS-Branch: master Date: Tue, 22 Nov 2022 03:23:24 +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: 7174ffce-2946-46a5-8797-59e69810c5bf X-Archives-Hash: 8655adb49ff1727e433008558ea18afe commit: bee0d08c9993a955637119fcc33e1604050ba5eb Author: Sam James gentoo org> AuthorDate: Tue Nov 22 02:27:39 2022 +0000 Commit: Sam James gentoo org> CommitDate: Tue Nov 22 03:17:22 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bee0d08c app-misc/interceptty: fix configure w/ clang 16 Signed-off-by: Sam James gentoo.org> .../{interceptty-0.6-r2.ebuild => interceptty-0.6-r3.ebuild} | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/app-misc/interceptty/interceptty-0.6-r2.ebuild b/app-misc/interceptty/interceptty-0.6-r3.ebuild similarity index 83% rename from app-misc/interceptty/interceptty-0.6-r2.ebuild rename to app-misc/interceptty/interceptty-0.6-r3.ebuild index 18e316366f4c..459a172da586 100644 --- a/app-misc/interceptty/interceptty-0.6-r2.ebuild +++ b/app-misc/interceptty/interceptty-0.6-r3.ebuild @@ -3,6 +3,8 @@ EAPI=8 +inherit autotools + DESCRIPTION="a program that can sit between a serial port and an application" HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" SRC_URI="http://www.suspectclass.com/~sgifford/${PN}/files/${P}.tar.gz" @@ -10,3 +12,10 @@ SRC_URI="http://www.suspectclass.com/~sgifford/${PN}/files/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 x86" + +src_prepare() { + default + + # Clang 16 + eautoreconf +}