summaryrefslogtreecommitdiff
path: root/dev-cpp/xsimd/xsimd-13.0.0.ebuild
diff options
context:
space:
mode:
authorAlfredo Tupone <tupone@gentoo.org>2024-09-25 20:06:59 +0200
committerAlfredo Tupone <tupone@gentoo.org>2024-09-25 20:08:12 +0200
commit6bb9049215bcfa8406c1dc4e9bc188ddb0630ef5 (patch)
treea188591b7568852be35e4fa96cb651e839dab243 /dev-cpp/xsimd/xsimd-13.0.0.ebuild
parentc72304a91f1646b490df7cec8fb2ef1fbc0513b5 (diff)
downloadgentoo-6bb9049215bcfa8406c1dc4e9bc188ddb0630ef5.tar.gz
gentoo-6bb9049215bcfa8406c1dc4e9bc188ddb0630ef5.tar.bz2
gentoo-6bb9049215bcfa8406c1dc4e9bc188ddb0630ef5.zip
dev-cpp/xsimd: fix python version for doc
Closes: https://bugs.gentoo.org/932821 Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Diffstat (limited to 'dev-cpp/xsimd/xsimd-13.0.0.ebuild')
-rw-r--r--dev-cpp/xsimd/xsimd-13.0.0.ebuild60
1 files changed, 0 insertions, 60 deletions
diff --git a/dev-cpp/xsimd/xsimd-13.0.0.ebuild b/dev-cpp/xsimd/xsimd-13.0.0.ebuild
deleted file mode 100644
index f6fa6899c716..000000000000
--- a/dev-cpp/xsimd/xsimd-13.0.0.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 2023-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-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
- dev-python/breathe
- dev-python/sphinx
- dev-python/sphinx-rtd-theme
- )
- test? ( dev-cpp/doctest )"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-11.1.0-c++17.patch
- "${FILESDIR}"/${PN}-12.1.1-no-march.patch
- "${FILESDIR}"/${PN}-13.0.0-sve-rvv.patch
- "${FILESDIR}"/${PN}-13.0.0-detection-simd-with-mitigations.patch
-)
-
-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() {
- cmake_src_install
- if use doc; then
- dodoc -r docs/build/html
- fi
-}