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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 615DD15A7D9 for ; Sun, 19 Mar 2023 02:10:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70BA1E0895; Sun, 19 Mar 2023 02:10:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 5C34CE0895 for ; Sun, 19 Mar 2023 02:10:42 +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 6D5743412C3 for ; Sun, 19 Mar 2023 02:10:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 92C2F7D8 for ; Sun, 19 Mar 2023 02:10:39 +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: <1679190679.cd25dba2787287e20262d715509b795788347165.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/timestamp/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/timestamp/timestamp-1.1-r2.ebuild app-misc/timestamp/timestamp-1.1-r3.ebuild X-VCS-Directories: app-misc/timestamp/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: cd25dba2787287e20262d715509b795788347165 X-VCS-Branch: master Date: Sun, 19 Mar 2023 02:10:39 +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: 87c58eec-97af-4d2c-b447-18cf2d73efb1 X-Archives-Hash: b68ae89b0dabc58132fc45f9c3f807f4 commit: cd25dba2787287e20262d715509b795788347165 Author: Sam James gentoo org> AuthorDate: Sun Mar 19 01:51:19 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 19 01:51:19 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd25dba2 app-misc/timestamp: fix configure w/ clang 16 Closes: https://bugs.gentoo.org/900481 Signed-off-by: Sam James gentoo.org> .../{timestamp-1.1-r2.ebuild => timestamp-1.1-r3.ebuild} | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/app-misc/timestamp/timestamp-1.1-r2.ebuild b/app-misc/timestamp/timestamp-1.1-r3.ebuild similarity index 73% rename from app-misc/timestamp/timestamp-1.1-r2.ebuild rename to app-misc/timestamp/timestamp-1.1-r3.ebuild index 07b66665a018..e5086f9fa791 100644 --- a/app-misc/timestamp/timestamp-1.1-r2.ebuild +++ b/app-misc/timestamp/timestamp-1.1-r3.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 +inherit autotools + DESCRIPTION="A text filtering pipe that marks each line with a timestamp" HOMEPAGE="http://math.smsu.edu/~erik/software.php?id=95" SRC_URI="http://math.smsu.edu/~erik/files/${P}.tar.gz" @@ -12,3 +14,10 @@ SLOT="0" KEYWORDS="amd64 ppc x86" RDEPEND="!sys-apps/moreutils" + +src_prepare() { + default + + # Clang 16, bug #900481 + eautoreconf +}