summaryrefslogtreecommitdiff
path: root/dev-cpp/fast_float/fast_float-8.0.2.ebuild
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2025-06-22 17:12:24 +0100
committerSam James <sam@gentoo.org>2025-06-22 17:12:24 +0100
commit1f721e3f82bbce3ffcf6ff798d059b0821d23285 (patch)
tree6e4bae10912ef223b7ebe90e5f9d7e4030f727b3 /dev-cpp/fast_float/fast_float-8.0.2.ebuild
parent59b24a2de19ba104a7d5ba2873be50531ea45c78 (diff)
downloadgentoo-1f721e3f82bbce3ffcf6ff798d059b0821d23285.tar.gz
gentoo-1f721e3f82bbce3ffcf6ff798d059b0821d23285.tar.bz2
gentoo-1f721e3f82bbce3ffcf6ff798d059b0821d23285.zip
dev-cpp/fast_float: add 8.0.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-cpp/fast_float/fast_float-8.0.2.ebuild')
-rw-r--r--dev-cpp/fast_float/fast_float-8.0.2.ebuild35
1 files changed, 35 insertions, 0 deletions
diff --git a/dev-cpp/fast_float/fast_float-8.0.2.ebuild b/dev-cpp/fast_float/fast_float-8.0.2.ebuild
new file mode 100644
index 000000000000..a1159186ae55
--- /dev/null
+++ b/dev-cpp/fast_float/fast_float-8.0.2.ebuild
@@ -0,0 +1,35 @@
+# 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"
+RESTRICT="!test? ( test )"
+
+BDEPEND="test? ( dev-cpp/doctest )"
+
+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"
+ if use test; then
+ mycmakeargs+=(
+ -DSYSTEM_DOCTEST=ON
+ # Unconditionally calls FetchContent
+ -DFASTFLOAT_SUPPLEMENTAL_TESTS=OFF
+ )
+ sed -i 's/-Werror//' tests/CMakeLists.txt || die
+ fi
+
+ cmake_src_configure
+}