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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1FBB61582EF for ; Mon, 10 Feb 2025 09:01:39 +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 D44743430A8 for ; Mon, 10 Feb 2025 09:01:38 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 57FE71103CB; Mon, 10 Feb 2025 09:01:36 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 bobolink.gentoo.org (Postfix) with ESMTPS id 4EA731103CB for ; Mon, 10 Feb 2025 09:01:36 +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 06CF3343081 for ; Mon, 10 Feb 2025 09:01:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 656DB1ACB for ; Mon, 10 Feb 2025 09:01:34 +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: <1739177936.7c9b09b9a09d9036c68a806457fb9badc5a182da.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/gtk-gnutella/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/gtk-gnutella/gtk-gnutella-1.2.2-r1.ebuild net-p2p/gtk-gnutella/gtk-gnutella-1.2.3.ebuild X-VCS-Directories: net-p2p/gtk-gnutella/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7c9b09b9a09d9036c68a806457fb9badc5a182da X-VCS-Branch: master Date: Mon, 10 Feb 2025 09:01:34 +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: 2e59ccec-e873-42c4-9142-d6929bfc25ed X-Archives-Hash: 7d72bc854b6477dbb3b1bce7b2973eab commit: 7c9b09b9a09d9036c68a806457fb9badc5a182da Author: NHOrus yahoo com> AuthorDate: Thu Jan 23 18:12:46 2025 +0000 Commit: Sam James gentoo org> CommitDate: Mon Feb 10 08:58:56 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c9b09b9 net-p2p/gtk-gnutella: pin C version to gnu17 This package freely casts between pointers to gbooleans and internally defined bools (in this case, ints). Defining off internal definition of bool for C23 and then casting everywhere may cause serious problems in interoperability over the network. I feel the best would be to pin language version. Closes: https://bugs.gentoo.org/944982 Bug: https://bugs.gentoo.org/879745 Signed-off-by: NHOrus yahoo.com> Closes: https://github.com/gentoo/gentoo/pull/40277 Signed-off-by: Sam James gentoo.org> net-p2p/gtk-gnutella/gtk-gnutella-1.2.2-r1.ebuild | 8 ++++++-- net-p2p/gtk-gnutella/gtk-gnutella-1.2.3.ebuild | 8 ++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/net-p2p/gtk-gnutella/gtk-gnutella-1.2.2-r1.ebuild b/net-p2p/gtk-gnutella/gtk-gnutella-1.2.2-r1.ebuild index a5d6dc676a6f..bb326c940958 100644 --- a/net-p2p/gtk-gnutella/gtk-gnutella-1.2.2-r1.ebuild +++ b/net-p2p/gtk-gnutella/gtk-gnutella-1.2.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -9,8 +9,8 @@ DESCRIPTION="GTK+ Gnutella client" HOMEPAGE="https://gtk-gnutella.sourceforge.net/" SRC_URI="https://github.com/gtk-gnutella/gtk-gnutella/archive/v${PV}.tar.gz -> ${P}.tar.gz" -SLOT="0" LICENSE="CC-BY-SA-4.0 GPL-2" +SLOT="0" KEYWORDS="amd64 ppc ppc64 x86" IUSE="nls dbus ssl +gtk" @@ -28,6 +28,10 @@ BDEPEND="virtual/pkgconfig" src_prepare() { filter-lto + # bug https://bugs.gentoo.org/944982 + # we have custom bool we interoperate with gboolean + append-cflags -std=gnu17 + strip-linguas -i po echo "# Gentoo-selected LINGUAS" > po/LINGUAS diff --git a/net-p2p/gtk-gnutella/gtk-gnutella-1.2.3.ebuild b/net-p2p/gtk-gnutella/gtk-gnutella-1.2.3.ebuild index 5b8114f35cac..d7644e1c7a42 100644 --- a/net-p2p/gtk-gnutella/gtk-gnutella-1.2.3.ebuild +++ b/net-p2p/gtk-gnutella/gtk-gnutella-1.2.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -9,8 +9,8 @@ DESCRIPTION="GTK+ Gnutella client" HOMEPAGE="https://gtk-gnutella.sourceforge.io/" SRC_URI="https://github.com/gtk-gnutella/gtk-gnutella/archive/v${PV}.tar.gz -> ${P}.tar.gz" -SLOT="0" LICENSE="CC-BY-SA-4.0 GPL-2" +SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" IUSE="nls dbus ssl +gtk" @@ -28,6 +28,10 @@ BDEPEND="virtual/pkgconfig" src_prepare() { filter-lto + # bug https://bugs.gentoo.org/944982 + # we have custom bool we interoperate with gboolean + append-cflags -std=gnu17 + strip-linguas -i po echo "# Gentoo-selected LINGUAS" > po/LINGUAS