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 8231415813A for ; Mon, 20 Jan 2025 22:46:44 +0000 (UTC) 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 (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 546DE33BEE9 for ; Mon, 20 Jan 2025 22:46:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6C5ADE01B5; Mon, 20 Jan 2025 22:46:42 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5361EE01B5 for ; Mon, 20 Jan 2025 22:46:42 +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 8A61533BEE9 for ; Mon, 20 Jan 2025 22:46:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ED40AB2C for ; Mon, 20 Jan 2025 22:46:39 +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: <1737413182.df3691cc93241ebefc33623539c5a9f9794eec6e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/subversion/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/subversion/subversion-1.14.5.ebuild X-VCS-Directories: dev-vcs/subversion/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: df3691cc93241ebefc33623539c5a9f9794eec6e X-VCS-Branch: master Date: Mon, 20 Jan 2025 22:46:39 +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: b1ac01ce-834d-4ec4-9156-8dba4aee7bb5 X-Archives-Hash: 64dc3eba363bcd6e1cfd1cb48e6cdc0e commit: df3691cc93241ebefc33623539c5a9f9794eec6e Author: Sam James gentoo org> AuthorDate: Mon Jan 20 22:46:03 2025 +0000 Commit: Sam James gentoo org> CommitDate: Mon Jan 20 22:46:22 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df3691cc dev-vcs/subversion: pass -std=gnu17 w/ USE=ruby It's needed for older Ruby, I think it's fixed in >=ruby3.3 headers. Bug: https://bugs.gentoo.org/932536 Signed-off-by: Sam James gentoo.org> dev-vcs/subversion/subversion-1.14.5.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-vcs/subversion/subversion-1.14.5.ebuild b/dev-vcs/subversion/subversion-1.14.5.ebuild index 887fd4522a84..4cdfaa3c5724 100644 --- a/dev-vcs/subversion/subversion-1.14.5.ebuild +++ b/dev-vcs/subversion/subversion-1.14.5.ebuild @@ -212,6 +212,9 @@ src_configure() { fi if use ruby; then + # bug #932536 (workaround for swig w/ older ruby) + append-flags -std=gnu17 + myconf+=( --with-swig-ruby="${EPREFIX}/usr/bin/ruby${RB_VER}" ) else myconf+=( --without-swig-ruby )