From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1690663-garchives=archives.gentoo.org@lists.gentoo.org> 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 83D15158042 for <garchives@archives.gentoo.org>; Sun, 17 Nov 2024 03:06:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 38C94E0A92; Sun, 17 Nov 2024 03:06:48 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 20AE5E0A92 for <gentoo-commits@lists.gentoo.org>; Sun, 17 Nov 2024 03:06:48 +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 F356B340C3C for <gentoo-commits@lists.gentoo.org>; Sun, 17 Nov 2024 03:06:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 32FC91E89 for <gentoo-commits@lists.gentoo.org>; Sun, 17 Nov 2024 03:06:45 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1731812689.6ca13c446db93e30d53f59d49a9f86caca982f26.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/p11-kit/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/p11-kit/p11-kit-0.25.5.ebuild X-VCS-Directories: app-crypt/p11-kit/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6ca13c446db93e30d53f59d49a9f86caca982f26 X-VCS-Branch: master Date: Sun, 17 Nov 2024 03:06:45 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c3682990-aaaa-475f-b29d-b44b7cf5d075 X-Archives-Hash: 9ca3947397ae45c558c2007399942fe5 commit: 6ca13c446db93e30d53f59d49a9f86caca982f26 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sun Nov 17 03:04:49 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Nov 17 03:04:49 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ca13c44 app-crypt/p11-kit: build w/ -std=gnu17 Bug: https://github.com/p11-glue/p11-kit/issues/664 Signed-off-by: Sam James <sam <AT> gentoo.org> app-crypt/p11-kit/p11-kit-0.25.5.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app-crypt/p11-kit/p11-kit-0.25.5.ebuild b/app-crypt/p11-kit/p11-kit-0.25.5.ebuild index 0c23a73251f2..a45bc6063cc8 100644 --- a/app-crypt/p11-kit/p11-kit-0.25.5.ebuild +++ b/app-crypt/p11-kit/p11-kit-0.25.5.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{10..13} ) -inherit bash-completion-r1 meson-multilib python-any-r1 +inherit bash-completion-r1 flag-o-matic meson-multilib python-any-r1 DESCRIPTION="Provides a standard configuration setup for installing PKCS#11" HOMEPAGE="https://p11-glue.github.io/p11-glue/p11-kit.html" @@ -43,6 +43,9 @@ src_prepare() { } multilib_src_configure() { + # https://github.com/p11-glue/p11-kit/issues/664 + append-cflags -std=gnu17 + # Disable unsafe tests, bug#502088 export FAKED_MODE=1