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 D037D158090 for ; Wed, 11 May 2022 01:04:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0E9FFE095F; Wed, 11 May 2022 01:04:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E1A9DE095F for ; Wed, 11 May 2022 01:04:14 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EC347341313 for ; Wed, 11 May 2022 01:04:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 192DF453 for ; Wed, 11 May 2022 01:04:11 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1652231040.cc5eb0f1c465faa4d7e4b00efcad2f8feeb020ae.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/spdlog/files/, dev-libs/spdlog/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/spdlog/files/spdlog-1.9.2-fix-clone-test.patch dev-libs/spdlog/spdlog-1.9.2-r1.ebuild X-VCS-Directories: dev-libs/spdlog/files/ dev-libs/spdlog/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: cc5eb0f1c465faa4d7e4b00efcad2f8feeb020ae X-VCS-Branch: master Date: Wed, 11 May 2022 01:04: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: 343e4082-536c-444e-81da-c7c38ce5de65 X-Archives-Hash: 7ceed49f57a0b010ea50c2ae12d70f4c commit: cc5eb0f1c465faa4d7e4b00efcad2f8feeb020ae Author: David Roman gmail com> AuthorDate: Fri May 6 19:28:37 2022 +0000 Commit: Sam James gentoo org> CommitDate: Wed May 11 01:04:00 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc5eb0f1 dev-libs/spdlog: fix clone async test Closes: https://bugs.gentoo.org/840764 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: David Roman gmail.com> Closes: https://github.com/gentoo/gentoo/pull/25355 Signed-off-by: Sam James gentoo.org> dev-libs/spdlog/files/spdlog-1.9.2-fix-clone-test.patch | 13 +++++++++++++ dev-libs/spdlog/spdlog-1.9.2-r1.ebuild | 5 ++++- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/dev-libs/spdlog/files/spdlog-1.9.2-fix-clone-test.patch b/dev-libs/spdlog/files/spdlog-1.9.2-fix-clone-test.patch new file mode 100644 index 000000000000..a224969d9025 --- /dev/null +++ b/dev-libs/spdlog/files/spdlog-1.9.2-fix-clone-test.patch @@ -0,0 +1,13 @@ +See https://bugs.gentoo.org/840764 + +--- a/tests/test_misc.cpp ++++ b/tests/test_misc.cpp +@@ -131,7 +131,7 @@ TEST_CASE("clone async", "[clone]") + logger->info("Some message 1"); + cloned->info("Some message 2"); + +- spdlog::details::os::sleep_for_millis(10); ++ spdlog::details::os::sleep_for_millis(100); + + REQUIRE(test_sink->lines().size() == 2); + REQUIRE(test_sink->lines()[0] == "Some message 1"); diff --git a/dev-libs/spdlog/spdlog-1.9.2-r1.ebuild b/dev-libs/spdlog/spdlog-1.9.2-r1.ebuild index c8f6d4c67329..d1522c98ebf1 100644 --- a/dev-libs/spdlog/spdlog-1.9.2-r1.ebuild +++ b/dev-libs/spdlog/spdlog-1.9.2-r1.ebuild @@ -31,7 +31,10 @@ DEPEND=" " RDEPEND="${DEPEND}" -PATCHES=( "${FILESDIR}/${PN}-force_external_fmt.patch" ) +PATCHES=( + "${FILESDIR}/${PN}-force_external_fmt.patch" + "${FILESDIR}/${P}-fix-clone-test.patch" +) src_prepare() { use test && eapply "${WORKDIR}"/${P}-update-catch-glibc-2.34.patch