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 C1B37158083 for ; Sat, 7 Sep 2024 22:09:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E1FBDE2A09; Sat, 7 Sep 2024 22:09:04 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C7B24E2A09 for ; Sat, 7 Sep 2024 22:09:04 +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 D04A133FE7D for ; Sat, 7 Sep 2024 22:09:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D51E714CA for ; Sat, 7 Sep 2024 22:09:01 +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: <1725746878.233b77e82c1c86e05f494d0314b99acaa127623a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/opencc/, app-i18n/opencc/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/opencc/files/opencc-1.1.7-fix-missing-cstdint-for-gcc-15.patch app-i18n/opencc/opencc-1.1.7-r1.ebuild app-i18n/opencc/opencc-1.1.7.ebuild X-VCS-Directories: app-i18n/opencc/files/ app-i18n/opencc/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 233b77e82c1c86e05f494d0314b99acaa127623a X-VCS-Branch: master Date: Sat, 7 Sep 2024 22:09:01 +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: e7a490b6-3d3d-4b6b-9380-dd63dff91de3 X-Archives-Hash: f0bdfce401c5dec166a96fb2ad28e171 commit: 233b77e82c1c86e05f494d0314b99acaa127623a Author: Yongxiang Liang gmail com> AuthorDate: Sat Sep 7 13:20:36 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat Sep 7 22:07:58 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=233b77e8 app-i18n/opencc: fix for gcc-15 Closes: https://bugs.gentoo.org/937629 Signed-off-by: Yongxiang Liang gmail.com> Closes: https://github.com/gentoo/gentoo/pull/38499 Signed-off-by: Sam James gentoo.org> .../files/opencc-1.1.7-fix-missing-cstdint-for-gcc-15.patch | 13 +++++++++++++ app-i18n/opencc/opencc-1.1.7-r1.ebuild | 4 ++++ app-i18n/opencc/opencc-1.1.7.ebuild | 4 ++++ 3 files changed, 21 insertions(+) diff --git a/app-i18n/opencc/files/opencc-1.1.7-fix-missing-cstdint-for-gcc-15.patch b/app-i18n/opencc/files/opencc-1.1.7-fix-missing-cstdint-for-gcc-15.patch new file mode 100644 index 000000000000..8e80ff29014c --- /dev/null +++ b/app-i18n/opencc/files/opencc-1.1.7-fix-missing-cstdint-for-gcc-15.patch @@ -0,0 +1,13 @@ +https://github.com/BYVoid/OpenCC/pull/894 +Fix missing cstdint for GCC 15 + +--- a/src/SerializedValues.cpp ++++ b/src/SerializedValues.cpp +@@ -17,6 +17,7 @@ + */ + + #include ++#include + #include + + #include "Lexicon.hpp" diff --git a/app-i18n/opencc/opencc-1.1.7-r1.ebuild b/app-i18n/opencc/opencc-1.1.7-r1.ebuild index 89372cdb262c..afce6038391d 100644 --- a/app-i18n/opencc/opencc-1.1.7-r1.ebuild +++ b/app-i18n/opencc/opencc-1.1.7-r1.ebuild @@ -47,6 +47,10 @@ BDEPEND="${PYTHON_DEPS} DOCS=( AUTHORS NEWS.md README.md ) +PATCHES=( + "${FILESDIR}/${P}-fix-missing-cstdint-for-gcc-15.patch" +) + pkg_setup() { use python && python-single-r1_pkg_setup } diff --git a/app-i18n/opencc/opencc-1.1.7.ebuild b/app-i18n/opencc/opencc-1.1.7.ebuild index bb06c29d91af..300ca308f554 100644 --- a/app-i18n/opencc/opencc-1.1.7.ebuild +++ b/app-i18n/opencc/opencc-1.1.7.ebuild @@ -34,6 +34,10 @@ BDEPEND="${PYTHON_DEPS} DOCS=( AUTHORS NEWS.md README.md ) +PATCHES=( + "${FILESDIR}/${P}-fix-missing-cstdint-for-gcc-15.patch" +) + src_prepare() { rm -r deps || die