From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 207A01581FB for ; Sun, 25 Aug 2024 15:41:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6ED30E2A44; Sun, 25 Aug 2024 15:41:35 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 588DBE2A44 for ; Sun, 25 Aug 2024 15:41:35 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9F9E6342FF9 for ; Sun, 25 Aug 2024 15:41:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CDD341F14 for ; Sun, 25 Aug 2024 15:41:31 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1724600415.69103fa9b95de28634242b19e99a1bcc93aac5ce.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/rocSPARSE/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/rocSPARSE/rocSPARSE-5.1.3-r1.ebuild sci-libs/rocSPARSE/rocSPARSE-5.7.1-r2.ebuild X-VCS-Directories: sci-libs/rocSPARSE/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 69103fa9b95de28634242b19e99a1bcc93aac5ce X-VCS-Branch: master Date: Sun, 25 Aug 2024 15:41: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: bf718059-6a2e-461c-8100-3b64c7b1efb5 X-Archives-Hash: b5142755870009c4e698408f1ec2c2a7 commit: 69103fa9b95de28634242b19e99a1bcc93aac5ce Author: Paul Zander gmail com> AuthorDate: Wed Aug 21 16:07:09 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Aug 25 15:40:15 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69103fa9 sci-libs/rocSPARSE: fix wrong find regextype Signed-off-by: Paul Zander gmail.com> Closes: https://github.com/gentoo/gentoo/pull/38239 Signed-off-by: Sam James gentoo.org> sci-libs/rocSPARSE/rocSPARSE-5.1.3-r1.ebuild | 2 +- sci-libs/rocSPARSE/rocSPARSE-5.7.1-r2.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sci-libs/rocSPARSE/rocSPARSE-5.1.3-r1.ebuild b/sci-libs/rocSPARSE/rocSPARSE-5.1.3-r1.ebuild index 31d07cee0a08..c18eeff84c43 100644 --- a/sci-libs/rocSPARSE/rocSPARSE-5.1.3-r1.ebuild +++ b/sci-libs/rocSPARSE/rocSPARSE-5.1.3-r1.ebuild @@ -94,7 +94,7 @@ src_prepare() { mkdir -p "${BUILD_DIR}"/clients/matrices # compile and use the mtx2csr converter. Do not use any optimization flags, because it causes error! edo $(tc-getCXX) deps/convert.cpp -o deps/convert - find "${WORKDIR}" -maxdepth 2 -regextype grep -E -regex ".*/(.*)/\1\.mtx" -print0 | + find "${WORKDIR}" -maxdepth 2 -regextype egrep -regex ".*/(.*)/\1\.mtx" -print0 | while IFS= read -r -d '' mtxfile; do destination=${BUILD_DIR}/clients/matrices/$(basename -s '.mtx' ${mtxfile}).csr ebegin "Converting ${mtxfile} to ${destination}" diff --git a/sci-libs/rocSPARSE/rocSPARSE-5.7.1-r2.ebuild b/sci-libs/rocSPARSE/rocSPARSE-5.7.1-r2.ebuild index e370820ce9dc..1864cd0ee3b2 100644 --- a/sci-libs/rocSPARSE/rocSPARSE-5.7.1-r2.ebuild +++ b/sci-libs/rocSPARSE/rocSPARSE-5.7.1-r2.ebuild @@ -95,7 +95,7 @@ src_prepare() { mkdir -p "${BUILD_DIR}"/clients/matrices # compile and use the mtx2csr converter. Do not use any optimization flags, because it causes error! edo $(tc-getCXX) deps/convert.cpp -o deps/convert - find "${WORKDIR}" -maxdepth 2 -regextype grep -E -regex ".*/(.*)/\1\.mtx" -print0 | + find "${WORKDIR}" -maxdepth 2 -regextype egrep -regex ".*/(.*)/\1\.mtx" -print0 | while IFS= read -r -d '' mtxfile; do destination=${BUILD_DIR}/clients/matrices/$(basename -s '.mtx' ${mtxfile}).csr ebegin "Converting ${mtxfile} to ${destination}"