public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Alfredo Tupone" <tupone@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/xsimd/
Date: Fri, 21 Mar 2025 19:59:51 +0000 (UTC)	[thread overview]
Message-ID: <1742587159.bc95a2eb072045fb35bd6ab1bd8a8da6afcce597.tupone@gentoo> (raw)

commit:     bc95a2eb072045fb35bd6ab1bd8a8da6afcce597
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 21 19:59:19 2025 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Fri Mar 21 19:59:19 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc95a2eb

dev-cpp/xsimd: add 13.2.0

Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-cpp/xsimd/Manifest            |  1 +
 dev-cpp/xsimd/xsimd-13.2.0.ebuild | 70 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 71 insertions(+)

diff --git a/dev-cpp/xsimd/Manifest b/dev-cpp/xsimd/Manifest
index 485936482562..06e2e7a1e711 100644
--- a/dev-cpp/xsimd/Manifest
+++ b/dev-cpp/xsimd/Manifest
@@ -1,2 +1,3 @@
 DIST xsimd-13.0.0.tar.gz 259967 BLAKE2B 63267c75a7e8ed2e8689a912e79a1d012ff3cf3813969f97a640801e372ec9e66a6e3d3034b6918a30dc3374e8211fd1107f1309156354b6bca6ba17c6f132b4 SHA512 cdc42ddad3353297cf25ea2b6b3f09967f5f388efc26241f2997979fdbbac072819ff771145bc5bfa86cb326cca84b4119e8e6e3f658407961cf203a40603a7f
 DIST xsimd-13.1.0.tar.gz 265436 BLAKE2B 1c15612a280a237c730dce363cef5ca6b65625807cf22d2589fe2d50470e07a0877c12a52f769030dffbfadfa8e7f0d51c7c34fd679c01e14121c3d9c2582792 SHA512 a446aa29364c12785b9fc600341cd21b8fcf3cff6e07f6093b5cd3669a0c26397ccd75f0504c52da7f1843e2844e8b909bebbe1e64f0f2d8355f0ee0eadf1263
+DIST xsimd-13.2.0.tar.gz 269287 BLAKE2B 596d348e32cd6cde6112d7dee304d44111db755eb5827c6c55a57c2803a65956ef4660784748c6f127c28c80c62689d9956363bbc49ef9d2edf5f1f8b428af55 SHA512 3825626547b0dd9b58f306bc89e9b3bc6dd778ad3811b7828e50fc16ae102574255b53f2b0714995de2bd6f9eb7b2c5d266a1a24fbfdf5420dc5e94d7dcbb522

diff --git a/dev-cpp/xsimd/xsimd-13.2.0.ebuild b/dev-cpp/xsimd/xsimd-13.2.0.ebuild
new file mode 100644
index 000000000000..bdf7e6be681b
--- /dev/null
+++ b/dev-cpp/xsimd/xsimd-13.2.0.ebuild
@@ -0,0 +1,70 @@
+# Copyright 2023-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..13} )
+inherit cmake python-any-r1
+
+DESCRIPTION="C++ wrappers for SIMD intrinsics"
+HOMEPAGE="https://github.com/xtensor-stack/xsimd"
+SRC_URI="https://github.com/xtensor-stack/${PN}/archive/refs/tags/${PV}.tar.gz
+	-> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+IUSE="doc test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+	doc? (
+		app-text/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 )"
+
+PATCHES=(
+	"${FILESDIR}"/${PN}-11.1.0-c++17.patch
+	"${FILESDIR}"/${PN}-12.1.1-no-march.patch
+)
+
+python_check_deps() {
+	python_has_version "dev-python/sphinx[${PYTHON_USEDEP}]" &&
+		python_has_version "dev-python/sphinx-rtd-theme[${PYTHON_USEDEP}]" &&
+		python_has_version "dev-python/breathe[${PYTHON_USEDEP}]"
+
+}
+
+pkg_setup() {
+	use doc && python-any-r1_pkg_setup
+}
+
+src_prepare() {
+	sed -i \
+		-e '/fPIC/d' \
+		test/CMakeLists.txt \
+		|| die
+	cmake_src_prepare
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DBUILD_TESTS=$(usex test)
+	)
+	cmake_src_configure
+}
+
+src_compile() {
+	cmake_src_compile
+	use doc && emake -C docs html
+}
+
+src_install() {
+	use doc && HTML_DOCS=( docs/build/html/* )
+	cmake_src_install
+}


             reply	other threads:[~2025-03-21 19:59 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-21 19:59 Alfredo Tupone [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-04-22  0:36 [gentoo-commits] repo/gentoo:master commit in: dev-cpp/xsimd/ Sam James
2025-04-15 14:19 Michał Górny
2025-04-15 10:22 Sam James
2025-04-15 10:22 Sam James
2024-12-18 20:40 Alfredo Tupone
2024-12-18 19:49 Alfredo Tupone
2024-09-25 18:08 Alfredo Tupone
2024-08-16 13:58 Sam James
2024-08-14  9:49 Sam James
2024-08-14  9:49 Sam James
2024-08-13 19:27 Arthur Zamarin
2024-08-13 19:23 Arthur Zamarin
2024-01-23 17:30 Arthur Zamarin
2024-01-20  9:07 Sam James
2024-01-20  7:09 Michał Górny
2024-01-19 23:08 Ionen Wolkens
2024-01-13 11:14 Sam James
2023-12-08 19:39 Arthur Zamarin
2023-11-25 11:43 Arthur Zamarin
2023-11-25 11:14 Michał Górny
2023-11-25 10:14 Arthur Zamarin
2023-11-19 20:07 Arthur Zamarin
2023-10-29  3:40 Sam James
2023-09-11  6:48 Jakov Smolić
2023-09-09 16:27 WANG Xuerui
2023-09-08 18:50 Arthur Zamarin
2023-04-20 19:39 Alfredo Tupone
2023-04-20 19:36 Florian Schmaus
2023-04-20 18:11 Alfredo Tupone

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1742587159.bc95a2eb072045fb35bd6ab1bd8a8da6afcce597.tupone@gentoo \
    --to=tupone@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox