From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1406541-garchives=archives.gentoo.org@lists.gentoo.org> 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 12B7F158091 for <garchives@archives.gentoo.org>; Thu, 9 Jun 2022 12:46:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3C6D5E07EA; Thu, 9 Jun 2022 12:46:02 +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 18AE0E07EA for <gentoo-commits@lists.gentoo.org>; Thu, 9 Jun 2022 12:46:02 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 48228340F69 for <gentoo-commits@lists.gentoo.org>; Thu, 9 Jun 2022 12:46:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C2ED4D3 for <gentoo-commits@lists.gentoo.org>; Thu, 9 Jun 2022 12:45:59 +0000 (UTC) From: "Benda XU" <heroxbd@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Benda XU" <heroxbd@gentoo.org> Message-ID: <1654778718.2df28e8d64090ca1c3d9b0ca75c0d12d4025e622.heroxbd@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/HDF5Plugin-Zstandard/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/HDF5Plugin-Zstandard/HDF5Plugin-Zstandard-0_pre20201121.ebuild X-VCS-Directories: sci-libs/HDF5Plugin-Zstandard/ X-VCS-Committer: heroxbd X-VCS-Committer-Name: Benda XU X-VCS-Revision: 2df28e8d64090ca1c3d9b0ca75c0d12d4025e622 X-VCS-Branch: master Date: Thu, 9 Jun 2022 12:45:59 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c8e81352-c58a-430b-8e61-c08491fad436 X-Archives-Hash: c61898900296cd144ab2a058df999441 commit: 2df28e8d64090ca1c3d9b0ca75c0d12d4025e622 Author: Yuyi Wang <Strawberry_Str <AT> hotmail <DOT> com> AuthorDate: Thu Jun 9 09:23:00 2022 +0000 Commit: Benda XU <heroxbd <AT> gentoo <DOT> org> CommitDate: Thu Jun 9 12:45:18 2022 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=2df28e8d sci-libs/HDF5Plugin-Zstandard: avoid changing env This patch syncs with gentoo/gentoo@8e16e74. As the default plugin directory is set to the right value, we don't need to specify the HDF5_PLUGIN_PATH environment variable. This will make our environment clear and less hacky. Closes: https://github.com/gentoo/sci/pull/1146 Signed-off-by: Yuyi Wang <Strawberry_Str <AT> hotmail.com> Signed-off-by: Benda Xu <heroxbd <AT> gentoo.org> .../HDF5Plugin-Zstandard-0_pre20201121.ebuild | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/sci-libs/HDF5Plugin-Zstandard/HDF5Plugin-Zstandard-0_pre20201121.ebuild b/sci-libs/HDF5Plugin-Zstandard/HDF5Plugin-Zstandard-0_pre20201121.ebuild index ab1a155c3..a74996b46 100644 --- a/sci-libs/HDF5Plugin-Zstandard/HDF5Plugin-Zstandard-0_pre20201121.ebuild +++ b/sci-libs/HDF5Plugin-Zstandard/HDF5Plugin-Zstandard-0_pre20201121.ebuild @@ -14,7 +14,7 @@ LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~amd64 ~x86" -DEPEND="app-arch/zstd sci-libs/hdf5" +DEPEND="app-arch/zstd >=sci-libs/hdf5-1.12.2-r2" RDEPEND="${DEPEND}" S=${WORKDIR}/${PN}-${COMMIT} @@ -25,9 +25,3 @@ src_configure() { ) cmake_src_configure } - -src_install() { - echo "HDF5_PLUGIN_PATH=${EPREFIX}/usr/$(get_libdir)/hdf5/plugin" >> 99h5zstd || die - doenvd 99h5zstd - cmake_src_install -}