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 084BF158041 for ; Sun, 3 Mar 2024 16:50:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1119AE2A39; Sun, 3 Mar 2024 16:50:49 +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 E5984E2A39 for ; Sun, 3 Mar 2024 16:50: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 EB9CD33C84E for ; Sun, 3 Mar 2024 16:50:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5A11A1049 for ; Sun, 3 Mar 2024 16:50:46 +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: <1709484612.5dd1d90f9d2e064ed0c85043264f09734a6a842a.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/mdadm/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/mdadm/mdadm-4.2-r2.ebuild sys-fs/mdadm/mdadm-4.2-r3.ebuild X-VCS-Directories: sys-fs/mdadm/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 5dd1d90f9d2e064ed0c85043264f09734a6a842a X-VCS-Branch: master Date: Sun, 3 Mar 2024 16:50:46 +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: 5dfea5dd-cd4f-424a-95e0-32428fba7a06 X-Archives-Hash: a012030ff359ddf6ab34cd3500e1ba32 commit: 5dd1d90f9d2e064ed0c85043264f09734a6a842a Author: Andreas K. Hüttel gentoo org> AuthorDate: Sun Mar 3 16:50:12 2024 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Sun Mar 3 16:50:12 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5dd1d90f sys-fs/mdadm: Apply musl-1.2.4 largefile workaround Bug: https://bugs.gentoo.org/907082 Signed-off-by: Andreas K. Hüttel gentoo.org> sys-fs/mdadm/mdadm-4.2-r2.ebuild | 5 ++++- sys-fs/mdadm/mdadm-4.2-r3.ebuild | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/sys-fs/mdadm/mdadm-4.2-r2.ebuild b/sys-fs/mdadm/mdadm-4.2-r2.ebuild index 9dc8510225da..99bbc83b039d 100644 --- a/sys-fs/mdadm/mdadm-4.2-r2.ebuild +++ b/sys-fs/mdadm/mdadm-4.2-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -60,6 +60,9 @@ src_compile() { # CPPFLAGS won't work for this use udev || append-cflags -DNO_LIBUDEV + # bug 907082 + use elibc_musl && append-cppflags -D_LARGEFILE64_SOURCE + mdadm_emake all } diff --git a/sys-fs/mdadm/mdadm-4.2-r3.ebuild b/sys-fs/mdadm/mdadm-4.2-r3.ebuild index 176f5e80c06c..35a62d211b39 100644 --- a/sys-fs/mdadm/mdadm-4.2-r3.ebuild +++ b/sys-fs/mdadm/mdadm-4.2-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -61,6 +61,9 @@ src_compile() { # CPPFLAGS won't work for this use udev || append-cflags -DNO_LIBUDEV + # bug 907082 + use elibc_musl && append-cppflags -D_LARGEFILE64_SOURCE + mdadm_emake all }