summaryrefslogtreecommitdiff
path: root/dev-cpp/fast_float/fast_float-7.0.0.ebuild
diff options
context:
space:
mode:
authorPetr Vaněk <arkamar@gentoo.org>2025-07-26 09:44:50 +0200
committerPetr Vaněk <arkamar@gentoo.org>2025-07-26 09:44:50 +0200
commit06e9137797f8776e0af808a65fcc4d24e552308c (patch)
tree760b6e8b5ad668d7c72bbdd204286de0c73b0c8b /dev-cpp/fast_float/fast_float-7.0.0.ebuild
parent677ce44a2320d58bd474264a39e86c40410006a1 (diff)
downloadgentoo-06e9137797f8776e0af808a65fcc4d24e552308c.tar.gz
gentoo-06e9137797f8776e0af808a65fcc4d24e552308c.tar.bz2
gentoo-06e9137797f8776e0af808a65fcc4d24e552308c.zip
dev-cpp/fast_float: drop 7.0.0
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
Diffstat (limited to 'dev-cpp/fast_float/fast_float-7.0.0.ebuild')
-rw-r--r--dev-cpp/fast_float/fast_float-7.0.0.ebuild34
1 files changed, 0 insertions, 34 deletions
diff --git a/dev-cpp/fast_float/fast_float-7.0.0.ebuild b/dev-cpp/fast_float/fast_float-7.0.0.ebuild
deleted file mode 100644
index 5020d57c6020..000000000000
--- a/dev-cpp/fast_float/fast_float-7.0.0.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 2024-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Fast and exact implementation of the C++ from_chars functions for number types"
-HOMEPAGE="https://github.com/fastfloat/fast_float"
-SRC_URI="https://github.com/fastfloat/fast_float/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="|| ( Apache-2.0 Boost-1.0 MIT )"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc ppc64 ~riscv ~sparc ~x86"
-IUSE="test"
-
-BDEPEND="test? ( dev-cpp/doctest )"
-
-RESTRICT="!test? ( test )"
-
-src_configure() {
- local mycmakeargs=( -DFASTFLOAT_TEST=$(usex test) )
- # Avoid passing these without USE=test to avoid cmake warning
- # "Manually-specified variables were not used by the project"
- use test && mycmakeargs+=(
- -DSYSTEM_DOCTEST=ON
- # Unconditionally calls FetchContent
- -DFASTFLOAT_SUPPLEMENTAL_TESTS=OFF
- )
-
- sed -i 's/-Werror//' tests/CMakeLists.txt || die
-
- cmake_src_configure
-}