public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: sci-libs/HDF5Plugin-Zstandard/
@ 2020-11-22  4:38 Aisha Tammy
  0 siblings, 0 replies; 4+ messages in thread
From: Aisha Tammy @ 2020-11-22  4:38 UTC (permalink / raw
  To: gentoo-commits

commit:     9e748f92d3ffb74417ee24622861213cabf253f2
Author:     WuYiyang <wuyiyang17 <AT> mails <DOT> tsinghua <DOT> edu <DOT> cn>
AuthorDate: Fri Nov 20 13:46:16 2020 +0000
Commit:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Sun Nov 22 04:37:50 2020 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=9e748f92

sci-libs/HDF5Plugin-Zstandard: zstd plugin for hdf5

Zstdandard compress filter plugin for hdf5. Support Gentoo-Prefix

Since upstream has no releases and likely not going to have any release,
the package version should be a prerelease snapshot of version 0.

Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Yiyang Wu <xgreenlandforwyy <AT> gmail.com>
Closes: https://github.com/gentoo/sci/pull/987
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>

 .../HDF5Plugin-Zstandard-0_pre20201121.ebuild      | 33 ++++++++++++++++++++++
 sci-libs/HDF5Plugin-Zstandard/metadata.xml         |  8 ++++++
 2 files changed, 41 insertions(+)

diff --git a/sci-libs/HDF5Plugin-Zstandard/HDF5Plugin-Zstandard-0_pre20201121.ebuild b/sci-libs/HDF5Plugin-Zstandard/HDF5Plugin-Zstandard-0_pre20201121.ebuild
new file mode 100644
index 000000000..8c8d889cb
--- /dev/null
+++ b/sci-libs/HDF5Plugin-Zstandard/HDF5Plugin-Zstandard-0_pre20201121.ebuild
@@ -0,0 +1,33 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="ZSTD plugin for hdf5"
+HOMEPAGE="https://github.com/aparamon/HDF5Plugin-Zstandard"
+COMMIT="d5afdb5f04116d5c2d1a869dc9c7c0c72832b143"
+SRC_URI="https://github.com/aparamon/HDF5Plugin-Zstandard/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="app-arch/zstd sci-libs/hdf5"
+RDEPEND="${DEPEND}"
+
+S=${WORKDIR}/${PN}-${COMMIT}
+
+src_configure() {
+	local mycmakeargs=(
+		-DPLUGIN_INSTALL_PATH="${EPREFIX}/usr/lib64/hdf5/plugin"
+	)
+	cmake_src_configure
+}
+
+src_install() {
+	echo "HDF5_PLUGIN_PATH=${EPREFIX}/usr/lib64/hdf5/plugin" >> 99h5zstd || die
+	doenvd 99h5zstd
+	cmake_src_install
+}

diff --git a/sci-libs/HDF5Plugin-Zstandard/metadata.xml b/sci-libs/HDF5Plugin-Zstandard/metadata.xml
new file mode 100644
index 000000000..753464ee5
--- /dev/null
+++ b/sci-libs/HDF5Plugin-Zstandard/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>xgreenlandforwyy@gmail.com</email>
+		<name>Yiyang Wu</name>
+	</maintainer>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-libs/HDF5Plugin-Zstandard/
@ 2020-11-22  4:41 Aisha Tammy
  0 siblings, 0 replies; 4+ messages in thread
From: Aisha Tammy @ 2020-11-22  4:41 UTC (permalink / raw
  To: gentoo-commits

commit:     56472352c2014c9013b9788817f5cab8f673b435
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Sun Nov 22 04:41:03 2020 +0000
Commit:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Sun Nov 22 04:41:03 2020 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=56472352

sci-libs/HDF5Plugin-Zstandard: fix libdir in plugin path

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>

 .../HDF5Plugin-Zstandard/HDF5Plugin-Zstandard-0_pre20201121.ebuild    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-libs/HDF5Plugin-Zstandard/HDF5Plugin-Zstandard-0_pre20201121.ebuild b/sci-libs/HDF5Plugin-Zstandard/HDF5Plugin-Zstandard-0_pre20201121.ebuild
index 8c8d889cb..ab1a155c3 100644
--- a/sci-libs/HDF5Plugin-Zstandard/HDF5Plugin-Zstandard-0_pre20201121.ebuild
+++ b/sci-libs/HDF5Plugin-Zstandard/HDF5Plugin-Zstandard-0_pre20201121.ebuild
@@ -21,13 +21,13 @@ S=${WORKDIR}/${PN}-${COMMIT}
 
 src_configure() {
 	local mycmakeargs=(
-		-DPLUGIN_INSTALL_PATH="${EPREFIX}/usr/lib64/hdf5/plugin"
+		-DPLUGIN_INSTALL_PATH="${EPREFIX}/usr/$(get_libdir)/hdf5/plugin"
 	)
 	cmake_src_configure
 }
 
 src_install() {
-	echo "HDF5_PLUGIN_PATH=${EPREFIX}/usr/lib64/hdf5/plugin" >> 99h5zstd || die
+	echo "HDF5_PLUGIN_PATH=${EPREFIX}/usr/$(get_libdir)/hdf5/plugin" >> 99h5zstd || die
 	doenvd 99h5zstd
 	cmake_src_install
 }


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-libs/HDF5Plugin-Zstandard/
@ 2022-06-09 12:45 Benda XU
  0 siblings, 0 replies; 4+ messages in thread
From: Benda XU @ 2022-06-09 12:45 UTC (permalink / raw
  To: gentoo-commits

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
-}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-libs/HDF5Plugin-Zstandard/
@ 2022-08-18  4:20 Benda XU
  0 siblings, 0 replies; 4+ messages in thread
From: Benda XU @ 2022-08-18  4:20 UTC (permalink / raw
  To: gentoo-commits

commit:     ed891d3398c5cea28d967231f1216e31d7419fb2
Author:     Benda Xu <heroxbd <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 18 04:19:39 2022 +0000
Commit:     Benda XU <heroxbd <AT> gentoo <DOT> org>
CommitDate: Thu Aug 18 04:19:39 2022 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=ed891d33

sci-libs/HDF5Plugin-Zstandard: depend on >=1.12.2-r5.

1.12.2-r3 and r4 lost the standard Gentoo plugin directory of hdf5. r5
re-enables it.

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Benda Xu <heroxbd <AT> gentoo.org>

 ...re20201121.ebuild => HDF5Plugin-Zstandard-0_pre20201121-r1.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-libs/HDF5Plugin-Zstandard/HDF5Plugin-Zstandard-0_pre20201121.ebuild b/sci-libs/HDF5Plugin-Zstandard/HDF5Plugin-Zstandard-0_pre20201121-r1.ebuild
similarity index 86%
rename from sci-libs/HDF5Plugin-Zstandard/HDF5Plugin-Zstandard-0_pre20201121.ebuild
rename to sci-libs/HDF5Plugin-Zstandard/HDF5Plugin-Zstandard-0_pre20201121-r1.ebuild
index a74996b46..d1257f0ee 100644
--- a/sci-libs/HDF5Plugin-Zstandard/HDF5Plugin-Zstandard-0_pre20201121.ebuild
+++ b/sci-libs/HDF5Plugin-Zstandard/HDF5Plugin-Zstandard-0_pre20201121-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020 Gentoo Authors
+# Copyright 2020-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -14,7 +14,7 @@ LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
-DEPEND="app-arch/zstd >=sci-libs/hdf5-1.12.2-r2"
+DEPEND="app-arch/zstd >=sci-libs/hdf5-1.12.2-r5"
 RDEPEND="${DEPEND}"
 
 S=${WORKDIR}/${PN}-${COMMIT}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-08-18  4:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-22  4:38 [gentoo-commits] proj/sci:master commit in: sci-libs/HDF5Plugin-Zstandard/ Aisha Tammy
  -- strict thread matches above, loose matches on Subject: below --
2020-11-22  4:41 Aisha Tammy
2022-06-09 12:45 Benda XU
2022-08-18  4:20 Benda XU

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox