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 0C581158046 for ; Fri, 11 Oct 2024 09:55:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0D6C6E29B0; Fri, 11 Oct 2024 09:55:29 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 E826DE29B0 for ; Fri, 11 Oct 2024 09:55:28 +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 0B69F343258 for ; Fri, 11 Oct 2024 09:55:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 29AFDB36 for ; Fri, 11 Oct 2024 09:55:26 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1728572475.1a0eccdda6bc71d21ca2d8f579c258fdd38e24e0.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: games-arcade/taisei/ X-VCS-Repository: repo/proj/guru X-VCS-Files: games-arcade/taisei/taisei-1.4.2.ebuild X-VCS-Directories: games-arcade/taisei/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 1a0eccdda6bc71d21ca2d8f579c258fdd38e24e0 X-VCS-Branch: master Date: Fri, 11 Oct 2024 09:55:26 +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: 26464a13-080c-4eb7-8e00-5b50ac5f99bf X-Archives-Hash: e3fa45e331cfbdc37a8fe2f666fa5f3e commit: 1a0eccdda6bc71d21ca2d8f579c258fdd38e24e0 Author: Haelwenn (lanodan) Monnier hacktivis me> AuthorDate: Thu Oct 10 14:59:26 2024 +0000 Commit: David Roman gmail com> CommitDate: Thu Oct 10 15:01:15 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1a0eccdd games-arcade/taisei: add QA_CONFIG_IMPL_DECL_SKIP for BSD qsort_r and MS qsort_s Closes: https://bugs.gentoo.org/941235 Signed-off-by: Haelwenn (lanodan) Monnier hacktivis.me> games-arcade/taisei/taisei-1.4.2.ebuild | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/games-arcade/taisei/taisei-1.4.2.ebuild b/games-arcade/taisei/taisei-1.4.2.ebuild index 854e6491a..ee8b7169b 100644 --- a/games-arcade/taisei/taisei-1.4.2.ebuild +++ b/games-arcade/taisei/taisei-1.4.2.ebuild @@ -49,6 +49,13 @@ BDEPEND=" ${PYTHON_DEPS} doc? ( dev-python/docutils )" +# BSD qsort_r(3) and Microsoft qsort_s(3) implicit declarations +# https://bugs.gentoo.org/941235 +QA_CONFIG_IMPL_DECL_SKIP=( + qsort_r + qsort_s +) + python_check_deps() { python_has_version "dev-python/zstandard[${PYTHON_USEDEP}]" }