From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 2CE6A1581FD for ; Thu, 11 Sep 2025 21:16:28 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 115E9335CB4 for ; Thu, 11 Sep 2025 21:16:28 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id E72AA110377; Thu, 11 Sep 2025 21:16:26 +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 bobolink.gentoo.org (Postfix) with ESMTPS id DA7AF110377 for ; Thu, 11 Sep 2025 21:16:26 +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 766D4340D58 for ; Thu, 11 Sep 2025 21:16:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D8C823966 for ; Thu, 11 Sep 2025 21:16:24 +0000 (UTC) From: "Sergey Torokhov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergey Torokhov" Message-ID: <1757625273.c0c4bd65532c333ad6281bce5e2dc5c0aead8ed2.SergeyTorokhov@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: games-board/openriichi/ X-VCS-Repository: repo/proj/guru X-VCS-Files: games-board/openriichi/openriichi-0.2.1.1-r1.ebuild games-board/openriichi/openriichi-0.2.1.1.ebuild X-VCS-Directories: games-board/openriichi/ X-VCS-Committer: SergeyTorokhov X-VCS-Committer-Name: Sergey Torokhov X-VCS-Revision: c0c4bd65532c333ad6281bce5e2dc5c0aead8ed2 X-VCS-Branch: dev Date: Thu, 11 Sep 2025 21:16: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: 5f0b924d-5d24-4d3b-97f7-11e226b28207 X-Archives-Hash: 19e9201b94196804dbb84c557945d731 commit: c0c4bd65532c333ad6281bce5e2dc5c0aead8ed2 Author: Sergey Torokhov yandex ru> AuthorDate: Thu Sep 11 21:07:34 2025 +0000 Commit: Sergey Torokhov yandex ru> CommitDate: Thu Sep 11 21:14:33 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c0c4bd65 games-board/openriichi: append -Wno-int-conversion to fix build Fix clang and gcc-{14.3.0,15.2.0} 'integer to pointer conversion' build error the way used in Fedora Linux spec (see issue [1]). [1] https://bugzilla.redhat.com/show_bug.cgi/show_bug.cgi?id=2340975 Closes: https://bugs.gentoo.org/887645 Closes: https://bugs.gentoo.org/945214 Signed-off-by: Sergey Torokhov yandex.ru> .../{openriichi-0.2.1.1.ebuild => openriichi-0.2.1.1-r1.ebuild} | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/games-board/openriichi/openriichi-0.2.1.1.ebuild b/games-board/openriichi/openriichi-0.2.1.1-r1.ebuild similarity index 84% rename from games-board/openriichi/openriichi-0.2.1.1.ebuild rename to games-board/openriichi/openriichi-0.2.1.1-r1.ebuild index 7aab0b7a3e..1636836baa 100644 --- a/games-board/openriichi/openriichi-0.2.1.1.ebuild +++ b/games-board/openriichi/openriichi-0.2.1.1-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit desktop meson vala xdg +inherit desktop flag-o-matic meson vala xdg Engine_sha="e495846970a1b38d00c81a3f74568030f976ed31" MY_PN="OpenRiichi" @@ -40,6 +40,8 @@ src_prepare() { #switch vsync ON by default sed -i -e "s/v_sync = OnOffEnum.OFF/v_sync = OnOffEnum.ON/" "${S}/source/Game/Options.vala" || die + # bugs 887645, 945214 (fix clang, gcc-{14.3.0,15.2.0} 'integer to pointer conversion' build error) + append-cflags -Wno-int-conversion vala_setup }