Diff bloaty-1.1-r1 with a bloaty-9999

/usr/portage/dev-util/bloaty/bloaty-9999.ebuild 2025-10-20 18:18:07.453875500 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
inherit cmake
6
inherit cmake flag-o-matic
7 7

  
8 8
DESCRIPTION="A size profiler for binaries"
9 9
HOMEPAGE="https://github.com/google/bloaty"
......
15 15
	RESTRICT="!test? ( test )"
16 16
else
17 17
	SRC_URI="https://github.com/google/${PN}/releases/download/v${PV}/${P}.tar.bz2"
18
	KEYWORDS="amd64 ~arm64 ~loong"
18
	KEYWORDS="~amd64 ~arm64 ~loong"
19 19
fi
20 20

  
21 21
LICENSE="Apache-2.0"
......
32 32
"
33 33
RDEPEND="${DEPEND}"
34 34

  
35
PATCHES=(
36
	"${FILESDIR}"/${PN}-1.1-system-abseil.patch
37
)
38

  
39 35
src_configure() {
40 36
	local mycmakeargs=(
41 37
		-DBLOATY_ENABLE_CMAKETARGETS=OFF
......
49 45
		)
50 46
	fi
51 47

  
48
	# capstone-6 compatibility (#964344)
49
	append-flags -DCAPSTONE_AARCH64_COMPAT_HEADER
50

  
52 51
	cmake_src_configure
53 52
}
Thank you!