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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 87A72158041 for ; Sat, 2 Mar 2024 23:52:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C25E4E2A14; Sat, 2 Mar 2024 23:52:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 A41C3E2A14 for ; Sat, 2 Mar 2024 23:52:01 +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 C918633BE4D for ; Sat, 2 Mar 2024 23:52:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 12DB3E95 for ; Sat, 2 Mar 2024 23:51:59 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1709423488.0009bd5cdb3a1fb760f30987ea929094f184de3b.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/cfssl/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/cfssl/cfssl-1.4.1.ebuild app-crypt/cfssl/cfssl-1.6.0.ebuild app-crypt/cfssl/cfssl-1.6.4.ebuild X-VCS-Directories: app-crypt/cfssl/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 0009bd5cdb3a1fb760f30987ea929094f184de3b X-VCS-Branch: master Date: Sat, 2 Mar 2024 23:51:59 +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: 7b1c5967-8233-46cb-983c-16b56ed12a6c X-Archives-Hash: 887f2b20be40034482274d6cbcedad70 commit: 0009bd5cdb3a1fb760f30987ea929094f184de3b Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat Mar 2 23:51:28 2024 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Sat Mar 2 23:51:28 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0009bd5c app-crypt/cfssl: Apply musl-1.2.4 largefile workaround Bug: https://bugs.gentoo.org/905997 Signed-off-by: Andreas K. Hüttel gentoo.org> app-crypt/cfssl/cfssl-1.4.1.ebuild | 5 ++++- app-crypt/cfssl/cfssl-1.6.0.ebuild | 5 ++++- app-crypt/cfssl/cfssl-1.6.4.ebuild | 3 +++ 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/app-crypt/cfssl/cfssl-1.4.1.ebuild b/app-crypt/cfssl/cfssl-1.4.1.ebuild index b660f9c05730..7541ce49e832 100644 --- a/app-crypt/cfssl/cfssl-1.4.1.ebuild +++ b/app-crypt/cfssl/cfssl-1.4.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -21,6 +21,9 @@ PATCHES=( ) src_compile() { + # bug 905997 + use elibc_musl && export CGO_CFLAGS="-D_LARGEFILE64_SOURCE" + CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" emake VERSION="${PV}" } diff --git a/app-crypt/cfssl/cfssl-1.6.0.ebuild b/app-crypt/cfssl/cfssl-1.6.0.ebuild index a9502128157a..3d244721ab37 100644 --- a/app-crypt/cfssl/cfssl-1.6.0.ebuild +++ b/app-crypt/cfssl/cfssl-1.6.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -21,6 +21,9 @@ PATCHES=( ) src_compile() { + # bug 905997 + use elibc_musl && export CGO_CFLAGS="-D_LARGEFILE64_SOURCE" + CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" emake VERSION="${PV}" } diff --git a/app-crypt/cfssl/cfssl-1.6.4.ebuild b/app-crypt/cfssl/cfssl-1.6.4.ebuild index 947d408f17b3..3d244721ab37 100644 --- a/app-crypt/cfssl/cfssl-1.6.4.ebuild +++ b/app-crypt/cfssl/cfssl-1.6.4.ebuild @@ -21,6 +21,9 @@ PATCHES=( ) src_compile() { + # bug 905997 + use elibc_musl && export CGO_CFLAGS="-D_LARGEFILE64_SOURCE" + CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" emake VERSION="${PV}" }