Diff alsa-lib-1.2.8-r1 with a alsa-lib-1.2.9

/usr/portage/media-libs/alsa-lib/alsa-lib-1.2.9.ebuild 2023-10-09 14:52:31.656368405 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
PYTHON_COMPAT=( python3_{9..11} )
6
PYTHON_COMPAT=( python3_{10..11} )
7 7
inherit autotools multilib-minimal flag-o-matic python-single-r1
8 8

  
9 9
DESCRIPTION="Advanced Linux Sound Architecture Library"
......
34 34

  
35 35
PATCHES=(
36 36
	"${FILESDIR}/${PN}-1.1.6-missing_files.patch" # bug #652422
37
	"${FILESDIR}/${PN}-1.2.8-clang16-macro.patch"
38 37
)
39 38

  
40 39
pkg_setup() {
......
55 54
	# Broken upstream. Could in theory work with -flto-partitions=none
56 55
	# but it's a hack to workaround the real problem and not strictly safe.
57 56
	# bug #616108, bug #669086, and https://github.com/alsa-project/alsa-lib/issues/6.
57
	# (This bug is closed as of 1.2.9 but there's been no clear actual fix to it.
58
	# Let us know if you can identify one.)
58 59
	filter-lto
59 60

  
60 61
	local myeconfargs=(
......
91 92
}
92 93

  
93 94
multilib_src_install_all() {
94
	find "${ED}" -type f \( -name '*.a' -o -name '*.la' \) -delete || die
95
	find "${ED}" -type f -name '*.la' -delete || die
95 96

  
96 97
	dodoc ChangeLog doc/asoundrc.txt NOTES TODO
97 98
}
Thank you!