From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F0EC9158041 for ; Thu, 4 Apr 2024 10:09:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D6DEBE2A25; Thu, 4 Apr 2024 10:09:13 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 86932E2AD7 for ; Thu, 4 Apr 2024 10:09:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C1D07343275 for ; Thu, 4 Apr 2024 10:09:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4FAE81670 for ; Thu, 4 Apr 2024 10:09:11 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1712180064.88b17a57afcad6078f73043d21c5733c67d7dec6.flow@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-cpp/scnlib/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-cpp/scnlib/scnlib-2.0.2.ebuild X-VCS-Directories: dev-cpp/scnlib/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 88b17a57afcad6078f73043d21c5733c67d7dec6 X-VCS-Branch: master Date: Thu, 4 Apr 2024 10:09:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4a3f3400-8e5a-463b-9721-cfa1113c36f5 X-Archives-Hash: f8a140fcc0cdd006206cd4cee924bed3 commit: 88b17a57afcad6078f73043d21c5733c67d7dec6 Author: Steffen Winter proton me> AuthorDate: Wed Apr 3 21:34:24 2024 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Wed Apr 3 21:34:24 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=88b17a57 dev-cpp/scnlib: drop 2.0.2 Signed-off-by: Steffen Winter proton.me> dev-cpp/scnlib/scnlib-2.0.2.ebuild | 46 -------------------------------------- 1 file changed, 46 deletions(-) diff --git a/dev-cpp/scnlib/scnlib-2.0.2.ebuild b/dev-cpp/scnlib/scnlib-2.0.2.ebuild deleted file mode 100644 index dd3f493e65..0000000000 --- a/dev-cpp/scnlib/scnlib-2.0.2.ebuild +++ /dev/null @@ -1,46 +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 )" - -PATCHES=( - "${FILESDIR}/${P}-accept-newer-simdutf.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 -}