diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-01-20 06:38:18 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-01-20 06:38:18 +0100 |
commit | f1903c5591d3a4d9819b19adc467323c129ee1cd (patch) | |
tree | de027709212713d55fd6f498f9cc85d42a9bac46 /dev-cpp/xsimd | |
parent | dev-util/ruff: add 0.1.14, drop 0.1.13-r1 (diff) | |
download | gentoo-f1903c5591d3a4d9819b19adc467323c129ee1cd.tar.gz gentoo-f1903c5591d3a4d9819b19adc467323c129ee1cd.tar.bz2 gentoo-f1903c5591d3a4d9819b19adc467323c129ee1cd.zip |
dev-cpp/xsimd: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-cpp/xsimd')
-rw-r--r-- | dev-cpp/xsimd/xsimd-11.1.0.ebuild | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/dev-cpp/xsimd/xsimd-11.1.0.ebuild b/dev-cpp/xsimd/xsimd-11.1.0.ebuild deleted file mode 100644 index 1ba5b6165117..000000000000 --- a/dev-cpp/xsimd/xsimd-11.1.0.ebuild +++ /dev/null @@ -1,55 +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 ~loong ~riscv ~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}"/${P}-c++17.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 -} |