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 05085158649 for ; Wed, 10 May 2023 19:43:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 44A6EE0AC1; Wed, 10 May 2023 19:42:59 +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 2A6B9E0AC1 for ; Wed, 10 May 2023 19:42:59 +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 01E58340C15 for ; Wed, 10 May 2023 19:42:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6F475A68 for ; Wed, 10 May 2023 19:42:56 +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: <1683747753.a566d1a5c7f9d722369d0b511f8a881b7804e2ef.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libmicrohttpd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libmicrohttpd/libmicrohttpd-0.9.75.ebuild net-libs/libmicrohttpd/libmicrohttpd-0.9.76.ebuild X-VCS-Directories: net-libs/libmicrohttpd/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a566d1a5c7f9d722369d0b511f8a881b7804e2ef X-VCS-Branch: master Date: Wed, 10 May 2023 19:42:56 +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: 6be7bea9-5a13-4a17-b844-89dc2ca30bea X-Archives-Hash: a8b5ac3c33a38ee46f5499b6fe1c3ae3 commit: a566d1a5c7f9d722369d0b511f8a881b7804e2ef Author: Karlson2k (Evgeny Grin) narod ru> AuthorDate: Tue May 9 14:06:11 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed May 10 19:42:33 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a566d1a5 net-libs/libmicrohttpd: fixed false positive QA warnings Closes: https://bugs.gentoo.org/898662 Signed-off-by: Karlson2k (Evgeny Grin) narod.ru> Closes: https://github.com/gentoo/gentoo/pull/30954 Signed-off-by: Sam James gentoo.org> net-libs/libmicrohttpd/libmicrohttpd-0.9.75.ebuild | 38 ++++++++++++++++++++++ net-libs/libmicrohttpd/libmicrohttpd-0.9.76.ebuild | 38 ++++++++++++++++++++++ 2 files changed, 76 insertions(+) diff --git a/net-libs/libmicrohttpd/libmicrohttpd-0.9.75.ebuild b/net-libs/libmicrohttpd/libmicrohttpd-0.9.75.ebuild index 91a33a5ffc66..1bb9ef7f324f 100644 --- a/net-libs/libmicrohttpd/libmicrohttpd-0.9.75.ebuild +++ b/net-libs/libmicrohttpd/libmicrohttpd-0.9.75.ebuild @@ -28,6 +28,44 @@ DOCS=( AUTHORS NEWS COPYING README ChangeLog ) PATCHES=( "${FILESDIR}"/${P}-fix-testsuite-with-lto.patch ) +# All checks in libmicrohttpd's configure are correct +# Gentoo Bug #898662 +QA_CONFIG_IMPL_DECL_SKIP=( + 'pthread_sigmask' + 'CreateThread' + 'pthread_attr_init' + 'pthread_attr_setname_np' + 'pthread_setname_np' + '__builtin_bswap32' + '__builtin_bswap64' + 'WSAPoll' + 'epoll_create1' + 'eventfd' + 'pipe' + 'pipe2' + 'socketpair' + 'gmtime_s' + 'host_get_clock_service' + 'clock_get_time' + 'mach_port_deallocate' + 'gethrtime' + 'timespec_get' + 'gettimeofday' + 'sendfile' + 'gnutls_privkey_import_x509_raw' + 'calloc' + 'fork' + 'waitpid' + 'random' + 'rand' + 'getsockname' + 'sysconf' + 'sysctl' + 'sysctlbyname' + 'usleep' + 'nanosleep' +) + multilib_src_configure() { ECONF_SOURCE="${S}" \ econf \ diff --git a/net-libs/libmicrohttpd/libmicrohttpd-0.9.76.ebuild b/net-libs/libmicrohttpd/libmicrohttpd-0.9.76.ebuild index a6645d2c91de..bf4d507938ba 100644 --- a/net-libs/libmicrohttpd/libmicrohttpd-0.9.76.ebuild +++ b/net-libs/libmicrohttpd/libmicrohttpd-0.9.76.ebuild @@ -28,6 +28,44 @@ DOCS=( AUTHORS NEWS COPYING README ChangeLog ) PATCHES=( "${FILESDIR}"/${PN}-0.9.75-fix-testsuite-with-lto.patch ) +# All checks in libmicrohttpd's configure are correct +# Gentoo Bug #898662 +QA_CONFIG_IMPL_DECL_SKIP=( + 'pthread_sigmask' + 'CreateThread' + 'pthread_attr_init' + 'pthread_attr_setname_np' + 'pthread_setname_np' + '__builtin_bswap32' + '__builtin_bswap64' + 'WSAPoll' + 'epoll_create1' + 'eventfd' + 'pipe' + 'pipe2' + 'socketpair' + 'gmtime_s' + 'host_get_clock_service' + 'clock_get_time' + 'mach_port_deallocate' + 'gethrtime' + 'timespec_get' + 'gettimeofday' + 'sendfile' + 'gnutls_privkey_import_x509_raw' + 'calloc' + 'fork' + 'waitpid' + 'random' + 'rand' + 'getsockname' + 'sysconf' + 'sysctl' + 'sysctlbyname' + 'usleep' + 'nanosleep' +) + multilib_src_configure() { ECONF_SOURCE="${S}" \ econf \