From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 22 09:43:11 2021 Received: (at submit) by debbugs.gnu.org; 22 Apr 2021 13:43:11 +0000 Received: from localhost ([127.0.0.1]:33209 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lZZbq-00079S-Pm for submit@debbugs.gnu.org; Thu, 22 Apr 2021 09:43:11 -0400 Received: from lists.gnu.org ([209.51.188.17]:55798) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lZUyA-0003CN-93 for submit@debbugs.gnu.org; Thu, 22 Apr 2021 04:45:54 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:53898) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lZUy9-0003Ai-W2 for bug-gnu-emacs@gnu.org; Thu, 22 Apr 2021 04:45:54 -0400 Received: from wilbur.contactoffice.com ([212.3.242.68]:49660) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lZUy7-0000MV-8A for bug-gnu-emacs@gnu.org; Thu, 22 Apr 2021 04:45:53 -0400 Received: from smtpauth2.co-bxl (smtpauth2.co-bxl [10.2.0.24]) by wilbur.contactoffice.com (Postfix) with ESMTP id 81ACF5E5 for ; Thu, 22 Apr 2021 10:45:46 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1619081146; s=20210208-e7xh; d=mailfence.com; i=meril@mailfence.com; h=From:To:Subject:Date:Message-ID:MIME-Version:Content-Type:Content-Transfer-Encoding; l=2719; bh=QuntxwZiiiN24EEPGQ68ewYaxHSTJ94AOanoBT9pCdo=; b=XezEwxYSiV5yOEsI/B6nvKcoGV3wRk2vDcKhwzziFQMPOCDS8yPU3xmEcD2DTjEE CO6nb3otAXs48gy3qivMPDclJijwRZgpZEdBoR5kzZR+TdauutaBUqb6rUZN6V0Mkk4 8oHPx0M/6MQJ7ocS07ZX2V4ELaBYpSXOKn2iisEwWDzrAYSdSKj2szlUGX83E/2WN2x yreMRCaWUiKVNesgTGOFvo+nFTxJ+gyKi10OTYiqk6eYDNPGZx5uNg7ZGbu/RQwTgWm PQTy9A63/yhJ/g4ExgFBWsaMm6qR/uRrcwDFh4hCIaUZh5/C/YpePc20j/0llyxg17r UykBbI26kw== Received: by smtp.mailfence.com with ESMTPA for ; Thu, 22 Apr 2021 10:45:44 +0200 (CEST) User-agent: mu4e 1.4.15; emacs 28.0.50 From: "" To: bug-gnu-emacs@gnu.org Subject: 28.0.50; Recent seccomp changes break compilation Date: Thu, 22 Apr 2021 09:42:11 +0100 Message-ID: <87eef2wvuw.fsf@meril-lin-7rvk493.corp.improbable.io> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Flag: NO X-Spam-Status: No, hits=-2.2 required=4.7 symbols=ALL_TRUSTED, BAYES_00, FROM_BLANK_NAME device=10.2.0.20 X-ContactOffice-Account: com:187458174 Received-SPF: pass client-ip=212.3.242.68; envelope-from=meril@mailfence.com; helo=wilbur.contactoffice.com X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FROM_BLANK_NAME=0.723, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.7 (/) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Thu, 22 Apr 2021 09:43:09 -0400 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.3 (/) Hi, The recent changes on seccomp introduced by Philipp Stephani (around commit be8328acf9aa464f848e682e63e417a18529af9e) break the compilation when Emacs = is built within a Docker container. The error is: seccomp-filter.c:168:11: error: static_assert expression is not an integral= constant expression verify ((uintptr_t) NULL =3D=3D 0); ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~ ../lib/verify.h:273:32: note: expanded from macro 'verify' # define verify(R) _GL_VERIFY (R, "verify (" #R ")", -) ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../lib/verify.h:213:57: note: expanded from macro '_GL_VERIFY' # define _GL_VERIFY(R, DIAGNOSTIC, ...) _Static_assert (R, DIAGNOSTIC) ^ seccomp-filter.c:168:11: note: cast that performs the conversions of a rein= terpret_cast is not allowed in a constant expression 1 error generated. make[1]: *** [Makefile:433: seccomp-filter] Error 1 make[1]: *** Waiting for unfinished jobs.... make: *** [Makefile:419: lib-src] Error 2 Thank you In GNU Emacs 28.0.50 (build 2, x86_64-pc-linux-gnu, GTK+ Version 3.24.28, c= airo version 1.17.4) of 2021-04-08 built on ab91f5cae90f Repository revision: 1000227d38b4f139f1e393e6bfb613829fcc92d0 Repository branch: pgtk-nativecomp Windowing system distributor 'System Description: Arch Linux Configured using: 'configure --prefix=3D/usr --sysconfdir=3D/etc --libexecdir=3D/usr/lib --localstatedir=3D/var --mandir=3D/usr/share/man --with-gameuser=3D:games --with-sound=3Dalsa --with-modules --with-x-toolkit=3Dgtk3 --with-cairo --with-xwidgets --with-native-compilation --with-pgtk --without-compress-install --without-gconf --without-gsettings --without-m17n-flt --enable-autodepend --enable-link-time-optimization CC=3D/usr/bin/clang 'CFLAGS=3D-march=3Dx86-64 -mtune=3Dgeneric -O2 -pipe -= fno-plt -g -flto' LDFLAGS=3D-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now CPPFLAGS=3D-D_FORTIFY_SOURCE=3D2 'CPP=3D/usr/bin/clang -E'' Configured features: ACL CAIRO DBUS FREETYPE GIF GLIB GMP GNUTLS GPM HARFBUZZ JPEG JSON LCMS2 LI= BOTF LIBSYSTEMD LIBXML2 MODULES NATIVE_COMP NOTIFY INOTIFY PDUMPER PGTK PNG RSVG SOUND THREADS TIFF TOOLKIT_SCROLL_BARS XIM XWIDGETS GTK3 ZLIB Important settings: value of $LC_COLLATE: C value of $LANG: en_GB.UTF-8 locale-coding-system: utf-8 Major mode: N/A Minor modes in effect: N/A Load-path shadows: None found. Features: (nativecomp emacs) Memory information: ((conses 16 1728860 1056828) (symbols 48 76485 37) (strings 32 291745 60043) (string-bytes 1 9529995) (vectors 16 189912) (vector-slots 8 6163460 507432) (floats 8 1413 2807) (intervals 56 9385 3328) (buffers 992 28)) --=20 --- M=C3=A9ril Pilon From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 22 10:18:31 2021 Received: (at 47952) by debbugs.gnu.org; 22 Apr 2021 14:18:31 +0000 Received: from localhost ([127.0.0.1]:35227 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lZaA3-0004MW-3u for submit@debbugs.gnu.org; Thu, 22 Apr 2021 10:18:31 -0400 Received: from mail-oo1-f49.google.com ([209.85.161.49]:42732) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lZaA1-0004MJ-LJ for 47952@debbugs.gnu.org; Thu, 22 Apr 2021 10:18:30 -0400 Received: by mail-oo1-f49.google.com with SMTP id e12-20020a056820060cb02901e94efc049dso5048433oow.9 for <47952@debbugs.gnu.org>; Thu, 22 Apr 2021 07:18:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=sWjipY8z3l0qkgwOIlpvJnZ58dO4Tjm9OItYvGBeiG8=; b=ZuIRx9Y+Ucrry2V7a0CUkK9X1R/8wOBh+jpQ0FlpkhyBRP8F8xrHnlZV2RYGNDuNck iNgCxaeIXWDFwVB49aKYXESX9LTF/mHgtAXK5c5DaXyhGfNywmcKMkP1gM4Qwlwz0v8M 6VOu4YTV3nSRlk481rYxEXG2gsDI57DAbiuQ2lK+IVKabGJG3fANB+U7K+MTJ68MFSsV ZGhC+aJ1gLXpnV8ta2Ax9XIi8mda8EAhIoamoQ/vDM8ubzQFcQj070dlX9xaxVQwk9Hi 29IcmA+okuCgtamWzUvJw4EFT75N3aOC9PX3LTHi69lJby8jcMY7YYk4N/Nr17xQjuDk fsBQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=sWjipY8z3l0qkgwOIlpvJnZ58dO4Tjm9OItYvGBeiG8=; b=nuxLAtARn7BIqdEIDRRlnSBOLSFAhwLGBcYv38mCJE84Ua+L8sp9hVL6cQuUSb4ffT Ke+FFoq2KNQCSWji6GeIjKpyBFgFnJS6jKtbT0zbFD2nZkoDAYrKcAhgjaUHoZYF6Ys8 8koSAa5ajV55/LyxkqIxjlBZ71CUq+5qqybDxx+lMrLUGFGX7pbRYm321Ps7Nzfw2fPN ej9WFVO87eKtXziEvS/ePxFhJN9bHMDW8dFjSXM5Z39GOeUIKVGm0LVyl2y9xBlz5BJ+ CHmh4wySt/333L7bmjGme0bpJuLfqvFjXstBN/UMVUf52yRjVkrG/yd7KzMt5laAtPi9 o6Zw== X-Gm-Message-State: AOAM5305XlT47RfnJjbuOGX20lkXXKNDDRLrOo2Ygp85rEOzrWMqxgxx VVG1Fz+fZrw9TkaeEujtZ/+lYi/EohtIuPqa56w= X-Google-Smtp-Source: ABdhPJxzkKDNelPb6btBV8kQ6M9IUwiKIhuxEi2pmBdEyv/cuUE60qG4rFyRxYQCOXlZBbuTro7TwknFApDBcTBBDz8= X-Received: by 2002:a4a:8c4f:: with SMTP id v15mr2582200ooj.25.1619101104126; Thu, 22 Apr 2021 07:18:24 -0700 (PDT) MIME-Version: 1.0 References: <87eef2wvuw.fsf@meril-lin-7rvk493.corp.improbable.io> In-Reply-To: <87eef2wvuw.fsf@meril-lin-7rvk493.corp.improbable.io> From: Philipp Stephani Date: Thu, 22 Apr 2021 16:18:13 +0200 Message-ID: Subject: Re: bug#47952: 28.0.50; Recent seccomp changes break compilation To: meril@mailfence.com Content-Type: text/plain; charset="UTF-8" X-Spam-Score: 0.3 (/) X-Debbugs-Envelope-To: 47952 Cc: 47952@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) Am Do., 22. Apr. 2021 um 15:44 Uhr schrieb meril--- via Bug reports for GNU Emacs, the Swiss army knife of text editors : > > Hi, > > The recent changes on seccomp introduced by Philipp Stephani (around commit > be8328acf9aa464f848e682e63e417a18529af9e) break the compilation when Emacs is > built within a Docker container. > > The error is: > > seccomp-filter.c:168:11: error: static_assert expression is not an integral constant expression > verify ((uintptr_t) NULL == 0); > ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~ > ../lib/verify.h:273:32: note: expanded from macro 'verify' > # define verify(R) _GL_VERIFY (R, "verify (" #R ")", -) > ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ > ../lib/verify.h:213:57: note: expanded from macro '_GL_VERIFY' > # define _GL_VERIFY(R, DIAGNOSTIC, ...) _Static_assert (R, DIAGNOSTIC) > ^ > seccomp-filter.c:168:11: note: cast that performs the conversions of a reinterpret_cast is not allowed in a constant expression > 1 error generated. > make[1]: *** [Makefile:433: seccomp-filter] Error 1 > make[1]: *** Waiting for unfinished jobs.... > make: *** [Makefile:419: lib-src] Error 2 > Is this the same as Bug#47951? From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 22 11:21:34 2021 Received: (at control) by debbugs.gnu.org; 22 Apr 2021 15:21:34 +0000 Received: from localhost ([127.0.0.1]:35311 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lZb94-0001jg-HO for submit@debbugs.gnu.org; Thu, 22 Apr 2021 11:21:34 -0400 Received: from eggs.gnu.org ([209.51.188.92]:54218) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lZb91-0001jS-Ok for control@debbugs.gnu.org; Thu, 22 Apr 2021 11:21:33 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:50994) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lZb8v-0005c0-Fl for control@debbugs.gnu.org; Thu, 22 Apr 2021 11:21:26 -0400 Received: from rgm by fencepost.gnu.org with local (Exim 4.82) (envelope-from ) id 1lZb8v-0004b9-5O for control@debbugs.gnu.org; Thu, 22 Apr 2021 11:21:25 -0400 Subject: control message for bug 47952 To: X-Mailer: mail (GNU Mailutils 2.99.98) Message-Id: From: Glenn Morris Date: Thu, 22 Apr 2021 11:21:25 -0400 X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) merge 47951 47952 From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 22 11:44:29 2021 Received: (at 47952) by debbugs.gnu.org; 22 Apr 2021 15:44:30 +0000 Received: from localhost ([127.0.0.1]:35337 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lZbVD-0004Qc-KN for submit@debbugs.gnu.org; Thu, 22 Apr 2021 11:44:29 -0400 Received: from wilbur.contactoffice.com ([212.3.242.68]:51564) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lZb1f-0007q0-JS for 47952@debbugs.gnu.org; Thu, 22 Apr 2021 11:13:56 -0400 Received: from smtpauth2.co-bxl (smtpauth2.co-bxl [10.2.0.24]) by wilbur.contactoffice.com (Postfix) with ESMTP id 0350FAF8; Thu, 22 Apr 2021 17:13:49 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1619104429; s=20210208-e7xh; d=mailfence.com; i=meril@mailfence.com; h=References:From:To:Cc:Subject:Date:In-reply-to:Message-ID:MIME-Version:Content-Type:Content-Transfer-Encoding; l=1510; bh=TvvPdxDZkss35gM26VT3oxU1iYEdLXgOZ6LcYE8FlfI=; b=4wcxf6Hj5cUkI9SRie7e+bQlMbcDBt57DLjVpw+U8Yj4wIGTMa+1hh1qTKPbJihC Gmd9YUkXsgO0aTSJq6UvrIIPIeFF5qRG+ix4GehbCtqms4MNfxK3DqIfG06vyCohnfU HOl1CH9YCyd8IDiMTwRaE/IloGY3b9wynbXN5v8noM6MtoBGy745VXBQp6ocqe4AyVP PY7T25228JPLfaCnTd4EGlwbBJ8Ia2vhDoiNV0RbRwXjw1temcRyJMSex9XUkU/LFPo 2o+fUBDZPkqJp3W13tmLgKfz1fFN9opmPO1cpf1aNOMIffvqQ7NsF0QHaeB1UGZnqdH FEQPjSjTKA== Received: by smtp.mailfence.com with ESMTPA ; Thu, 22 Apr 2021 17:13:44 +0200 (CEST) References: <87eef2wvuw.fsf@meril-lin-7rvk493.corp.improbable.io> User-agent: mu4e 1.4.15; emacs 28.0.50 From: "" To: Philipp Stephani Subject: Re: bug#47952: 28.0.50; Recent seccomp changes break compilation Date: Thu, 22 Apr 2021 16:12:26 +0100 In-reply-to: Message-ID: <87czumwdw8.fsf@meril-lin-7rvk493.corp.improbable.io> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Flag: NO X-Spam-Status: No, hits=-0.3 required=4.7 symbols=ALL_TRUSTED, FROM_BLANK_NAME device=10.2.0.21 X-ContactOffice-Account: com:187458174 X-Spam-Score: 1.4 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Hi, Thanks for your quick answer, I will test the new commit shortly. Yes, is it the same as Bug#47951, I made a mistake and sent the same email twice. Content analysis details: (1.4 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 2.1 FROM_BLANK_NAME From: contains empty name 0.0 RCVD_IN_MSPIKE_H4 RBL: Very Good reputation (+4) [212.3.242.68 listed in wl.mailspike.net] -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [212.3.242.68 listed in list.dnswl.org] -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders X-Debbugs-Envelope-To: 47952 X-Mailman-Approved-At: Thu, 22 Apr 2021 11:44:27 -0400 Cc: 47952@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.4 (/) Hi, Thanks for your quick answer, I will test the new commit shortly. Yes, is it the same as Bug#47951, I made a mistake and sent the same email twice. Thank you Best Philipp Stephani writes: > Am Do., 22. Apr. 2021 um 15:44 Uhr schrieb meril--- via Bug reports > for GNU Emacs, the Swiss army knife of text editors > : >> >> Hi, >> >> The recent changes on seccomp introduced by Philipp Stephani (around com= mit >> be8328acf9aa464f848e682e63e417a18529af9e) break the compilation when Ema= cs is >> built within a Docker container. >> >> The error is: >> >> seccomp-filter.c:168:11: error: static_assert expression is not an integ= ral constant expression >> verify ((uintptr_t) NULL =3D=3D 0); >> ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~ >> ../lib/verify.h:273:32: note: expanded from macro 'verify' >> # define verify(R) _GL_VERIFY (R, "verify (" #R ")", -) >> ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ >> ../lib/verify.h:213:57: note: expanded from macro '_GL_VERIFY' >> # define _GL_VERIFY(R, DIAGNOSTIC, ...) _Static_assert (R, DIAGNOSTIC) >> ^ >> seccomp-filter.c:168:11: note: cast that performs the conversions of a r= einterpret_cast is not allowed in a constant expression >> 1 error generated. >> make[1]: *** [Makefile:433: seccomp-filter] Error 1 >> make[1]: *** Waiting for unfinished jobs.... >> make: *** [Makefile:419: lib-src] Error 2 >> > > Is this the same as Bug#47951? --=20 --- M=C3=A9ril Pilon From debbugs-submit-bounces@debbugs.gnu.org Mon May 03 04:29:27 2021 Received: (at 47952) by debbugs.gnu.org; 3 May 2021 08:29:27 +0000 Received: from localhost ([127.0.0.1]:46150 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ldTxH-00037E-3Z for submit@debbugs.gnu.org; Mon, 03 May 2021 04:29:27 -0400 Received: from quimby.gnus.org ([95.216.78.240]:39056) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ldTxF-000372-Rv; Mon, 03 May 2021 04:29:26 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=i1RB6wOQrnjZs4Cd6DDF5gKJjetBATz/SR94VPQj2Go=; b=iUdeVrveoTobeVsoHUWIXgwerZ NtrXEp9I9V0qcv7I2EU5VfeLbujVsVGrwvjqrDz5Oh52oFMn8iC5V2DARqFUCv98eYeqnZ8q/bZ/C HMKGmDg/LpJpitMp13yRyZmKH64ckdUvmEMPQ1NCsyx9IMkZfSNzscqJwmfv+EqCFwRU=; Received: from cm-84.212.220.105.getinternet.no ([84.212.220.105] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1ldTx7-0002IJ-Kk; Mon, 03 May 2021 10:29:19 +0200 From: Lars Ingebrigtsen To: "" Subject: Re: bug#47951: 28.0.50; Recent seccomp changes break compilation in Docker References: <87eef2wvuw.fsf@meril-lin-7rvk493.corp.improbable.io> <87czumwdw8.fsf@meril-lin-7rvk493.corp.improbable.io> X-Now-Playing: The Style Council's _The Complete Adventures (1)_: "The Paris Match [Early Version]" Date: Mon, 03 May 2021 10:29:17 +0200 In-Reply-To: <87czumwdw8.fsf@meril-lin-7rvk493.corp.improbable.io> (meril@mailfence.com's message of "Thu, 22 Apr 2021 16:12:26 +0100") Message-ID: <87fsz4dxuq.fsf_-_@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: "" writes: > Thanks for your quick answer, I will test the new commit shortly. Did you have a chance to check the patch by now? Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 47952 Cc: 47951@debbugs.gnu.org, Philipp Stephani , 47952@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) "" writes: > Thanks for your quick answer, I will test the new commit shortly. Did you have a chance to check the patch by now? -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Mon May 03 04:29:32 2021 Received: (at control) by debbugs.gnu.org; 3 May 2021 08:29:32 +0000 Received: from localhost ([127.0.0.1]:46155 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ldTxM-00037X-F7 for submit@debbugs.gnu.org; Mon, 03 May 2021 04:29:32 -0400 Received: from quimby.gnus.org ([95.216.78.240]:39072) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ldTxK-000375-PX for control@debbugs.gnu.org; Mon, 03 May 2021 04:29:31 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=YyALvWHrwrNOMe0o1tuIK7d+9PjDjVtAo4bP/ptQO1c=; b=bgKEJUDtY2IJXQp/owQQcWe+Xu Pv/qSWmuj+m7Y8vWc6V3OsIMklF7W86eTWDnG+MKGx6vrH0Ap1PQYo58KdJGhhmuEJL8H3onvcPPh fqRPXISp9Isjmfg13tMHspQqTuONZzEsL0foWScxf4cO8vIe+y/dO3qKD4fZ81Gzi8Lg=; Received: from cm-84.212.220.105.getinternet.no ([84.212.220.105] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1ldTxD-0002IR-Cc for control@debbugs.gnu.org; Mon, 03 May 2021 10:29:25 +0200 Date: Mon, 03 May 2021 10:29:22 +0200 Message-Id: <87eeeodxul.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #47951 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: tags 47951 + moreinfo quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) tags 47951 + moreinfo quit From debbugs-submit-bounces@debbugs.gnu.org Mon May 03 11:33:12 2021 Received: (at 47952) by debbugs.gnu.org; 3 May 2021 15:33:12 +0000 Received: from localhost ([127.0.0.1]:47020 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ldaZM-00087a-3S for submit@debbugs.gnu.org; Mon, 03 May 2021 11:33:12 -0400 Received: from wilbur.contactoffice.com ([212.3.242.68]:58642) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ldaZJ-00087P-64; Mon, 03 May 2021 11:33:10 -0400 Received: from smtpauth1.co-bxl (smtpauth1.co-bxl [10.2.0.15]) by wilbur.contactoffice.com (Postfix) with ESMTP id 5661ECA9; Mon, 3 May 2021 17:33:02 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1620055982; s=20210208-e7xh; d=mailfence.com; i=meril@mailfence.com; h=References:From:To:Cc:Subject:Date:In-reply-to:Message-ID:MIME-Version:Content-Type:Content-Transfer-Encoding; l=383; bh=f9Dv3YWvInZy6JFRRwEEtiTPeovEoXCNCipvfJ65R+M=; b=CTsDYQilne+pNPT+kcIdVVlEWsz46vdKVuzX/mG3rfeSx9T2BsqsuXFkzb/6j86+ /kJbVtr+kNna3+Vuxde0yGvUzMYvob/dCjOeHRi98FF/YWOTfCtjOJ4JqDdBcHVXqB4 pQAW7/6tYudMJepTczjcmNCwh68a9TOyVZQhuUR7KEM9VmDB9vu81ZMjJ4EeYzPj3X+ Z9piYY8ll+g2nlRLUy08nQDBpPTT8m3ps7EnVl4NpZAD1cyjcA7OHKDB7pKA9XudX2o ZvF69+Y8zPemWorXXbfM48LXVo/CPuJQY476NNPnl8RCwnMPVM+SQyVobND/+M0Gico nsZXX8ngQA== Received: by smtp.mailfence.com with ESMTPA ; Mon, 3 May 2021 17:32:59 +0200 (CEST) References: <87eef2wvuw.fsf@meril-lin-7rvk493.corp.improbable.io> <87czumwdw8.fsf@meril-lin-7rvk493.corp.improbable.io> <87fsz4dxuq.fsf_-_@gnus.org> User-agent: mu4e 1.4.15; emacs 28.0.50 From: =?utf-8?Q?M=C3=A9ril?= Pilon To: Lars Ingebrigtsen Subject: Re: bug#47951: 28.0.50; Recent seccomp changes break compilation in Docker Date: Mon, 03 May 2021 16:31:39 +0100 In-reply-to: <87fsz4dxuq.fsf_-_@gnus.org> Message-ID: <87bl9rkf2u.fsf@meril-lin-7rvk493.corp.improbable.io> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Flag: NO X-Spam-Status: No, hits=-2.9 required=4.7 symbols=ALL_TRUSTED, BAYES_00 device=10.2.0.20 X-ContactOffice-Account: com:187458174 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 47952 Cc: 47951@debbugs.gnu.org, Philipp Stephani , 47952@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Hi Lars, I confirm that this issue is now fixed. The patch works great. Thanks to the maintainers for their work on this. Best Lars Ingebrigtsen writes: > "" writes: > >> Thanks for your quick answer, I will test the new commit shortly. > > Did you have a chance to check the patch by now? --=20 --- M=C3=A9ril Pilon From debbugs-submit-bounces@debbugs.gnu.org Tue May 04 03:58:45 2021 Received: (at 47952) by debbugs.gnu.org; 4 May 2021 07:58:45 +0000 Received: from localhost ([127.0.0.1]:51491 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ldpx7-0005uT-MK for submit@debbugs.gnu.org; Tue, 04 May 2021 03:58:45 -0400 Received: from quimby.gnus.org ([95.216.78.240]:50490) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ldpx6-0005uG-Oe; Tue, 04 May 2021 03:58:45 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Transfer-Encoding:Content-Type:MIME-Version:Message-ID :In-Reply-To:Date:References:Subject:Cc:To:From:Sender:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=g9qGCLFvaUT29uhmB+pNN5STLxuUr+Wymnwffa9d2XM=; b=suPps2dmWpPoiaSfmDX0scelyH 10pMVAVXSEdW1nnhd4rACGW5VNwmr3a1GqndNu3NadWtYkdywczklohitHnaH7YRMz3WwQLgo61Uc Z6Xvarutm2S/U+oAA9krXbUPZsHNIIlKdvFVMUlSVJBF/rHYEb+7aJYj1DYeP7iJRD9U=; Received: from cm-84.212.220.105.getinternet.no ([84.212.220.105] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1ldpwx-0008Cr-Pw; Tue, 04 May 2021 09:58:38 +0200 From: Lars Ingebrigtsen To: =?utf-8?Q?M=C3=A9ril?= Pilon Subject: Re: bug#47951: 28.0.50; Recent seccomp changes break compilation in Docker References: <87eef2wvuw.fsf@meril-lin-7rvk493.corp.improbable.io> <87czumwdw8.fsf@meril-lin-7rvk493.corp.improbable.io> <87fsz4dxuq.fsf_-_@gnus.org> <87bl9rkf2u.fsf@meril-lin-7rvk493.corp.improbable.io> Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAABGdBTUEAALGPC/xhBQAAACBj SFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAG1BMVEXU2N7m6u+upqeC andPXW8kHCUdFRVIQUv////4nodpAAAAAWJLR0QIht6VegAAAAd0SU1FB+UFBAc5IP16g0EAAAGY SURBVDjLtZPBTsMwDIbbwQOsvAEFaVfUFPUB5q5XBItzRTA7d5Isr0+S0q0ZnTjhQ6vmy//bieui rKpiimoWRZle67i4XgCjbB0f5V8gOq+r9J1bVVeiqGOIMVoBAE9h9UaIAvki3gO4BSjkPJiYX36D UbwASC4ClHJZoXyv5DLoRHdcslJOmw3jJeBQkzPCZQqSiExOd58P3QnQjyAA0/jVgLlCskYlmk3d Y65AfkVz3z00tcyTI+uNb27MV322ojEF+zdTedMcc0W8C92UKw/9JQjCr1IMx1MO/rlBRjLFs6NZ cqRkhaRXLuw5l+u9Ty0ibObAgm2H1AiN2oW6p54D7Ns+Lu80pxZOwPV72AUfAMLsL1E7I0J7eNsO MgMHFNtoZVpwGdAEQgQTBR4wljcBYoA2Jg9V9+Qdf0wnZ7uNOVg6b4+UARuATIeUWs7A3u7Chdl0 SqIZOEBPkizE2tjhGeghblYexns5A3I+2gfmYlteT4C1SidT4xxMilC+FTaMmGjqR9gKEUftrq6v D2d5DVT/D74BbQ4L9ncJn8sAAAAldEVYdGRhdGU6Y3JlYXRlADIwMjEtMDUtMDRUMDc6NTc6MzIr MDA6MDAG52SmAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDIxLTA1LTA0VDA3OjU3OjMyKzAwOjAwd7rc GgAAAABJRU5ErkJggg== X-Now-Playing: Anne Clark's _Pressure Points_: "Red Sands" Date: Tue, 04 May 2021 09:58:35 +0200 In-Reply-To: <87bl9rkf2u.fsf@meril-lin-7rvk493.corp.improbable.io> (=?utf-8?Q?=22M=C3=A9ril?= Pilon"'s message of "Mon, 03 May 2021 16:31:39 +0100") Message-ID: <87h7jjaq1g.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Méril Pilon writes: > I confirm that this issue is now fixed. The patch works great. Thanks for checking. I'm closing this bug report, then. Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 47952 Cc: 47951@debbugs.gnu.org, Philipp Stephani , 47952@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) M=C3=A9ril Pilon writes: > I confirm that this issue is now fixed. The patch works great. Thanks for checking. I'm closing this bug report, then. --=20 (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Tue May 04 03:58:55 2021 Received: (at control) by debbugs.gnu.org; 4 May 2021 07:58:55 +0000 Received: from localhost ([127.0.0.1]:51496 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ldpxH-0005un-3Z for submit@debbugs.gnu.org; Tue, 04 May 2021 03:58:55 -0400 Received: from quimby.gnus.org ([95.216.78.240]:50506) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ldpxF-0005uh-8J for control@debbugs.gnu.org; Tue, 04 May 2021 03:58:53 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=gO/aYRT6Rmi1AndNVqZb5TBavKTV4a44+h61fMr7e+g=; b=G2iqjLPFP4T8M40E5mvnI6Jw1u bM2gHquBcBC6IM0IT2Kwy2Wc3rrWDUcL4W41HKCiKwr/yu3L+XQsOjWVjTvvOadSMZSHzhAnYEO1W wV/2+8yj+t0VUW/zeCjs6i5wW7eGqq/KYUa5whucGbPr2etJjZFfLASKY4IS9I/YuLIw=; Received: from cm-84.212.220.105.getinternet.no ([84.212.220.105] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1ldpx7-0008D5-Lx for control@debbugs.gnu.org; Tue, 04 May 2021 09:58:47 +0200 Date: Tue, 04 May 2021 09:58:45 +0200 Message-Id: <87fsz3aq16.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #47951 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: tags 47951 fixed close 47951 28.1 quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) tags 47951 fixed close 47951 28.1 quit From unknown Mon Aug 11 12:54:40 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 01 Jun 2021 11:24:08 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator