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 3B0AD158020 for ; Sun, 4 Dec 2022 14:50:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F2830E0828; Sun, 4 Dec 2022 14:50:53 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D40FBE0827 for ; Sun, 4 Dec 2022 14:50:53 +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 73AD4341334 for ; Sun, 4 Dec 2022 14:50:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AF157780 for ; Sun, 4 Dec 2022 14:50:49 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1670165360.09dac3a7ca10c21ca15fdebba244f935445ef745.pacho@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.ebuild X-VCS-Directories: sci-libs/hipSPARSE/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 09dac3a7ca10c21ca15fdebba244f935445ef745 X-VCS-Branch: master Date: Sun, 4 Dec 2022 14:50:49 +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: bdf9b01b-4aba-4ace-85b0-c7d68568aa39 X-Archives-Hash: a210fec5bd29676a23e9a30f196c0641 commit: 09dac3a7ca10c21ca15fdebba244f935445ef745 Author: Pacho Ramos gentoo org> AuthorDate: Sun Dec 4 14:15:27 2022 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Dec 4 14:49:20 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09dac3a7 sci-libs/hipSPARSE: Replace obsolete egrep call Signed-off-by: Pacho Ramos gentoo.org> sci-libs/hipSPARSE/hipSPARSE-5.1.3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sci-libs/hipSPARSE/hipSPARSE-5.1.3.ebuild b/sci-libs/hipSPARSE/hipSPARSE-5.1.3.ebuild index 5962bd36caa1..d6354b8d77be 100644 --- a/sci-libs/hipSPARSE/hipSPARSE-5.1.3.ebuild +++ b/sci-libs/hipSPARSE/hipSPARSE-5.1.3.ebuild @@ -68,7 +68,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 egrep -regex ".*/(.*)/\1\.mtx" -print0 | + find "${WORKDIR}" -maxdepth 2 -regextype grep -E -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}"