* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/xtensor/
@ 2023-02-12 21:25 Kamal Abdellatif
0 siblings, 0 replies; 5+ messages in thread
From: Kamal Abdellatif @ 2023-02-12 21:25 UTC (permalink / raw
To: gentoo-commits
commit: f093eda1304c78b5977ee5a407bd1f51b813aa71
Author: Kamal Abdellatif <gentoo.kamal <AT> tgf <DOT> pw>
AuthorDate: Sun Feb 12 21:18:08 2023 +0000
Commit: Kamal Abdellatif <gentoo.kamal <AT> tgf <DOT> pw>
CommitDate: Sun Feb 12 21:18:08 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f093eda1
dev-cpp/xtensor: new package, add 0.24.4
Signed-off-by: Kamal Abdellatif <gentoo.kamal <AT> tgf.pw>
dev-cpp/xtensor/Manifest | 1 +
dev-cpp/xtensor/metadata.xml | 17 ++++++
dev-cpp/xtensor/xtensor-0.24.4.ebuild | 98 +++++++++++++++++++++++++++++++++++
3 files changed, 116 insertions(+)
diff --git a/dev-cpp/xtensor/Manifest b/dev-cpp/xtensor/Manifest
new file mode 100644
index 000000000..f32665894
--- /dev/null
+++ b/dev-cpp/xtensor/Manifest
@@ -0,0 +1 @@
+DIST xtensor-0.24.4.tar.gz 1203049 BLAKE2B 512ab8b2e23b295e36462b63d796d037a4300b184e5932390e8c85a98e2f96639794622817bbdb73a24925c21d210bb39c96ecbd0f3d569a05eb8c5458b805c8 SHA512 e245571553592d5d0e98af5b645bc4526123764b0507ab6fb9ade690f62eae1e2850d8a44b0550ff95276b968c287bf7d6cab9262af5f28bcf7345b6d317d16a
diff --git a/dev-cpp/xtensor/metadata.xml b/dev-cpp/xtensor/metadata.xml
new file mode 100644
index 000000000..547112e58
--- /dev/null
+++ b/dev-cpp/xtensor/metadata.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>gentoo.kamal@tgf.pw</email>
+ <name>Kamal Abdellatif</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">xtensor-stack/xtensor</remote-id>
+ <doc>https://xtensor.readthedocs.io/en/latest/</doc>
+ </upstream>
+ <use>
+ <flag name="openmp">Enable parallel assignment loop using OpenMP</flag>
+ <flag name="tbb">Enable parallel assignment loop using dev-cpp/tbb</flag>
+ <flag name="xsimd">Enable SIMD accelaration using dev-cpp/xsimd</flag>
+ </use>
+</pkgmetadata>
diff --git a/dev-cpp/xtensor/xtensor-0.24.4.ebuild b/dev-cpp/xtensor/xtensor-0.24.4.ebuild
new file mode 100644
index 000000000..141d6b4c0
--- /dev/null
+++ b/dev-cpp/xtensor/xtensor-0.24.4.ebuild
@@ -0,0 +1,98 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# required because of manuall install in src_install
+CMAKE_MAKEFILE_GENERATOR="emake"
+
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit cmake python-any-r1 optfeature toolchain-funcs
+
+DESCRIPTION="header-only C++ library for numerical analysis with multi-dimensional arrays"
+HOMEPAGE="https://github.com/xtensor-stack/xtensor"
+SRC_URI="https://codeload.github.com/xtensor-stack/${PN}/tar.gz/refs/tags/${PV} -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+IUSE="doc openmp tbb test xsimd"
+
+DEPEND="
+ dev-cpp/xtl
+ tbb? ( dev-cpp/tbb )
+ xsimd? ( dev-cpp/xsimd )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+ doc? (
+ app-doc/doxygen
+ $(python_gen_any_dep '
+ dev-python/breathe[${PYTHON_USEDEP}]
+ dev-python/sphinx[${PYTHON_USEDEP}]
+ dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
+ ')
+ )
+ test? ( dev-cpp/doctest )
+"
+
+RESTRICT="!test? ( test )"
+REQUIRED_USE="?? ( tbb openmp )"
+
+python_check_deps() {
+ python_has_version \
+ "dev-python/breathe[${PYTHON_USEDEP}]" \
+ "dev-python/sphinx[${PYTHON_USEDEP}]" \
+ "dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]"
+}
+
+pkg_pretend() {
+ use openmp && tc-check-openmp
+}
+
+pkg_setup() {
+ use openmp && tc-check-openmp
+ use doc && python-any-r1_pkg_setup
+}
+
+src_prepare() {
+ # Skipping test due to https://github.com/xtensor-stack/xtensor/issues/2653
+ sed -i -e '/test_xoptional\.cpp/d' test/CMakeLists.txt || die
+
+ cmake_src_prepare
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_TESTS=$(usex test)
+ -DXTENSOR_USE_OPENMP=$(usex openmp)
+ -DXTENSOR_USE_TBB=$(usex tbb)
+ -DXTENSOR_USE_XSIMD=$(usex xsimd)
+ )
+
+ cmake_src_configure
+}
+
+src_compile() {
+ use test && cmake_src_compile xtest
+
+ if use doc; then
+ cd "${WORKDIR}/${P}/docs" || die
+ emake html BUILDDIR="${BUILD_DIR}"
+ HTML_DOCS=( "${BUILD_DIR}/html/." )
+ fi
+}
+
+src_install() {
+ # default install starts compiling more tests
+ # that do not affect the header-only install image
+ DESTDIR="${D}" emake -C "${BUILD_DIR}" install/fast "$@"
+
+ einstalldocs
+}
+
+pkg_postinst() {
+ optfeature "JSON support" dev-cpp/nlohmann_json
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/xtensor/
@ 2023-02-13 15:47 Kamal Abdellatif
0 siblings, 0 replies; 5+ messages in thread
From: Kamal Abdellatif @ 2023-02-13 15:47 UTC (permalink / raw
To: gentoo-commits
commit: b93d114e0d8199c6f205adef0e9e808bbbfe2b18
Author: Kamal Abdellatif <gentoo.kamal <AT> tgf <DOT> pw>
AuthorDate: Mon Feb 13 10:28:26 2023 +0000
Commit: Kamal Abdellatif <gentoo.kamal <AT> tgf <DOT> pw>
CommitDate: Mon Feb 13 15:43:05 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b93d114e
dev-cpp/xtensor: move tests out of src_compile
Signed-off-by: Kamal Abdellatif <gentoo.kamal <AT> tgf.pw>
dev-cpp/xtensor/xtensor-0.24.4.ebuild | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/dev-cpp/xtensor/xtensor-0.24.4.ebuild b/dev-cpp/xtensor/xtensor-0.24.4.ebuild
index 141d6b4c0..a2d7e9ada 100644
--- a/dev-cpp/xtensor/xtensor-0.24.4.ebuild
+++ b/dev-cpp/xtensor/xtensor-0.24.4.ebuild
@@ -76,8 +76,6 @@ src_configure() {
}
src_compile() {
- use test && cmake_src_compile xtest
-
if use doc; then
cd "${WORKDIR}/${P}/docs" || die
emake html BUILDDIR="${BUILD_DIR}"
@@ -85,6 +83,10 @@ src_compile() {
fi
}
+src_test() {
+ cmake_src_compile xtest
+}
+
src_install() {
# default install starts compiling more tests
# that do not affect the header-only install image
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/xtensor/
@ 2023-02-13 15:47 Kamal Abdellatif
0 siblings, 0 replies; 5+ messages in thread
From: Kamal Abdellatif @ 2023-02-13 15:47 UTC (permalink / raw
To: gentoo-commits
commit: 1c766603e2adccf6e6d4404c12ad2c007aa53a15
Author: Kamal Abdellatif <gentoo.kamal <AT> tgf <DOT> pw>
AuthorDate: Mon Feb 13 15:14:57 2023 +0000
Commit: Kamal Abdellatif <gentoo.kamal <AT> tgf <DOT> pw>
CommitDate: Mon Feb 13 15:43:05 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1c766603
dev-cpp/xtensor: use cmake_build instead of emake
Signed-off-by: Kamal Abdellatif <gentoo.kamal <AT> tgf.pw>
dev-cpp/xtensor/xtensor-0.24.4.ebuild | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/dev-cpp/xtensor/xtensor-0.24.4.ebuild b/dev-cpp/xtensor/xtensor-0.24.4.ebuild
index a2d7e9ada..d3d983ffc 100644
--- a/dev-cpp/xtensor/xtensor-0.24.4.ebuild
+++ b/dev-cpp/xtensor/xtensor-0.24.4.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-# required because of manuall install in src_install
+# required because of manual install in src_install
CMAKE_MAKEFILE_GENERATOR="emake"
PYTHON_COMPAT=( python3_{9..11} )
@@ -88,9 +88,9 @@ src_test() {
}
src_install() {
- # default install starts compiling more tests
- # that do not affect the header-only install image
- DESTDIR="${D}" emake -C "${BUILD_DIR}" install/fast "$@"
+ # Default install target depends on tests with USE=test enabled.
+ # However, this is a header-only library.
+ DESTDIR="${D}" cmake_build install/fast "$@"
einstalldocs
}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/xtensor/
@ 2023-05-29 6:35 Florian Albrechtskirchinger
0 siblings, 0 replies; 5+ messages in thread
From: Florian Albrechtskirchinger @ 2023-05-29 6:35 UTC (permalink / raw
To: gentoo-commits
commit: 84514891797f01d18cc1a50ac65e725d73203f50
Author: Florian Albrechtskirchinger <falbrechtskirchinger <AT> gmail <DOT> com>
AuthorDate: Mon May 29 06:28:41 2023 +0000
Commit: Florian Albrechtskirchinger <falbrechtskirchinger <AT> gmail <DOT> com>
CommitDate: Mon May 29 06:34:55 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=84514891
dev-cpp/xtensor: update xsimd version
Signed-off-by: Florian Albrechtskirchinger <falbrechtskirchinger <AT> gmail.com>
dev-cpp/xtensor/xtensor-0.24.4.ebuild | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/dev-cpp/xtensor/xtensor-0.24.4.ebuild b/dev-cpp/xtensor/xtensor-0.24.4.ebuild
index bc7de7f7e..3db74b14f 100644
--- a/dev-cpp/xtensor/xtensor-0.24.4.ebuild
+++ b/dev-cpp/xtensor/xtensor-0.24.4.ebuild
@@ -61,6 +61,11 @@ src_prepare() {
# Skipping test due to https://github.com/xtensor-stack/xtensor/issues/2653
sed -i -e '/test_xoptional\.cpp/d' test/CMakeLists.txt || die
+ # Current version of xsimd in tree is 11.1.0 (announcing itself as 11.0.1)
+ # Version appears to be compatible (compiles & tests succeed)
+ sed -i -e 's/xsimd_REQUIRED_VERSION 10.0.0/xsimd_REQUIRED_VERSION 11.0.1/' \
+ CMakeLists.txt || die
+
cmake_src_prepare
}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/xtensor/
@ 2024-05-15 16:01 Julien Roy
0 siblings, 0 replies; 5+ messages in thread
From: Julien Roy @ 2024-05-15 16:01 UTC (permalink / raw
To: gentoo-commits
commit: 751326f1d7c9eae0bfab810775ed2ceb794400bf
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Wed May 15 15:57:41 2024 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Wed May 15 16:01:28 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=751326f1
dev-cpp/xtensor: enable py3.12
Closes: https://bugs.gentoo.org/931360
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
dev-cpp/xtensor/xtensor-0.24.4.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-cpp/xtensor/xtensor-0.24.4.ebuild b/dev-cpp/xtensor/xtensor-0.24.4.ebuild
index 0caf412ab9..7dd57e617b 100644
--- a/dev-cpp/xtensor/xtensor-0.24.4.ebuild
+++ b/dev-cpp/xtensor/xtensor-0.24.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2023 Gentoo Authors
+# Copyright 2023-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -6,7 +6,7 @@ EAPI=8
# required because of manual install in src_install
CMAKE_MAKEFILE_GENERATOR="emake"
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
inherit cmake python-any-r1 optfeature toolchain-funcs
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-05-15 16:01 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-12 21:25 [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/xtensor/ Kamal Abdellatif
-- strict thread matches above, loose matches on Subject: below --
2023-02-13 15:47 Kamal Abdellatif
2023-02-13 15:47 Kamal Abdellatif
2023-05-29 6:35 Florian Albrechtskirchinger
2024-05-15 16:01 Julien Roy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox