Diff boehm-gc-8.0.8 with a boehm-gc-8.2.2-r1

/usr/portage/dev-libs/boehm-gc/boehm-gc-8.2.2-r1.ebuild 2023-10-09 14:52:29.488368350 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
inherit multilib-minimal libtool
6
# autotools for Clang 15 configure patch
7
inherit autotools multilib-minimal #libtool
7 8

  
8 9
MY_P="gc-${PV}"
10

  
9 11
DESCRIPTION="The Boehm-Demers-Weiser conservative garbage collector"
10 12
HOMEPAGE="https://www.hboehm.info/gc/ https://github.com/ivmai/bdwgc/"
11 13
SRC_URI="https://github.com/ivmai/bdwgc/releases/download/v${PV}/${MY_P}.tar.gz"
......
15 17
# SONAME: libgc.so.1 libgccpp.so.1
16 18
# We've been using subslot 0 for these instead of "1.1".
17 19
SLOT="0"
18
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
20
# Upstream marked this version as "Pre-release"
21
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
19 22
IUSE="cxx +large static-libs +threads"
20 23

  
21 24
RDEPEND=">=dev-libs/libatomic_ops-7.4[${MULTILIB_USEDEP}]"
22 25
DEPEND="${RDEPEND}"
23 26
BDEPEND="virtual/pkgconfig"
24 27

  
28
PATCHES=(
29
	"${FILESDIR}"/${PN}-8.2.2-clang-15-configure.patch
30
)
31

  
25 32
src_prepare() {
26 33
	default
27 34

  
28 35
	# bug #594754
29
	elibtoolize
36
	#elibtoolize
37

  
38
	eautoreconf
30 39
}
31 40

  
32 41
multilib_src_configure() {
Thank you!