From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1168474-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id 31658138359
	for <garchives@archives.gentoo.org>; Wed,  6 May 2020 01:27:16 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 5ACF3E0A49;
	Wed,  6 May 2020 01:27:15 +0000 (UTC)
Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 44DF8E0A49
	for <gentoo-commits@lists.gentoo.org>; Wed,  6 May 2020 01:27:15 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 05D7834F543
	for <gentoo-commits@lists.gentoo.org>; Wed,  6 May 2020 01:27:14 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 820FB213
	for <gentoo-commits@lists.gentoo.org>; Wed,  6 May 2020 01:27:11 +0000 (UTC)
From: "Göktürk Yüksek" <gokturk@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, "Göktürk Yüksek" <gokturk@gentoo.org>
Message-ID: <1588728414.3042eb961ee68ff8228b1a1a6a5ad842b4e8f1c2.gokturk@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: net-fs/davfs2/
X-VCS-Repository: repo/gentoo
X-VCS-Files: net-fs/davfs2/davfs2-1.5.6-r1.ebuild net-fs/davfs2/davfs2-1.5.6.ebuild
X-VCS-Directories: net-fs/davfs2/
X-VCS-Committer: gokturk
X-VCS-Committer-Name: Göktürk Yüksek
X-VCS-Revision: 3042eb961ee68ff8228b1a1a6a5ad842b4e8f1c2
X-VCS-Branch: master
Date: Wed,  6 May 2020 01:27:11 +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: af62bcbf-6246-416d-942e-9cbf361d732c
X-Archives-Hash: ff35940aa2e0dd60396b0a643bfa6751

commit:     3042eb961ee68ff8228b1a1a6a5ad842b4e8f1c2
Author:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
AuthorDate: Wed May  6 01:25:09 2020 +0000
Commit:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Wed May  6 01:26:54 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3042eb96

net-fs/davfs2: prevent the compression of man for all supported langs

Package-Manager: Portage-2.3.69, Repoman-2.3.14
Signed-off-by: Göktürk Yüksek <gokturk <AT> gentoo.org>

 net-fs/davfs2/{davfs2-1.5.6.ebuild => davfs2-1.5.6-r1.ebuild} | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/net-fs/davfs2/davfs2-1.5.6.ebuild b/net-fs/davfs2/davfs2-1.5.6-r1.ebuild
similarity index 87%
rename from net-fs/davfs2/davfs2-1.5.6.ebuild
rename to net-fs/davfs2/davfs2-1.5.6-r1.ebuild
index 6f227c81212..1786c1a079a 100644
--- a/net-fs/davfs2/davfs2-1.5.6.ebuild
+++ b/net-fs/davfs2/davfs2-1.5.6-r1.ebuild
@@ -27,9 +27,12 @@ RDEPEND="${RDEPEND}
 "
 
 src_prepare() {
+	local f
+
 	# Let the package manager handle man page compression
-	sed -e '/^manual[58]_DATA/ s/\.gz//g' \
-		-i "${S}"/man/Makefile.in || die
+	while IFS="" read -d $'\0' -r f ; do
+		sed -e '/^manual[58]_DATA/ s/[.]gz//g' -i "${f}" || die
+	done < <(find "${S}"/man -type f -name 'Makefile.in' -print0)
 
 	eapply "${FILESDIR}"/${PN}-1.5.5-gcc-10.patch \
 		   "${FILESDIR}"/${P}-neon31-support.patch