Diff xfsdump-3.1.10 with a xfsdump-3.1.11

/usr/portage/sys-fs/xfsdump/xfsdump-3.1.11.ebuild 2023-10-09 14:52:35.524368502 +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 toolchain-funcs
7 7

  
8
DESCRIPTION="xfs dump/restore utilities"
9
HOMEPAGE="https://xfs.wiki.kernel.org/"
8
DESCRIPTION="XFS dump/restore utilities"
9
HOMEPAGE="https://xfs.wiki.kernel.org/ https://git.kernel.org/pub/scm/fs/xfs/xfsdump-dev.git/"
10 10
SRC_URI="https://www.kernel.org/pub/linux/utils/fs/xfs/${PN}/${P}.tar.xz"
11 11

  
12 12
LICENSE="LGPL-2.1"
......
14 14
KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 -sparc x86"
15 15
IUSE="ncurses nls"
16 16

  
17
RDEPEND=">=sys-apps/attr-2.4.19
17
RDEPEND="
18
	>=sys-apps/attr-2.4.19
18 19
	sys-apps/util-linux
19 20
	sys-fs/e2fsprogs
20 21
	>=sys-fs/xfsprogs-3.2.0
21
	ncurses? ( sys-libs/ncurses:= )"
22
DEPEND="${RDEPEND}
23
	nls? (
24
		sys-devel/gettext
25
	)"
26
BDEPEND="ncurses? ( virtual/pkgconfig )"
22
	ncurses? ( sys-libs/ncurses:= )
23
"
24
DEPEND="${RDEPEND}"
25
BDEPEND="
26
	ncurses? ( virtual/pkgconfig )
27
	nls? ( sys-devel/gettext )
28
"
27 29

  
28 30
PATCHES=(
29 31
	# bug #335115
Thank you!