* [gentoo-commits] repo/gentoo:master commit in: sci-libs/HighFive/
@ 2023-10-27 2:34 Sam James
0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2023-10-27 2:34 UTC (permalink / raw
To: gentoo-commits
commit: b0e526eb749b52deaf3418e2384548ff294d702c
Author: Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Sun Sep 3 21:02:29 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Oct 27 02:30:38 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0e526eb
sci-libs/HighFive: new package v2.7.1 (sci-libs/cantera[hdf5] dep)
Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>
Signed-off-by: Sam James <sam <AT> gentoo.org>
sci-libs/HighFive/HighFive-2.7.1.ebuild | 69 +++++++++++++++++++++++++++++++++
sci-libs/HighFive/Manifest | 1 +
sci-libs/HighFive/metadata.xml | 15 +++++++
3 files changed, 85 insertions(+)
diff --git a/sci-libs/HighFive/HighFive-2.7.1.ebuild b/sci-libs/HighFive/HighFive-2.7.1.ebuild
new file mode 100644
index 000000000000..a177d45fa8d7
--- /dev/null
+++ b/sci-libs/HighFive/HighFive-2.7.1.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DOCS_BUILDER="doxygen"
+DOCS_DIR="doc"
+
+inherit cmake docs
+
+DESCRIPTION="Header-only C++ interface for libhdf5"
+HOMEPAGE="https://github.com/BlueBrain/HighFive"
+SRC_URI="https://github.com/BlueBrain/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+KEYWORDS="~amd64 ~x86"
+LICENSE="Boost-1.0"
+SLOT="0"
+IUSE="mpi test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ sci-libs/hdf5[mpi?]
+ doc? ( app-doc/doxygen[dot] )
+
+"
+DEPEND="
+ ${RDEPEND}
+ test? (
+ >=dev-cpp/catch-3.4.0:0
+ dev-libs/boost
+ dev-cpp/eigen
+ media-libs/opencv
+ )
+"
+
+DOCS=( {README,CHANGELOG}.md )
+
+src_prepare() {
+ default
+ sed -i -e "s/-Werror //" "${S}"/CMake/config/CompilerFlagsHelpers.cmake || die
+ cmake_src_prepare
+}
+
+src_configure() {
+ default
+ local mycmakeargs=(
+ -DHIGHFIVE_PARALLEL_HDF5=$(usex mpi)
+
+ -DHIGHFIVE_USE_BOOST=$(usex test)
+ -DHIGHFIVE_USE_EIGEN=$(usex test)
+ -DHIGHFIVE_USE_OPENCV=$(usex test)
+ -DHIGHFIVE_USE_XTENSOR=OFF
+
+ -DHIGHFIVE_EXAMPLES=$(usex test)
+ -DHIGHFIVE_UNIT_TESTS=$(usex test)
+ )
+ cmake_src_configure
+}
+
+src_compile() {
+ default
+ use test && cmake_src_compile
+ use doc && doxygen_compile
+}
+
+src_test() {
+ # Set -j1 to prevent race
+ cmake_src_test -j1
+}
diff --git a/sci-libs/HighFive/Manifest b/sci-libs/HighFive/Manifest
new file mode 100644
index 000000000000..dec4fca0f6cb
--- /dev/null
+++ b/sci-libs/HighFive/Manifest
@@ -0,0 +1 @@
+DIST HighFive-2.7.1.tar.gz 518596 BLAKE2B e2c499ff629bf1ef5ec62baffa71624f90099179a31a085ede4a027c1747ecad7da0f4964c755e77c0825ac3ef4006ead972a3e7b59103ebaa6bd1a552f57f42 SHA512 4fbbd3898791a67e44329a5d0e20e16454b9393510236563b12fe4346cd4f2785d43d915ea05239ac1568d00651e41d85d93590f01454ffc1b82e7bba28e780a
diff --git a/sci-libs/HighFive/metadata.xml b/sci-libs/HighFive/metadata.xml
new file mode 100644
index 000000000000..988d62f71f0e
--- /dev/null
+++ b/sci-libs/HighFive/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>torokhov-s-a@yandex.ru</email>
+ <name>Sergey Torokhov</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">BlueBrain/HighFive</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/HighFive/
@ 2024-01-15 10:17 Andrew Ammerlaan
0 siblings, 0 replies; 6+ messages in thread
From: Andrew Ammerlaan @ 2024-01-15 10:17 UTC (permalink / raw
To: gentoo-commits
commit: 3b1b3cda548ba95436f3cd6f27ba29ad96fa7a6b
Author: Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Tue Nov 7 21:37:22 2023 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Mon Jan 15 10:02:20 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b1b3cda
sci-libs/HighFive: 2.8.0 version bump
Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>
Closes: https://github.com/gentoo/gentoo/pull/33718
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
sci-libs/HighFive/HighFive-2.8.0.ebuild | 62 +++++++++++++++++++++++++++++++++
sci-libs/HighFive/Manifest | 1 +
2 files changed, 63 insertions(+)
diff --git a/sci-libs/HighFive/HighFive-2.8.0.ebuild b/sci-libs/HighFive/HighFive-2.8.0.ebuild
new file mode 100644
index 000000000000..d642d1b78853
--- /dev/null
+++ b/sci-libs/HighFive/HighFive-2.8.0.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DOCS_BUILDER="doxygen"
+DOCS_DEPEND="app-text/doxygen[dot]"
+DOCS_DIR="doc"
+
+inherit cmake docs
+
+DESCRIPTION="Header-only C++ interface for libhdf5"
+HOMEPAGE="https://github.com/BlueBrain/HighFive"
+SRC_URI="https://github.com/BlueBrain/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+KEYWORDS="~amd64 ~x86"
+LICENSE="Boost-1.0"
+SLOT="0"
+IUSE="mpi test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ sci-libs/hdf5[mpi?]
+"
+DEPEND="
+ ${RDEPEND}
+ test? (
+ >=dev-cpp/catch-3.4.0:0
+ dev-libs/boost
+ dev-cpp/eigen
+ media-libs/opencv
+ )
+"
+
+DOCS=( {README,CHANGELOG}.md )
+
+src_configure() {
+ default
+ local mycmakeargs=(
+ -DHIGHFIVE_PARALLEL_HDF5=$(usex mpi)
+
+ -DHIGHFIVE_USE_BOOST=$(usex test)
+ -DHIGHFIVE_USE_EIGEN=$(usex test)
+ -DHIGHFIVE_USE_OPENCV=$(usex test)
+ -DHIGHFIVE_USE_XTENSOR=OFF
+
+ -DHIGHFIVE_EXAMPLES=$(usex test)
+ -DHIGHFIVE_UNIT_TESTS=$(usex test)
+ )
+ cmake_src_configure
+}
+
+src_compile() {
+ default
+ use test && cmake_src_compile
+ use doc && doxygen_compile
+}
+
+src_test() {
+ # Set -j1 to prevent race
+ cmake_src_test -j1
+}
diff --git a/sci-libs/HighFive/Manifest b/sci-libs/HighFive/Manifest
index dec4fca0f6cb..f1140972d9a7 100644
--- a/sci-libs/HighFive/Manifest
+++ b/sci-libs/HighFive/Manifest
@@ -1 +1,2 @@
DIST HighFive-2.7.1.tar.gz 518596 BLAKE2B e2c499ff629bf1ef5ec62baffa71624f90099179a31a085ede4a027c1747ecad7da0f4964c755e77c0825ac3ef4006ead972a3e7b59103ebaa6bd1a552f57f42 SHA512 4fbbd3898791a67e44329a5d0e20e16454b9393510236563b12fe4346cd4f2785d43d915ea05239ac1568d00651e41d85d93590f01454ffc1b82e7bba28e780a
+DIST HighFive-2.8.0.tar.gz 538050 BLAKE2B ad856be95365c6d94add457d76366e0a3143fd09bbb6354048f896e16f5445d1037367eaaeaa233a3b5f9c45d2a2611173e051d2bd9e7aff4a3472665d96ec7f SHA512 cabcf8f1507b4466b7438249a813ea36de5e5d220c5caf7656312e24dbe09042bf9573388ca7c3caa22f71bd3b8106923710f9459127f87c341e2b0ab953eede
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/HighFive/
@ 2024-02-28 14:00 Sam James
0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2024-02-28 14:00 UTC (permalink / raw
To: gentoo-commits
commit: 5e695ea943d873cd4797816060afac9f0fc1f73b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 28 14:00:01 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb 28 14:00:01 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e695ea9
sci-libs/HighFive: Stabilize 2.8.0 amd64, #925694
Signed-off-by: Sam James <sam <AT> gentoo.org>
sci-libs/HighFive/HighFive-2.8.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-libs/HighFive/HighFive-2.8.0.ebuild b/sci-libs/HighFive/HighFive-2.8.0.ebuild
index d642d1b78853..066cfc924888 100644
--- a/sci-libs/HighFive/HighFive-2.8.0.ebuild
+++ b/sci-libs/HighFive/HighFive-2.8.0.ebuild
@@ -13,7 +13,7 @@ DESCRIPTION="Header-only C++ interface for libhdf5"
HOMEPAGE="https://github.com/BlueBrain/HighFive"
SRC_URI="https://github.com/BlueBrain/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
LICENSE="Boost-1.0"
SLOT="0"
IUSE="mpi test"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/HighFive/
@ 2024-02-28 16:48 Michał Górny
0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2024-02-28 16:48 UTC (permalink / raw
To: gentoo-commits
commit: 0867502cce10af240ab79608e38e86b6612cfaa4
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 28 14:18:30 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb 28 16:48:44 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0867502c
sci-libs/HighFive: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
sci-libs/HighFive/HighFive-2.7.1.ebuild | 69 ---------------------------------
sci-libs/HighFive/Manifest | 1 -
2 files changed, 70 deletions(-)
diff --git a/sci-libs/HighFive/HighFive-2.7.1.ebuild b/sci-libs/HighFive/HighFive-2.7.1.ebuild
deleted file mode 100644
index 720ad7a8147c..000000000000
--- a/sci-libs/HighFive/HighFive-2.7.1.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DOCS_BUILDER="doxygen"
-DOCS_DIR="doc"
-
-inherit cmake docs
-
-DESCRIPTION="Header-only C++ interface for libhdf5"
-HOMEPAGE="https://github.com/BlueBrain/HighFive"
-SRC_URI="https://github.com/BlueBrain/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-KEYWORDS="~amd64 ~x86"
-LICENSE="Boost-1.0"
-SLOT="0"
-IUSE="mpi test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- sci-libs/hdf5[mpi?]
- doc? ( app-text/doxygen[dot] )
-
-"
-DEPEND="
- ${RDEPEND}
- test? (
- >=dev-cpp/catch-3.4.0:0
- dev-libs/boost
- dev-cpp/eigen
- media-libs/opencv
- )
-"
-
-DOCS=( {README,CHANGELOG}.md )
-
-src_prepare() {
- default
- sed -i -e "s/-Werror //" "${S}"/CMake/config/CompilerFlagsHelpers.cmake || die
- cmake_src_prepare
-}
-
-src_configure() {
- default
- local mycmakeargs=(
- -DHIGHFIVE_PARALLEL_HDF5=$(usex mpi)
-
- -DHIGHFIVE_USE_BOOST=$(usex test)
- -DHIGHFIVE_USE_EIGEN=$(usex test)
- -DHIGHFIVE_USE_OPENCV=$(usex test)
- -DHIGHFIVE_USE_XTENSOR=OFF
-
- -DHIGHFIVE_EXAMPLES=$(usex test)
- -DHIGHFIVE_UNIT_TESTS=$(usex test)
- )
- cmake_src_configure
-}
-
-src_compile() {
- default
- use test && cmake_src_compile
- use doc && doxygen_compile
-}
-
-src_test() {
- # Set -j1 to prevent race
- cmake_src_test -j1
-}
diff --git a/sci-libs/HighFive/Manifest b/sci-libs/HighFive/Manifest
index f1140972d9a7..9221bdc0fef9 100644
--- a/sci-libs/HighFive/Manifest
+++ b/sci-libs/HighFive/Manifest
@@ -1,2 +1 @@
-DIST HighFive-2.7.1.tar.gz 518596 BLAKE2B e2c499ff629bf1ef5ec62baffa71624f90099179a31a085ede4a027c1747ecad7da0f4964c755e77c0825ac3ef4006ead972a3e7b59103ebaa6bd1a552f57f42 SHA512 4fbbd3898791a67e44329a5d0e20e16454b9393510236563b12fe4346cd4f2785d43d915ea05239ac1568d00651e41d85d93590f01454ffc1b82e7bba28e780a
DIST HighFive-2.8.0.tar.gz 538050 BLAKE2B ad856be95365c6d94add457d76366e0a3143fd09bbb6354048f896e16f5445d1037367eaaeaa233a3b5f9c45d2a2611173e051d2bd9e7aff4a3472665d96ec7f SHA512 cabcf8f1507b4466b7438249a813ea36de5e5d220c5caf7656312e24dbe09042bf9573388ca7c3caa22f71bd3b8106923710f9459127f87c341e2b0ab953eede
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/HighFive/
@ 2025-03-10 2:54 Sam James
0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2025-03-10 2:54 UTC (permalink / raw
To: gentoo-commits
commit: a03f751182a470c7e982f47f35283cf39b5f3dc5
Author: Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Mon Dec 30 19:18:15 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 10 02:47:40 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a03f7511
sci-libs/HighFive: 2.10.1 version bump
Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>
Signed-off-by: Sam James <sam <AT> gentoo.org>
sci-libs/HighFive/{HighFive-2.8.0.ebuild => HighFive-2.10.1.ebuild} | 4 ++--
sci-libs/HighFive/HighFive-2.8.0.ebuild | 2 +-
sci-libs/HighFive/Manifest | 1 +
3 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/sci-libs/HighFive/HighFive-2.8.0.ebuild b/sci-libs/HighFive/HighFive-2.10.1.ebuild
similarity index 94%
copy from sci-libs/HighFive/HighFive-2.8.0.ebuild
copy to sci-libs/HighFive/HighFive-2.10.1.ebuild
index 066cfc924888..8995434dd26f 100644
--- a/sci-libs/HighFive/HighFive-2.8.0.ebuild
+++ b/sci-libs/HighFive/HighFive-2.10.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -13,9 +13,9 @@ DESCRIPTION="Header-only C++ interface for libhdf5"
HOMEPAGE="https://github.com/BlueBrain/HighFive"
SRC_URI="https://github.com/BlueBrain/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="amd64 ~x86"
LICENSE="Boost-1.0"
SLOT="0"
+KEYWORDS="~amd64 ~x86"
IUSE="mpi test"
RESTRICT="!test? ( test )"
diff --git a/sci-libs/HighFive/HighFive-2.8.0.ebuild b/sci-libs/HighFive/HighFive-2.8.0.ebuild
index 066cfc924888..74fdeecedc86 100644
--- a/sci-libs/HighFive/HighFive-2.8.0.ebuild
+++ b/sci-libs/HighFive/HighFive-2.8.0.ebuild
@@ -13,9 +13,9 @@ DESCRIPTION="Header-only C++ interface for libhdf5"
HOMEPAGE="https://github.com/BlueBrain/HighFive"
SRC_URI="https://github.com/BlueBrain/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="amd64 ~x86"
LICENSE="Boost-1.0"
SLOT="0"
+KEYWORDS="amd64 ~x86"
IUSE="mpi test"
RESTRICT="!test? ( test )"
diff --git a/sci-libs/HighFive/Manifest b/sci-libs/HighFive/Manifest
index 9221bdc0fef9..522f112f5571 100644
--- a/sci-libs/HighFive/Manifest
+++ b/sci-libs/HighFive/Manifest
@@ -1 +1,2 @@
+DIST HighFive-2.10.1.tar.gz 559344 BLAKE2B e605eb336c740ad2665130af35b05c92c9aa54c50e2b811ae97e56446b6f67047bc65278a1260850971b0ff5ec19daf48fb266f699636da63a5268987c839e43 SHA512 3daf16c2ced165ddc7a8f1e9a0d3bf3388836e3878c86f8bf3faf2c42996d5bfd449e71e75a871447c1e7ea9a3e87d4f4a80a2382f1b24095d6051b89f27d6d3
DIST HighFive-2.8.0.tar.gz 538050 BLAKE2B ad856be95365c6d94add457d76366e0a3143fd09bbb6354048f896e16f5445d1037367eaaeaa233a3b5f9c45d2a2611173e051d2bd9e7aff4a3472665d96ec7f SHA512 cabcf8f1507b4466b7438249a813ea36de5e5d220c5caf7656312e24dbe09042bf9573388ca7c3caa22f71bd3b8106923710f9459127f87c341e2b0ab953eede
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/HighFive/
@ 2025-04-28 14:01 Sam James
0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2025-04-28 14:01 UTC (permalink / raw
To: gentoo-commits
commit: 69d2c1269903f7cc69331e207c046892bbc096f5
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 28 13:58:00 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 28 13:58:00 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69d2c126
sci-libs/HighFive: Stabilize 2.10.1 amd64, #954969
Signed-off-by: Sam James <sam <AT> gentoo.org>
sci-libs/HighFive/HighFive-2.10.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-libs/HighFive/HighFive-2.10.1.ebuild b/sci-libs/HighFive/HighFive-2.10.1.ebuild
index 8995434dd26f..d0dca8fe0beb 100644
--- a/sci-libs/HighFive/HighFive-2.10.1.ebuild
+++ b/sci-libs/HighFive/HighFive-2.10.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/BlueBrain/${PN}/archive/refs/tags/v${PV}.tar.gz -> $
LICENSE="Boost-1.0"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="mpi test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-04-28 14:01 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-28 14:00 [gentoo-commits] repo/gentoo:master commit in: sci-libs/HighFive/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2025-04-28 14:01 Sam James
2025-03-10 2:54 Sam James
2024-02-28 16:48 Michał Górny
2024-01-15 10:17 Andrew Ammerlaan
2023-10-27 2:34 Sam James
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox