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 97BB41581FB for ; Sun, 25 Aug 2024 15:41:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 75900E2A42; Sun, 25 Aug 2024 15:41:34 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 58E1AE2A42 for ; Sun, 25 Aug 2024 15:41:34 +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 5CB2334300E for ; Sun, 25 Aug 2024 15:41:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B9E3A1F12 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: <1724600414.593d004b350975378a396c17c03a2493783d68c1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/hipSPARSE/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/hipSPARSE/hipSPARSE-5.1.3-r1.ebuild sci-libs/hipSPARSE/hipSPARSE-5.7.1.ebuild sci-libs/hipSPARSE/hipSPARSE-6.1.1.ebuild X-VCS-Directories: sci-libs/hipSPARSE/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 593d004b350975378a396c17c03a2493783d68c1 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: fcb20f88-172c-4422-8ae3-ecbf5e6eadb8 X-Archives-Hash: 48fc2cb8a758601fd3abef5fb25704f2 commit: 593d004b350975378a396c17c03a2493783d68c1 Author: Paul Zander gmail com> AuthorDate: Wed Aug 21 16:06:55 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Aug 25 15:40:14 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=593d004b sci-libs/hipSPARSE: fix wrong find regextype Signed-off-by: Paul Zander gmail.com> Signed-off-by: Sam James gentoo.org> sci-libs/hipSPARSE/hipSPARSE-5.1.3-r1.ebuild | 2 +- sci-libs/hipSPARSE/hipSPARSE-5.7.1.ebuild | 2 +- sci-libs/hipSPARSE/hipSPARSE-6.1.1.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sci-libs/hipSPARSE/hipSPARSE-5.1.3-r1.ebuild b/sci-libs/hipSPARSE/hipSPARSE-5.1.3-r1.ebuild index d0d519b18ce6..3a05960c2cc7 100644 --- a/sci-libs/hipSPARSE/hipSPARSE-5.1.3-r1.ebuild +++ b/sci-libs/hipSPARSE/hipSPARSE-5.1.3-r1.ebuild @@ -71,7 +71,7 @@ src_prepare() { mkdir -p "${BUILD_DIR}"/clients/matrices # compile and use the mtx2bin converter. Do not use any optimization flags! 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}).bin ebegin "Converting ${mtxfile} to ${destination}" diff --git a/sci-libs/hipSPARSE/hipSPARSE-5.7.1.ebuild b/sci-libs/hipSPARSE/hipSPARSE-5.7.1.ebuild index b3aa027c2624..c0c211e6fde5 100644 --- a/sci-libs/hipSPARSE/hipSPARSE-5.7.1.ebuild +++ b/sci-libs/hipSPARSE/hipSPARSE-5.7.1.ebuild @@ -69,7 +69,7 @@ src_prepare() { mkdir -p "${BUILD_DIR}"/clients/matrices # compile and use the mtx2bin converter. Do not use any optimization flags! 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}).bin ebegin "Converting ${mtxfile} to ${destination}" diff --git a/sci-libs/hipSPARSE/hipSPARSE-6.1.1.ebuild b/sci-libs/hipSPARSE/hipSPARSE-6.1.1.ebuild index 46d70c4b6625..2176f205682a 100644 --- a/sci-libs/hipSPARSE/hipSPARSE-6.1.1.ebuild +++ b/sci-libs/hipSPARSE/hipSPARSE-6.1.1.ebuild @@ -57,7 +57,7 @@ src_prepare() { mkdir -p "${BUILD_DIR}"/clients/matrices # compile and use the mtx2bin converter. Do not use any optimization flags! 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}).bin ebegin "Converting ${mtxfile} to ${destination}"