dev-cpp/xtl - 0.8.0 (guru)

Search

Install

Install this version:

emerge -a =dev-cpp/xtl-0.8.0

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =dev-cpp/xtl-0.8.0

Or alternatively:

emerge --autounmask-write -a =dev-cpp/xtl-0.8.0

Package Information

Description:
Algorithms and containers used by the xtensor stack and the xeus stack
Homepage:
https://github.com/xtensor-stack/xtl
License:
BSD

Ebuild Details

Version EAPI Keywords Slot
0.8.0 8 ~amd64 0
View Raw Ebuild
# Copyright 2023-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

PYTHON_COMPAT=( python3_{12..13} )

inherit cmake python-any-r1

DESCRIPTION="Algorithms and containers used by the xtensor stack and the xeus stack"
HOMEPAGE="https://github.com/xtensor-stack/xtl"
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-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 )"

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() {
	cmake_src_compile
	use doc && emake -C docs html
}

src_install() {
	use doc && HTML_DOCS=( docs/build/html/* )
	cmake_src_install
}

USE Flags

Manage flags for this package: euse -i <flag> -p dev-cpp/xtl | euse -E <flag> -p dev-cpp/xtl | euse -D <flag> -p dev-cpp/xtl

Global/Standard Flags

doc

Inherited Eclasses

Dependencies

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 )

Manifest for 0.8.0

Type File Size Source URLs
DIST xtl-0.8.0.tar.gz 138356 bytes https://codeload.github.com/xtensor-stack/xtl/tar.gz/refs/tags/0.8.0