mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-04 01:18:33 -04:00
dev-cpp/xtensor: drop 0.24.4
Closes: https://bugs.gentoo.org/894294 (obsolete) Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
This commit is contained in:
parent
e05b54720a
commit
a3d5b7e8ed
@ -1,2 +1 @@
|
||||
DIST xtensor-0.24.4.tar.gz 1203049 BLAKE2B 512ab8b2e23b295e36462b63d796d037a4300b184e5932390e8c85a98e2f96639794622817bbdb73a24925c21d210bb39c96ecbd0f3d569a05eb8c5458b805c8 SHA512 e245571553592d5d0e98af5b645bc4526123764b0507ab6fb9ade690f62eae1e2850d8a44b0550ff95276b968c287bf7d6cab9262af5f28bcf7345b6d317d16a
|
||||
DIST xtensor-0.26.0.tar.gz 1216657 BLAKE2B 6127426b7f581414e3d92847b4962a4a7808b0a82640157067aceaae3226b6d65d5b6f6090590604c6f76cc7b7e8e6fe45cadbfcf1350f6a115167379b4d5f73 SHA512 9fe07376ef05d9822ffedba2804ef8af402e6560ca1424624bbfb220ef954b4f721d09c22dc045a76134a5856eccf97bfbe08450e5e70c58128583c9352afb5e
|
||||
|
@ -12,6 +12,5 @@
|
||||
<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>
|
||||
|
@ -1,105 +0,0 @@
|
||||
# Copyright 2023-2024 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_{11..12} )
|
||||
|
||||
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-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 )
|
||||
"
|
||||
|
||||
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
|
||||
|
||||
# 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
|
||||
}
|
||||
|
||||
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() {
|
||||
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
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
optfeature "JSON support" dev-cpp/nlohmann_json
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user