Diff davfs2-1.6.0-r1 with a davfs2-1.6.1-r1

/usr/portage/net-fs/davfs2/davfs2-1.6.1-r1.ebuild 2023-10-09 14:52:34.428368475 +0300
1 1
# Copyright 1999-2022 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6 6
inherit autotools
7 7

  
......
11 11

  
12 12
LICENSE="GPL-3+"
13 13
SLOT="0"
14
KEYWORDS="amd64 ~arm ~arm64 ppc x86"
14
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
15 15
IUSE="nls split-usr"
16 16
RESTRICT="test"
17 17

  
18 18
RDEPEND="dev-libs/libxml2
19
	net-libs/neon
19
	acct-group/davfs2
20
	acct-user/davfs2
21
	net-libs/neon:=
20 22
	sys-libs/zlib
21 23
	nls? ( virtual/libintl virtual/libiconv )
22 24
"
23
DEPEND="${RDEPEND}
25
BDEPEND="
24 26
	nls? ( sys-devel/gettext )
25 27
"
26
RDEPEND="${RDEPEND}
27
	acct-group/davfs2
28
	acct-user/davfs2
29
"
30

  
31
PATCHES=(
32
	"${FILESDIR}"/${PN}-1.6.0-neon-0.32-support.patch
33
)
34 28

  
35 29
src_prepare() {
36 30
	local f
......
38 32
	# Let the package manager handle man page compression
39 33
	while IFS="" read -d $'\0' -r f ; do
40 34
		sed -e '/^manual[58]_DATA/ s/[.]gz//g' -i "${f}" || die
41
	done < <(find "${S}"/man -type f -name 'Makefile.in' -print0)
35
	done < <(find "${S}"/man -type f -name 'Makefile.am' -print0)
42 36

  
43 37
	default
44 38
	eautoreconf
Thank you!