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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 97A04158086 for ; Thu, 4 Nov 2021 02:50:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 47125E08FF; Thu, 4 Nov 2021 02:50:47 +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 4FAD8E08FF for ; Thu, 4 Nov 2021 02:50:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 1893D342E0D for ; Thu, 4 Nov 2021 02:50:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5AF9C8F for ; Thu, 4 Nov 2021 02:50:41 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1635994197.678a6fa4106e18456ed9dadb6814a673de81fb32.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/notmuch/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/notmuch/notmuch-0.33.2.ebuild X-VCS-Directories: net-mail/notmuch/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 678a6fa4106e18456ed9dadb6814a673de81fb32 X-VCS-Branch: master Date: Thu, 4 Nov 2021 02:50:41 +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: 36e3a3c9-37ad-46cb-b10e-79164e200c89 X-Archives-Hash: 164e643110c3c5f6332da91690a74f44 commit: 678a6fa4106e18456ed9dadb6814a673de81fb32 Author: Georgy Yakovlev gentoo org> AuthorDate: Thu Nov 4 02:48:44 2021 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Thu Nov 4 02:49:57 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=678a6fa4 net-mail/notmuch: add GMime sandbox violation workaround Checking for GMime session key extraction support... * ACCESS DENIED: open_wr: /dev/bus/usb/001/011 notmuch configure compiles a program _check_session_keys.c, inline in ./configure script gmime/gpg/scdaemon tries to open usb devices in GMime test we pretend to allow it, without actually allowing it to read or write. Bug: https://bugs.gentoo.org/821328 Signed-off-by: Georgy Yakovlev gentoo.org> net-mail/notmuch/notmuch-0.33.2.ebuild | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/net-mail/notmuch/notmuch-0.33.2.ebuild b/net-mail/notmuch/notmuch-0.33.2.ebuild index 4cc225e3c55..873e974b815 100644 --- a/net-mail/notmuch/notmuch-0.33.2.ebuild +++ b/net-mail/notmuch/notmuch-0.33.2.ebuild @@ -142,6 +142,14 @@ src_configure() { $(use_with emacs) ) + # FIXME: + # Checking for GMime session key extraction support... * ACCESS DENIED: open_wr: /dev/bus/usb/001/011 + # notmuch configure compiles a program _check_session_keys.c, inline in ./configure script + # gmime/gpg/scdaemon tries to open usb devices in GMime test + # we pretend to allow it, without actually allowing it to read or write. + # https://bugs.gentoo.org/821328 + addpredict /dev/bus/usb + econf "${myconf[@]}" }