Diff dump-0.4.47-r2 with a dump-0.4.47-r3

/usr/portage/app-arch/dump/dump-0.4.47-r3.ebuild 2024-12-25 14:59:47.035270038 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
inherit readme.gentoo-r1
6
inherit flag-o-matic readme.gentoo-r1
7 7

  
8 8
MY_P="${PN}-$(ver_rs 2 b)"
9 9

  
......
14 14

  
15 15
LICENSE="BSD"
16 16
SLOT="0"
17
KEYWORDS="~alpha amd64 ~hppa ppc ppc64 sparc x86"
17
KEYWORDS="~alpha amd64 ~hppa ~ppc ppc64 ~sparc x86"
18 18
# We keep uuid USE flag default dsiabled for this version. Don't forget
19 19
# to default enable it for later versions as this is the upstream default.
20 20
IUSE="bzip2 debug ermt lzo readline selinux sqlite ssl static test uuid zlib"
......
48 48
	virtual/os-headers"
49 49
BDEPEND="virtual/pkgconfig"
50 50

  
51
PATCHES=(
52
	"${FILESDIR}"/${PN}-fix-incompatible-pointer-to-integer-conversion.patch
53
)
54

  
51 55
src_configure() {
56
	# -Werror=lto-type-mismatch
57
	# https://bugs.gentoo.org/854204
58
	#
59
	# Abandoned upstream for 3 years. Known corruptions reported in
60
	# pkg_postinst. Sourceforge software. Not bothering to report a bug...
61
	filter-lto
62

  
52 63
	local myeconfargs=(
53 64
		--with-dumpdatespath=/etc/dumpdates
54 65
		--with-rmtpath='$(sbindir)/rmt'
Thank you!