Diff dd-rescue-1.99.12 with a dd-rescue-1.99.13

/usr/portage/sys-fs/dd-rescue/dd-rescue-1.99.13.ebuild 2023-10-09 14:52:35.504368502 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 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 flag-o-matic toolchain-funcs
7 7

  
......
14 14

  
15 15
LICENSE="GPL-2"
16 16
SLOT="0"
17
KEYWORDS="amd64 ~arm ~mips ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
17
KEYWORDS="amd64 ~arm ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
18 18
IUSE="cpu_flags_x86_avx2 lzo cpu_flags_x86_sse4_2 static xattr"
19 19

  
20
RDEPEND="lzo? ( dev-libs/lzo )
21
	xattr? ( sys-apps/attr )"
20
RDEPEND="
21
	lzo? ( dev-libs/lzo )
22
	xattr? ( sys-apps/attr )
23
"
22 24
DEPEND="${RDEPEND}"
23 25

  
24 26
S="${WORKDIR}/${MY_P}"
25 27

  
28
PATCHES=(
29
	"${FILESDIR}"/${PN}-1.99.13-musl.patch
30
)
31

  
26 32
src_prepare() {
27 33
	default
28 34

  
......
86 92
}
87 93

  
88 94
src_test() {
89
	append-cflags -fcommon # bug 707796
95
	append-cflags -fcommon # bug #707796
90 96
	_emake check
91 97
}
92 98

  
Thank you!