From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1606946-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 (2048 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id B211D158041
	for <garchives@archives.gentoo.org>; Sun,  3 Mar 2024 20:38:49 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id C0D0AE2A9E;
	Sun,  3 Mar 2024 20:38: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))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 9D2BBE2A9E
	for <gentoo-commits@lists.gentoo.org>; Sun,  3 Mar 2024 20:38: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 9DC6F33C84E
	for <gentoo-commits@lists.gentoo.org>; Sun,  3 Mar 2024 20:38:47 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id EF8C91049
	for <gentoo-commits@lists.gentoo.org>; Sun,  3 Mar 2024 20:38:45 +0000 (UTC)
From: "Andreas K. Hüttel" <dilfridge@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, "Andreas K. Hüttel" <dilfridge@gentoo.org>
Message-ID: <1709498314.d3aaeba9d0b1bf4930bd2b074abd58f2ec6573f1.dilfridge@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/retroshare/
X-VCS-Repository: repo/gentoo
X-VCS-Files: net-p2p/retroshare/retroshare-0.6.6-r1.ebuild
X-VCS-Directories: net-p2p/retroshare/
X-VCS-Committer: dilfridge
X-VCS-Committer-Name: Andreas K. Hüttel
X-VCS-Revision: d3aaeba9d0b1bf4930bd2b074abd58f2ec6573f1
X-VCS-Branch: master
Date: Sun,  3 Mar 2024 20:38: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: b2be8516-e717-4fb4-b7bf-38476d23d255
X-Archives-Hash: 8d388a8733cd37ef04f1ae615055827e

commit:     d3aaeba9d0b1bf4930bd2b074abd58f2ec6573f1
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sun Mar  3 20:37:36 2024 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sun Mar  3 20:38:34 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3aaeba9

net-p2p/retroshare: Apply musl-1.2.4 largefile workaround

Bug: https://bugs.gentoo.org/907898
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>

 net-p2p/retroshare/retroshare-0.6.6-r1.ebuild | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/net-p2p/retroshare/retroshare-0.6.6-r1.ebuild b/net-p2p/retroshare/retroshare-0.6.6-r1.ebuild
index 2d5b75c038d1..ba21bf7b2854 100644
--- a/net-p2p/retroshare/retroshare-0.6.6-r1.ebuild
+++ b/net-p2p/retroshare/retroshare-0.6.6-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit desktop qmake-utils xdg
+inherit flag-o-matic desktop qmake-utils xdg
 
 DESCRIPTION="P2P private sharing application"
 HOMEPAGE="https://retroshare.cc"
@@ -69,6 +69,9 @@ src_configure() {
 	use miniupnp && qupnplibs="miniupnpc"
 	use libupnp && qupnplibs="upnp ixml"
 
+	# bug 907898
+	use elibc_musl && append-flags -D_LARGEFILE64_SOURCE
+
 	eqmake5 CONFIG+="${qconfigs[*]}" \
 		RS_MAJOR_VERSION=$(ver_cut 1) RS_MINOR_VERSION=$(ver_cut 2) \
 		RS_MINI_VERSION=$(ver_cut 3) RS_EXTRA_VERSION="-gentoo-${PR}" \