commit: 37e4ef4c0ecb1fd18d52a78d2995ed666c426929 Author: Steffen Winter <steffen.winter <AT> proton <DOT> me> AuthorDate: Wed Apr 3 21:31:28 2024 +0000 Commit: Steffen Winter <stffn.mobil <AT> freenet <DOT> de> CommitDate: Wed Apr 3 21:31:28 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=37e4ef4c
dev-cpp/scnlib: Bump required simdutf version and adjust patch Signed-off-by: Steffen Winter <steffen.winter <AT> proton.me> .../files/scnlib-2.0.2-accept-simdutf-5.2.x.patch | 16 ++++++++ dev-cpp/scnlib/scnlib-2.0.2-r1.ebuild | 46 ++++++++++++++++++++++ 2 files changed, 62 insertions(+) diff --git a/dev-cpp/scnlib/files/scnlib-2.0.2-accept-simdutf-5.2.x.patch b/dev-cpp/scnlib/files/scnlib-2.0.2-accept-simdutf-5.2.x.patch new file mode 100644 index 0000000000..af0feb295c --- /dev/null +++ b/dev-cpp/scnlib/files/scnlib-2.0.2-accept-simdutf-5.2.x.patch @@ -0,0 +1,16 @@ +diff --git a/cmake/dependencies.cmake b/cmake/dependencies.cmake +index ae2832b..186fbed 100644 +--- a/cmake/dependencies.cmake ++++ b/cmake/dependencies.cmake +@@ -61,7 +61,10 @@ endif () + # we don't want to include tests of dependencies, so we need to do some manual work + + if (SCN_USE_EXTERNAL_SIMDUTF) +- find_package(simdutf 4.0.0 CONFIG REQUIRED) ++ find_package(simdutf 5.2.0 CONFIG) ++ if(NOT simdutf_FOUND) ++ find_package(simdutf 4.0.0 CONFIG REQUIRED) ++ endif() + else () + FetchContent_Declare( + simdutf diff --git a/dev-cpp/scnlib/scnlib-2.0.2-r1.ebuild b/dev-cpp/scnlib/scnlib-2.0.2-r1.ebuild new file mode 100644 index 0000000000..c4d3153a06 --- /dev/null +++ b/dev-cpp/scnlib/scnlib-2.0.2-r1.ebuild @@ -0,0 +1,46 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="scanf for modern C++ " +HOMEPAGE="https://scnlib.dev/" +SRC_URI="https://github.com/eliaskosunen/scnlib/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +BDEPEND=" + dev-cpp/fast_float + >=dev-cpp/simdutf-5.2.0:= + test? ( dev-cpp/gtest ) +" + +RESTRICT="!test? ( test )" + +PATCHES=( + "${FILESDIR}/${P}-accept-simdutf-5.2.x.patch" +) + +src_prepare() { + use test && eapply "${FILESDIR}/${P}-no-external-test-deps.patch" + cmake_src_prepare +} + +src_configure() { + local mycmakeargs=( + -DSCN_BENCHMARKS=OFF + -DSCN_BENCHMARKS_BINARYSIZE=OFF + -DSCN_BENCHMARKS_BUILDTIME=OFF + -DSCN_DOCS=OFF + -DSCN_EXAMPLES=$(usex test ON OFF) + -DSCN_TESTS=$(usex test ON OFF) + -DSCN_USE_EXTERNAL_FAST_FLOAT=ON + -DSCN_USE_EXTERNAL_SIMDUTF=ON + ) + cmake_src_configure +}
