Gentoo Archives: gentoo-commits

From: "Göktürk Yüksek" <gokturk@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-fs/davfs2/
Date: Wed, 06 May 2020 01:27:16
Message-Id: 1588728414.3042eb961ee68ff8228b1a1a6a5ad842b4e8f1c2.gokturk@gentoo
1 commit: 3042eb961ee68ff8228b1a1a6a5ad842b4e8f1c2
2 Author: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 6 01:25:09 2020 +0000
4 Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
5 CommitDate: Wed May 6 01:26:54 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3042eb96
7
8 net-fs/davfs2: prevent the compression of man for all supported langs
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.14
11 Signed-off-by: Göktürk Yüksek <gokturk <AT> gentoo.org>
12
13 net-fs/davfs2/{davfs2-1.5.6.ebuild => davfs2-1.5.6-r1.ebuild} | 7 +++++--
14 1 file changed, 5 insertions(+), 2 deletions(-)
15
16 diff --git a/net-fs/davfs2/davfs2-1.5.6.ebuild b/net-fs/davfs2/davfs2-1.5.6-r1.ebuild
17 similarity index 87%
18 rename from net-fs/davfs2/davfs2-1.5.6.ebuild
19 rename to net-fs/davfs2/davfs2-1.5.6-r1.ebuild
20 index 6f227c81212..1786c1a079a 100644
21 --- a/net-fs/davfs2/davfs2-1.5.6.ebuild
22 +++ b/net-fs/davfs2/davfs2-1.5.6-r1.ebuild
23 @@ -27,9 +27,12 @@ RDEPEND="${RDEPEND}
24 "
25
26 src_prepare() {
27 + local f
28 +
29 # Let the package manager handle man page compression
30 - sed -e '/^manual[58]_DATA/ s/\.gz//g' \
31 - -i "${S}"/man/Makefile.in || die
32 + while IFS="" read -d $'\0' -r f ; do
33 + sed -e '/^manual[58]_DATA/ s/[.]gz//g' -i "${f}" || die
34 + done < <(find "${S}"/man -type f -name 'Makefile.in' -print0)
35
36 eapply "${FILESDIR}"/${PN}-1.5.5-gcc-10.patch \
37 "${FILESDIR}"/${P}-neon31-support.patch