diff --git a/dev-cpp/xsimd/xsimd-13.2.0.ebuild b/dev-cpp/xsimd/xsimd-13.2.0.ebuild index c485908fa4f89..390dc355a4125 100644 --- a/dev-cpp/xsimd/xsimd-13.2.0.ebuild +++ b/dev-cpp/xsimd/xsimd-13.2.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/xtensor-stack/${PN}/archive/refs/tags/${PV}.tar.gz LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +KEYWORDS="amd64 arm ~arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc ~x86" IUSE="doc test" RESTRICT="!test? ( test )" diff --git a/dev-libs/sleef/sleef-3.8.ebuild b/dev-libs/sleef/sleef-3.8.ebuild index 66bf6bcdcb2fe..042301929384d 100644 --- a/dev-libs/sleef/sleef-3.8.ebuild +++ b/dev-libs/sleef/sleef-3.8.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/shibatch/${PN}/archive/refs/tags/${PV}.tar.gz LICENSE="Boost-1.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~riscv ~x86" +KEYWORDS="amd64 ~arm64 ~riscv ~x86" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-ml/fmt/Manifest b/dev-ml/fmt/Manifest index ff55d106063ac..71b3bc9f6aa89 100644 --- a/dev-ml/fmt/Manifest +++ b/dev-ml/fmt/Manifest @@ -1,2 +1,3 @@ DIST fmt-0.10.0.tbz 22854 BLAKE2B 09ec8b2d446829388598b356dab35ebc36f4272ce00a7010513d2be9f7efdd3a427d4685659fbd745161965981434ff7411e3f393b853eab6e3cf87871edda11 SHA512 26d7f2002f0f1d605c08129ec09d487a8c37d764b77370e56b869fd94fe6bc903f808159ab7b79e85c2e2b6263ee5fa7df66f9f9625bdf0e726e8a92a9056258 +DIST fmt-0.11.0.tbz 23336 BLAKE2B 665fb00441ec0a333d849dc77d99b86d9b9cb853a93a49ee0cf069562d0ef86dd182db04f3f0328b975ee9c796d2426148d9112ac3575e2560d95c332cc639e6 SHA512 3f40155fc6a7315202e410585964307d63416c8001fd243667ed9d8d1a02b67deecacb25e9c2feb409c537bbdfb7817d91168de4ddd643532ff51d6c1c696a4a DIST fmt-0.9.0.tbz 22699 BLAKE2B 6c251b7c32093a5860b8e5c18f6a92573e664e8a20eb4b85dc6e601a04045d9c55c1e4a4f5cb879ccc92046c15c5ff97d1877ab78ecfaa2a4aa83a9f49fd409e SHA512 66cf4b8bb92232a091dfda5e94d1c178486a358cdc34b1eec516d48ea5acb6209c0dfcb416f0c516c50ddbddb3c94549a45e4a6d5c5fd1c81d3374dec823a83b diff --git a/dev-ml/fmt/fmt-0.11.0.ebuild b/dev-ml/fmt/fmt-0.11.0.ebuild new file mode 100644 index 0000000000000..cf725015dd5da --- /dev/null +++ b/dev-ml/fmt/fmt-0.11.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit findlib opam + +DESCRIPTION="Combinators to devise OCaml Format pretty-printing functions" +HOMEPAGE="https://erratique.ch/software/fmt https://github.com/dbuenzli/fmt" +SRC_URI="https://erratique.ch/software/fmt/releases/${P}.tbz" + +LICENSE="ISC" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" +IUSE="test" +RESTRICT="test" + +RDEPEND=" + dev-ml/cmdliner:=[ocamlopt] + >=dev-lang/ocaml-4.08:=[ocamlopt] + dev-ml/result:=[ocamlopt] + dev-ml/stdlib-shims:=[ocamlopt] + dev-ml/uchar:=[ocamlopt] +" +DEPEND="${RDEPEND}" +BDEPEND=" + >=dev-ml/topkg-0.9 + dev-ml/ocamlbuild + dev-ml/findlib +" + +src_compile() { + ocaml pkg/pkg.ml build --tests $(usex test 'true' 'false') || die +}