* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/xsimd/
@ 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: f7c8740629193fe7371666f1dffd84c4af4acf75
Author: Kamal Abdellatif <gentoo.kamal <AT> tgf <DOT> pw>
AuthorDate: Sun Feb 12 21:17:23 2023 +0000
Commit: Kamal Abdellatif <gentoo.kamal <AT> tgf <DOT> pw>
CommitDate: Sun Feb 12 21:17:23 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f7c87406
dev-cpp/xsimd: new package, add 10.0.0
Signed-off-by: Kamal Abdellatif <gentoo.kamal <AT> tgf.pw>
dev-cpp/xsimd/Manifest | 1 +
dev-cpp/xsimd/metadata.xml | 12 +++++++++
dev-cpp/xsimd/xsimd-10.0.0.ebuild | 57 +++++++++++++++++++++++++++++++++++++++
3 files changed, 70 insertions(+)
diff --git a/dev-cpp/xsimd/Manifest b/dev-cpp/xsimd/Manifest
new file mode 100644
index 000000000..1411b4acf
--- /dev/null
+++ b/dev-cpp/xsimd/Manifest
@@ -0,0 +1 @@
+DIST xsimd-10.0.0.tar.gz 212082 BLAKE2B 2a3c6dd711f9e7ffd32ce3fd9a6056a56768a0f5b6ff412d2c5cd5f82682cac87ed0a68109a449ab6337f89a4719e9ab25f94060d3f675783ce00c79e3378512 SHA512 bd7a363bbebc9196954c8c87271f14f05ca177569fcf080dac91be06ad2801c43fccbb385afd700b80d58c83d77f26ba199a7105672e4a1e55c517d15dd6e8e3
diff --git a/dev-cpp/xsimd/metadata.xml b/dev-cpp/xsimd/metadata.xml
new file mode 100644
index 000000000..9e861cd9e
--- /dev/null
+++ b/dev-cpp/xsimd/metadata.xml
@@ -0,0 +1,12 @@
+<?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/xsimd</remote-id>
+ <doc>https://xsimd.readthedocs.io/en/latest/</doc>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-cpp/xsimd/xsimd-10.0.0.ebuild b/dev-cpp/xsimd/xsimd-10.0.0.ebuild
new file mode 100644
index 000000000..0398f664b
--- /dev/null
+++ b/dev-cpp/xsimd/xsimd-10.0.0.ebuild
@@ -0,0 +1,57 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit cmake python-any-r1
+
+DESCRIPTION="C++ wrappers for SIMD intrinsics"
+HOMEPAGE="https://github.com/xtensor-stack/xsimd"
+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 test"
+
+BDEPEND="
+ doc? (
+ app-doc/doxygen
+ $(python_gen_any_dep '
+ dev-python/breathe[${PYTHON_USEDEP}]
+ dev-python/sphinx[${PYTHON_USEDEP}]
+ ')
+ )
+ test? ( dev-cpp/doctest )
+"
+
+RESTRICT="!test? ( test )"
+
+python_check_deps() {
+ python_has_version \
+ "dev-python/breathe[${PYTHON_USEDEP}]" \
+ "dev-python/sphinx[${PYTHON_USEDEP}]"
+}
+
+pkg_setup() {
+ use doc && python-any-r1_pkg_setup
+}
+
+src_configure() {
+ local mycmakeargs=( -DBUILD_TESTS=$(usex test) )
+
+ 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
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/xsimd/
@ 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: b5cbbb68af85a1996cf5242baa436c1668fbf5f2
Author: Kamal Abdellatif <gentoo.kamal <AT> tgf <DOT> pw>
AuthorDate: Mon Feb 13 10:27:08 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=b5cbbb68
dev-cpp/xsimd: move tests out of src_compile
Signed-off-by: Kamal Abdellatif <gentoo.kamal <AT> tgf.pw>
dev-cpp/xsimd/xsimd-10.0.0.ebuild | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/dev-cpp/xsimd/xsimd-10.0.0.ebuild b/dev-cpp/xsimd/xsimd-10.0.0.ebuild
index 0398f664b..0c4a791b3 100644
--- a/dev-cpp/xsimd/xsimd-10.0.0.ebuild
+++ b/dev-cpp/xsimd/xsimd-10.0.0.ebuild
@@ -47,11 +47,13 @@ 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_test() {
+ cmake_src_compile xtest
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/xsimd/
@ 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: 4196775e76517fbadb6acfb15c286154dcda2493
Author: Kamal Abdellatif <gentoo.kamal <AT> tgf <DOT> pw>
AuthorDate: Mon Feb 13 15:41:19 2023 +0000
Commit: Kamal Abdellatif <gentoo.kamal <AT> tgf <DOT> pw>
CommitDate: Mon Feb 13 15:43:06 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4196775e
dev-cpp/xsimd: avoid unnecessary test compilation during src_install
Signed-off-by: Kamal Abdellatif <gentoo.kamal <AT> tgf.pw>
dev-cpp/xsimd/xsimd-10.0.0.ebuild | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/dev-cpp/xsimd/xsimd-10.0.0.ebuild b/dev-cpp/xsimd/xsimd-10.0.0.ebuild
index 0c4a791b3..04d1cc82a 100644
--- a/dev-cpp/xsimd/xsimd-10.0.0.ebuild
+++ b/dev-cpp/xsimd/xsimd-10.0.0.ebuild
@@ -3,6 +3,9 @@
EAPI=8
+# required because of manual install in src_install
+CMAKE_MAKEFILE_GENERATOR="emake"
+
PYTHON_COMPAT=( python3_{9..11} )
inherit cmake python-any-r1
@@ -57,3 +60,11 @@ src_compile() {
src_test() {
cmake_src_compile xtest
}
+
+src_install() {
+ # 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/xsimd/
@ 2023-02-14 12:40 Kamal Abdellatif
0 siblings, 0 replies; 5+ messages in thread
From: Kamal Abdellatif @ 2023-02-14 12:40 UTC (permalink / raw
To: gentoo-commits
commit: 38500a99fbdf485f09050c66543919e92e04fcc9
Author: Kamal Abdellatif <gentoo.kamal <AT> tgf <DOT> pw>
AuthorDate: Tue Feb 14 12:39:29 2023 +0000
Commit: Kamal Abdellatif <gentoo.kamal <AT> tgf <DOT> pw>
CommitDate: Tue Feb 14 12:40:47 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=38500a99
dev-cpp/xsimd: add sphinx_rtd_theme dependency
Closes: https://bugs.gentoo.org/894292
Signed-off-by: Kamal Abdellatif <gentoo.kamal <AT> tgf.pw>
dev-cpp/xsimd/xsimd-10.0.0.ebuild | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/dev-cpp/xsimd/xsimd-10.0.0.ebuild b/dev-cpp/xsimd/xsimd-10.0.0.ebuild
index 04d1cc82a..28e3508ef 100644
--- a/dev-cpp/xsimd/xsimd-10.0.0.ebuild
+++ b/dev-cpp/xsimd/xsimd-10.0.0.ebuild
@@ -26,6 +26,7 @@ BDEPEND="
$(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 )
@@ -36,7 +37,8 @@ RESTRICT="!test? ( test )"
python_check_deps() {
python_has_version \
"dev-python/breathe[${PYTHON_USEDEP}]" \
- "dev-python/sphinx[${PYTHON_USEDEP}]"
+ "dev-python/sphinx[${PYTHON_USEDEP}]" \
+ "dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]"
}
pkg_setup() {
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/xsimd/
@ 2023-04-20 19:39 Florian Schmaus
0 siblings, 0 replies; 5+ messages in thread
From: Florian Schmaus @ 2023-04-20 19:39 UTC (permalink / raw
To: gentoo-commits
commit: 7bda70bd97593c04a020d4322afa588f3832a816
Author: Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 20 19:39:01 2023 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Thu Apr 20 19:39:01 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7bda70bd
dev-cpp/xsimd: treeclean, migrated to ::gentoo
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
dev-cpp/xsimd/Manifest | 1 -
dev-cpp/xsimd/metadata.xml | 12 -------
dev-cpp/xsimd/xsimd-10.0.0.ebuild | 72 ---------------------------------------
3 files changed, 85 deletions(-)
diff --git a/dev-cpp/xsimd/Manifest b/dev-cpp/xsimd/Manifest
deleted file mode 100644
index 1411b4acf..000000000
--- a/dev-cpp/xsimd/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST xsimd-10.0.0.tar.gz 212082 BLAKE2B 2a3c6dd711f9e7ffd32ce3fd9a6056a56768a0f5b6ff412d2c5cd5f82682cac87ed0a68109a449ab6337f89a4719e9ab25f94060d3f675783ce00c79e3378512 SHA512 bd7a363bbebc9196954c8c87271f14f05ca177569fcf080dac91be06ad2801c43fccbb385afd700b80d58c83d77f26ba199a7105672e4a1e55c517d15dd6e8e3
diff --git a/dev-cpp/xsimd/metadata.xml b/dev-cpp/xsimd/metadata.xml
deleted file mode 100644
index 9e861cd9e..000000000
--- a/dev-cpp/xsimd/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?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/xsimd</remote-id>
- <doc>https://xsimd.readthedocs.io/en/latest/</doc>
- </upstream>
-</pkgmetadata>
diff --git a/dev-cpp/xsimd/xsimd-10.0.0.ebuild b/dev-cpp/xsimd/xsimd-10.0.0.ebuild
deleted file mode 100644
index b5f163b90..000000000
--- a/dev-cpp/xsimd/xsimd-10.0.0.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# required because of manual install in src_install
-CMAKE_MAKEFILE_GENERATOR="emake"
-
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit cmake python-any-r1
-
-DESCRIPTION="C++ wrappers for SIMD intrinsics"
-HOMEPAGE="https://github.com/xtensor-stack/xsimd"
-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 test"
-
-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 )"
-
-python_check_deps() {
- python_has_version \
- "dev-python/breathe[${PYTHON_USEDEP}]" \
- "dev-python/sphinx[${PYTHON_USEDEP}]" \
- "dev-python/sphinx-rtd-theme[${PYTHON_USEDEP}]"
-}
-
-pkg_setup() {
- use doc && python-any-r1_pkg_setup
-}
-
-src_configure() {
- local mycmakeargs=( -DBUILD_TESTS=$(usex test) )
-
- cmake_src_configure
-}
-
-src_compile() {
- if use doc; then
- cd "${WORKDIR}/${P}/docs" || die
- emake html BUILDDIR="${BUILD_DIR}"
- HTML_DOCS=( "${BUILD_DIR}/html/." )
- fi
-}
-
-src_test() {
- cmake_src_compile xtest
-}
-
-src_install() {
- # 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
end of thread, other threads:[~2023-04-20 19:39 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/xsimd/ 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-02-14 12:40 Kamal Abdellatif
2023-04-20 19:39 Florian Schmaus
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox