commit: 6a16667d66513a7657684c096b09362b6cd7259a Author: Andrew Udvare <audvare <AT> gmail <DOT> com> AuthorDate: Sun Mar 23 06:42:49 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Jul 19 16:28:02 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a16667d
dev-libs/xbyak: add 7.28 Also switches to using CMake. Signed-off-by: Andrew Udvare <audvare <AT> gmail.com> Closes: https://bugs.gentoo.org/860816 Part-of: https://github.com/gentoo/gentoo/pull/41231 Closes: https://github.com/gentoo/gentoo/pull/41231 Signed-off-by: Sam James <sam <AT> gentoo.org> dev-libs/xbyak/Manifest | 1 + dev-libs/xbyak/xbyak-7.28.ebuild | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/dev-libs/xbyak/Manifest b/dev-libs/xbyak/Manifest index fb1b70d01a03..9da1622c0fb7 100644 --- a/dev-libs/xbyak/Manifest +++ b/dev-libs/xbyak/Manifest @@ -1 +1,2 @@ DIST xbyak-5.73.tar.gz 214021 BLAKE2B bf7ab78df7ac3f5a8860b3a613957bad8b6faba523126f6f4ce94be4ce25da8b91a418ac2445d8d706f09fc7434a8ab9ef6f63c56ef0b7860290fe6801849fe7 SHA512 1c2eb73c2e9b66d4b4f7689e071ea8ba8a3b7f0e05ef885ad35ca89f706772bd6e8ad448581c954b1a24f424ebd2db4e420410450a951fda7e02d6fd2e5e9a67 +DIST xbyak-7.28.tar.gz 293489 BLAKE2B 25a55d682d4219d50f09325e6455dc3c3fafa2d432d95fb61cb93589fec51e7ce8dac01a50a81e1354797d48e1687a08bbb040f08e6262dc59a1bff5378ef866 SHA512 443c5c0f14182e46b07af18ee5bd631a0557c37c6b92f6b19a3100dcc8f7b8baa100b7f142fc182cb8d74537bd69459f1065b39078a8a8d02f247133c9c46be4 diff --git a/dev-libs/xbyak/xbyak-7.28.ebuild b/dev-libs/xbyak/xbyak-7.28.ebuild new file mode 100644 index 000000000000..6abe95ceb47e --- /dev/null +++ b/dev-libs/xbyak/xbyak-7.28.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="JIT assembler for x86(IA-32)/x64(AMD64, x86-64)" +HOMEPAGE="https://github.com/herumi/xbyak" +SRC_URI="https://github.com/herumi/xbyak/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND=" + test? ( dev-lang/yasm ) +" + +src_test() { + emake -C test test +}
