From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (unknown [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 36457158094 for ; Sat, 25 Jun 2022 23:14:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BE847E086F; Sat, 25 Jun 2022 23:14:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 88ED1E086F for ; Sat, 25 Jun 2022 23:14:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 51F0A341274 for ; Sat, 25 Jun 2022 23:14:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B3E4F471 for ; Sat, 25 Jun 2022 23:14:26 +0000 (UTC) From: "Matthias Maier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthias Maier" Message-ID: <1656198860.dba1fa4e440b7af90548efbc1d618436f9f96b99.tamiko@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/hdf5/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/hdf5/hdf5-1.12.2-r4.ebuild X-VCS-Directories: sci-libs/hdf5/ X-VCS-Committer: tamiko X-VCS-Committer-Name: Matthias Maier X-VCS-Revision: dba1fa4e440b7af90548efbc1d618436f9f96b99 X-VCS-Branch: master Date: Sat, 25 Jun 2022 23:14:26 +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: 2c08837f-73bd-4852-885b-6240b350b4c5 X-Archives-Hash: 86059f812bcd8a124033139cb1b9876f commit: dba1fa4e440b7af90548efbc1d618436f9f96b99 Author: Matthias Maier gentoo org> AuthorDate: Sat Jun 25 23:11:23 2022 +0000 Commit: Matthias Maier gentoo org> CommitDate: Sat Jun 25 23:14:20 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dba1fa4e sci-libs/hdf5: attempt to delete perf binary only when USE=mpi Closes: https://bugs.gentoo.org/854183 Signed-off-by: Matthias Maier gentoo.org> sci-libs/hdf5/hdf5-1.12.2-r4.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sci-libs/hdf5/hdf5-1.12.2-r4.ebuild b/sci-libs/hdf5/hdf5-1.12.2-r4.ebuild index dc668a1d721d..7cb1b8716025 100644 --- a/sci-libs/hdf5/hdf5-1.12.2-r4.ebuild +++ b/sci-libs/hdf5/hdf5-1.12.2-r4.ebuild @@ -109,5 +109,5 @@ src_install() { # Remove "perf" executable due to file collisions with dev-util/perf. # Previously with the CMake build system we only installed h5perf, so # let's simply remove the file for now. - rm "${ED}"/usr/bin/perf || die "rm failed" + use mpi && { rm "${ED}"/usr/bin/perf || die "rm failed" ; } }