From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1552902-garchives=archives.gentoo.org@lists.gentoo.org> 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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id ADEC1158089 for <garchives@archives.gentoo.org>; Fri, 8 Sep 2023 08:55:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 02C032BC022; Fri, 8 Sep 2023 08:55:18 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D81FE2BC022 for <gentoo-commits@lists.gentoo.org>; Fri, 8 Sep 2023 08:55:17 +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 D1F24335C56 for <gentoo-commits@lists.gentoo.org>; Fri, 8 Sep 2023 08:55:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4853C113F for <gentoo-commits@lists.gentoo.org>; Fri, 8 Sep 2023 08:55:15 +0000 (UTC) From: "David Seifert" <soap@gentoo.org> 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 Seifert" <soap@gentoo.org> Message-ID: <1694163307.1c724115c69649f251d50dc35d08aa2c03a9d6a4.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/libpaper/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/libpaper/libpaper-2.1.1.ebuild X-VCS-Directories: app-text/libpaper/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 1c724115c69649f251d50dc35d08aa2c03a9d6a4 X-VCS-Branch: master Date: Fri, 8 Sep 2023 08:55:15 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8930a413-b369-41f6-9a29-9fc7fbb4cf71 X-Archives-Hash: 94b1c8d4a8f2c42ad12457d57bff07d9 commit: 1c724115c69649f251d50dc35d08aa2c03a9d6a4 Author: David Seifert <soap <AT> gentoo <DOT> org> AuthorDate: Fri Sep 8 08:55:07 2023 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Fri Sep 8 08:55:07 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c724115 app-text/libpaper: mask gnulib false positive implicit decls Closes: https://bugs.gentoo.org/898346 Signed-off-by: David Seifert <soap <AT> gentoo.org> app-text/libpaper/libpaper-2.1.1.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app-text/libpaper/libpaper-2.1.1.ebuild b/app-text/libpaper/libpaper-2.1.1.ebuild index 35123da4b6cf..2cae82b147f6 100644 --- a/app-text/libpaper/libpaper-2.1.1.ebuild +++ b/app-text/libpaper/libpaper-2.1.1.ebuild @@ -13,6 +13,12 @@ LICENSE="LGPL-2.1+ GPL-3+ public-domain" SLOT="0/$(ver_cut 1)" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" +QA_CONFIG_IMPL_DECL_SKIP=( + # Gnulib false positives #898346 + # These are all tested without an #include first + MIN alignof static_assert +) + src_configure() { econf --enable-relocatable }