From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 170AB1581B9 for ; Thu, 18 Sep 2025 19:10:35 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 0447934213B for ; Thu, 18 Sep 2025 19:10:35 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id EB6DC110573; Thu, 18 Sep 2025 19:10:33 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id E023D110573 for ; Thu, 18 Sep 2025 19:10:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 98362342134 for ; Thu, 18 Sep 2025 19:10:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F36FD2185 for ; Thu, 18 Sep 2025 19:10:31 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1758222579.cac0610ea61dda035a73bd3b4f20f06187e36a2c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/openblas/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/openblas/openblas-0.3.30-r3.ebuild X-VCS-Directories: sci-libs/openblas/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: cac0610ea61dda035a73bd3b4f20f06187e36a2c X-VCS-Branch: master Date: Thu, 18 Sep 2025 19:10:31 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: aecf9c70-4ce3-4447-a2cb-6a027d573363 X-Archives-Hash: 510870121b2627ccdeb1396fcb39ceb6 commit: cac0610ea61dda035a73bd3b4f20f06187e36a2c Author: Michał Górny gentoo org> AuthorDate: Thu Sep 18 18:38:19 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Sep 18 19:09:39 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cac0610e sci-libs/openblas: Use doexe for eselect-ldso execs Signed-off-by: Michał Górny gentoo.org> sci-libs/openblas/openblas-0.3.30-r3.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sci-libs/openblas/openblas-0.3.30-r3.ebuild b/sci-libs/openblas/openblas-0.3.30-r3.ebuild index 7db589e0b158..e44e9124a042 100644 --- a/sci-libs/openblas/openblas-0.3.30-r3.ebuild +++ b/sci-libs/openblas/openblas-0.3.30-r3.ebuild @@ -172,13 +172,13 @@ src_install() { fi if use eselect-ldso; then - insinto /usr/${libdir}/blas/openblas/ - doins interface/lib{,c}blas.so.3 + exeinto /usr/${libdir}/blas/openblas/ + doexe interface/lib{,c}blas.so.3 dosym libblas.so.3 /usr/${libdir}/blas/openblas/libblas.so dosym libcblas.so.3 /usr/${libdir}/blas/openblas/libcblas.so - insinto /usr/${libdir}/lapack/openblas/ - doins interface/liblapack{,e}.so.3 + exeinto /usr/${libdir}/lapack/openblas/ + doexe interface/liblapack{,e}.so.3 dosym liblapack.so.3 /usr/${libdir}/lapack/openblas/liblapack.so dosym liblapacke.so.3 /usr/${libdir}/lapack/openblas/liblapacke.so fi