dev-cpp/scnlib: drop 2.0.1

Signed-off-by: Steffen Winter <steffen.winter@proton.me>
This commit is contained in:
Steffen Winter 2024-03-26 14:35:00 +01:00
parent df7ec3b694
commit 1ff0fdd96b
No known key found for this signature in database
GPG Key ID: 4A8AA731814C8247
2 changed files with 0 additions and 43 deletions

View File

@ -1,2 +1 @@
DIST scnlib-2.0.1.tar.gz 517133 BLAKE2B ab9593bf9891ea20e0f9a34d853cbd29c2e8cc08b6a491e3215a8c05d4932e85cc3991146c84f2b536e62738150be1d483eee56c7d615dea57341f464ff49976 SHA512 d4a4dac7f739566ab7c7f1c28e3c528ae9917c0a853302e6afb74fc9e57a10c56aa1e1fa1f6f1aa1e6ffd6d90123dccb4349eb52ba336981755d05683d6e6a65
DIST scnlib-2.0.2.tar.gz 518311 BLAKE2B 21084e8830a10df0777dc100e2e448447f3a777535a821dca96423dfdb467c9073fb3e7c499ffb42598f54b8f44d3fdab9c43d005c313850454a8fd27e152273 SHA512 12b9ae26a5ccc600aacad1e2b2287bfc0b6986a260e182c91541876bc5804fe661093ad10d1befda56803afc7a9aa9f0348820dbb5af4fa6fdf048f85b3bcef1

View File

@ -1,42 +0,0 @@
# 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-4.0.0:=
test? ( dev-cpp/gtest )
"
RESTRICT="!test? ( test )"
src_prepare() {
use test && eapply "${FILESDIR}/${PN}-2.0.0-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
}