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 6D1F615800F for ; Mon, 6 Feb 2023 22:19:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 29B07E0831; Mon, 6 Feb 2023 22:19:57 +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 0BDC1E0831 for ; Mon, 6 Feb 2023 22:19:56 +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 B9F7C340B9C for ; Mon, 6 Feb 2023 22:19:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0EF308A0 for ; Mon, 6 Feb 2023 22:19:54 +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: <1675721948.b8d0888f0c70069afc41163d0ad578fc620cddd7.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-misc/lttoolbox/, sci-misc/lttoolbox/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-misc/lttoolbox/files/lttoolbox-3.7.1-cstdint-include.patch sci-misc/lttoolbox/lttoolbox-3.7.1.ebuild X-VCS-Directories: sci-misc/lttoolbox/files/ sci-misc/lttoolbox/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b8d0888f0c70069afc41163d0ad578fc620cddd7 X-VCS-Branch: master Date: Mon, 6 Feb 2023 22:19:54 +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: dec977fa-357c-429d-8de1-403a4057fd2f X-Archives-Hash: ff0e43a9bac5cc03264dd768909e6724 commit: b8d0888f0c70069afc41163d0ad578fc620cddd7 Author: Sam James gentoo org> AuthorDate: Mon Feb 6 22:19:08 2023 +0000 Commit: Sam James gentoo org> CommitDate: Mon Feb 6 22:19:08 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8d0888f sci-misc/lttoolbox: fix build w/ gcc 13 (or musl) Closes: https://bugs.gentoo.org/889400 Signed-off-by: Sam James gentoo.org> .../files/lttoolbox-3.7.1-cstdint-include.patch | 21 +++++++++++++++++++++ sci-misc/lttoolbox/lttoolbox-3.7.1.ebuild | 3 ++- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/sci-misc/lttoolbox/files/lttoolbox-3.7.1-cstdint-include.patch b/sci-misc/lttoolbox/files/lttoolbox-3.7.1-cstdint-include.patch new file mode 100644 index 000000000000..c9fa2fda3aca --- /dev/null +++ b/sci-misc/lttoolbox/files/lttoolbox-3.7.1-cstdint-include.patch @@ -0,0 +1,21 @@ +https://github.com/apertium/lttoolbox/pull/173 + +From 8873eb40827179c821c4979563063200e144d129 Mon Sep 17 00:00:00 2001 +From: Sam James +Date: Mon, 6 Feb 2023 22:16:49 +0000 +Subject: [PATCH] acx: Add missing include + +Needed for int32_t. Fixes build w/ musl but also likely gcc 13. + +Bug: https://bugs.gentoo.org/889400 +--- a/lttoolbox/acx.h ++++ b/lttoolbox/acx.h +@@ -18,6 +18,7 @@ + #define _ACXPARSEUTIL_ + + #include ++#include + #include + + std::map> readACX(const char* file); + diff --git a/sci-misc/lttoolbox/lttoolbox-3.7.1.ebuild b/sci-misc/lttoolbox/lttoolbox-3.7.1.ebuild index f06d069fc3c1..93544468e10d 100644 --- a/sci-misc/lttoolbox/lttoolbox-3.7.1.ebuild +++ b/sci-misc/lttoolbox/lttoolbox-3.7.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -24,6 +24,7 @@ BDEPEND="virtual/pkgconfig" PATCHES=( "${FILESDIR}"/${PN}-3.7.1-bashism.patch + "${FILESDIR}"/${PN}-3.7.1-cstdint-include.patch ) src_prepare() {