Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/timestamp/
Date: Sun, 19 Mar 2023 02:10:43
Message-Id: 1679190679.cd25dba2787287e20262d715509b795788347165.sam@gentoo
1 commit: cd25dba2787287e20262d715509b795788347165
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 19 01:51:19 2023 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 19 01:51:19 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd25dba2
7
8 app-misc/timestamp: fix configure w/ clang 16
9
10 Closes: https://bugs.gentoo.org/900481
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 .../{timestamp-1.1-r2.ebuild => timestamp-1.1-r3.ebuild} | 11 ++++++++++-
14 1 file changed, 10 insertions(+), 1 deletion(-)
15
16 diff --git a/app-misc/timestamp/timestamp-1.1-r2.ebuild b/app-misc/timestamp/timestamp-1.1-r3.ebuild
17 similarity index 73%
18 rename from app-misc/timestamp/timestamp-1.1-r2.ebuild
19 rename to app-misc/timestamp/timestamp-1.1-r3.ebuild
20 index 07b66665a018..e5086f9fa791 100644
21 --- a/app-misc/timestamp/timestamp-1.1-r2.ebuild
22 +++ b/app-misc/timestamp/timestamp-1.1-r3.ebuild
23 @@ -1,8 +1,10 @@
24 -# Copyright 1999-2022 Gentoo Authors
25 +# Copyright 1999-2023 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 EAPI=8
29
30 +inherit autotools
31 +
32 DESCRIPTION="A text filtering pipe that marks each line with a timestamp"
33 HOMEPAGE="http://math.smsu.edu/~erik/software.php?id=95"
34 SRC_URI="http://math.smsu.edu/~erik/files/${P}.tar.gz"
35 @@ -12,3 +14,10 @@ SLOT="0"
36 KEYWORDS="amd64 ppc x86"
37
38 RDEPEND="!sys-apps/moreutils"
39 +
40 +src_prepare() {
41 + default
42 +
43 + # Clang 16, bug #900481
44 + eautoreconf
45 +}