commit: 3b3a4312a86478754f3409d066a6ba63d4e22f72 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sat Dec 6 13:53:26 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Dec 6 13:53:26 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b3a4312
sci-libs/openblas: fix RESTRICT for USE=cpudetection If USE=-cpudetection, then we don't want binpkgs to be created, because detection is done at compile-time, not runtime. Fix the typo (missing '!'). Bug: https://bugs.gentoo.org/961818 Closes: https://bugs.gentoo.org/967040 Fixes: 59da9cb4ec69a8aa6fc924408e8e5c924b7acd91 Signed-off-by: Sam James <sam <AT> gentoo.org> .../openblas/{openblas-0.3.30-r3.ebuild => openblas-0.3.30-r4.ebuild} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sci-libs/openblas/openblas-0.3.30-r3.ebuild b/sci-libs/openblas/openblas-0.3.30-r4.ebuild similarity index 99% rename from sci-libs/openblas/openblas-0.3.30-r3.ebuild rename to sci-libs/openblas/openblas-0.3.30-r4.ebuild index 40c77680c347..123e1422eae0 100644 --- a/sci-libs/openblas/openblas-0.3.30-r3.ebuild +++ b/sci-libs/openblas/openblas-0.3.30-r4.ebuild @@ -16,7 +16,7 @@ SLOT="0" KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux ~x64-macos" IUSE="cpudetection eselect-ldso index64 openmp pthread relapack test" REQUIRED_USE="?? ( openmp pthread )" -RESTRICT="cpudetection? ( bindist ) !test? ( test )" +RESTRICT="!cpudetection? ( bindist ) !test? ( test )" RDEPEND=" eselect-ldso? (
