From unknown Tue Jun 17 01:40:45 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#41813] [PATCH] gnu: Add bbswitch-module. Resent-From: Pierre Neidhardt Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 11 Jun 2020 20:25:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 41813 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 41813@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.159190709827178 (code B ref -1); Thu, 11 Jun 2020 20:25:02 +0000 Received: (at submit) by debbugs.gnu.org; 11 Jun 2020 20:24:58 +0000 Received: from localhost ([127.0.0.1]:38186 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jjTkw-00074I-0U for submit@debbugs.gnu.org; Thu, 11 Jun 2020 16:24:58 -0400 Received: from lists.gnu.org ([209.51.188.17]:42300) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jjTku-00074B-4l for submit@debbugs.gnu.org; Thu, 11 Jun 2020 16:24:56 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:45726) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jjTkt-0005g6-T2 for guix-patches@gnu.org; Thu, 11 Jun 2020 16:24:55 -0400 Received: from relay9-d.mail.gandi.net ([217.70.183.199]:33985) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jjTkr-0001Qa-FY for guix-patches@gnu.org; Thu, 11 Jun 2020 16:24:55 -0400 X-Originating-IP: 92.169.129.147 Received: from localhost.localdomain (lfbn-idf2-1-1315-147.w92-169.abo.wanadoo.fr [92.169.129.147]) (Authenticated sender: mail@ambrevar.xyz) by relay9-d.mail.gandi.net (Postfix) with ESMTPSA id E6C21FF807 for ; Thu, 11 Jun 2020 20:24:49 +0000 (UTC) From: Pierre Neidhardt Date: Thu, 11 Jun 2020 22:24:23 +0200 Message-Id: <20200611202423.9284-1-mail@ambrevar.xyz> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=217.70.183.199; envelope-from=mail@ambrevar.xyz; helo=relay9-d.mail.gandi.net X-detected-operating-system: by eggs.gnu.org: First seen = 2020/06/11 16:24:50 X-ACL-Warn: Detected OS = Linux 3.11 and newer X-Spam_score_int: -15 X-Spam_score: -1.6 X-Spam_bar: - X-Spam_report: (-1.6 / 5.0 requ) BAYES_00=-1.9, FROM_SUSPICIOUS_NTLD=1, FROM_SUSPICIOUS_NTLD_FP=1, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H2=-1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=_AUTOLEARN X-Spam_action: no action X-Spam-Score: 0.9 (/) 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: -2.1 (--) * gnu/packages/linux.scm (bbswitch-module): New variable. --- gnu/packages/linux.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 73d99be48c..7c19517432 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1137,6 +1137,29 @@ network adapters.") between the CDemu userspace daemon and linux kernel.") (license license:gpl2+))) +(define-public bbswitch-module + (package + (name "bbswitch-module") + (version "0.8") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Bumblebee-Project/bbswitch") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1glch4j0x1dzlp2yrb67v2r5jg9609jb6p8m251y78m74advqw0l")))) + (build-system linux-module-build-system) + (arguments + ;; No tests. + `(#:tests? #f)) + (home-page "https://github.com/Bumblebee-Project/bbswitch") + (synopsis "Kernel module that disables discrete Nvidia graphics cards") + (description "The bbswitch module provides a way to toggle the Nvidia +graphics card on Optimus laptops.") + (license license:gpl2))) + (define-public ddcci-driver-linux (package (name "ddcci-driver-linux") -- 2.26.2 From unknown Tue Jun 17 01:40:45 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#41813] [PATCH] gnu: Add bbswitch-module. Resent-From: Mathieu Othacehe Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 14 Jun 2020 10:06:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 41813 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Pierre Neidhardt Cc: 41813@debbugs.gnu.org Received: via spool by 41813-submit@debbugs.gnu.org id=B41813.159212915620730 (code B ref 41813); Sun, 14 Jun 2020 10:06:01 +0000 Received: (at 41813) by debbugs.gnu.org; 14 Jun 2020 10:05:56 +0000 Received: from localhost ([127.0.0.1]:42904 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jkPWV-0005OI-NB for submit@debbugs.gnu.org; Sun, 14 Jun 2020 06:05:55 -0400 Received: from eggs.gnu.org ([209.51.188.92]:50448) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jkPWU-0005O4-4H for 41813@debbugs.gnu.org; Sun, 14 Jun 2020 06:05:54 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:42883) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jkPWO-0000Mj-PL; Sun, 14 Jun 2020 06:05:48 -0400 Received: from [2a01:e0a:fa:a50:d869:cbcf:2456:40cc] (port=35918 helo=meru) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jkPWO-0001De-36; Sun, 14 Jun 2020 06:05:48 -0400 From: Mathieu Othacehe References: <20200611202423.9284-1-mail@ambrevar.xyz> Date: Sun, 14 Jun 2020 12:05:45 +0200 In-Reply-To: <20200611202423.9284-1-mail@ambrevar.xyz> (Pierre Neidhardt's message of "Thu, 11 Jun 2020 22:24:23 +0200") Message-ID: <87eeqiklmu.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) 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 (---) Hello Pierre, > + (synopsis "Kernel module that disables discrete Nvidia graphics cards") > + (description "The bbswitch module provides a way to toggle the Nvidia > +graphics card on Optimus laptops.") The home page says that's it's intended to disable discrete graphics, but only working with Nvidia currently. Maybe you should add this information? Otherwise, this looks good to me. Thanks, Mathieu From unknown Tue Jun 17 01:40:45 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#41813] [PATCH] gnu: Add bbswitch-module. Resent-From: Pierre Neidhardt Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 14 Jun 2020 10:28:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 41813 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Mathieu Othacehe Cc: 41813@debbugs.gnu.org Received: via spool by 41813-submit@debbugs.gnu.org id=B41813.159213044023011 (code B ref 41813); Sun, 14 Jun 2020 10:28:02 +0000 Received: (at 41813) by debbugs.gnu.org; 14 Jun 2020 10:27:20 +0000 Received: from localhost ([127.0.0.1]:42937 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jkPrD-0005z4-QD for submit@debbugs.gnu.org; Sun, 14 Jun 2020 06:27:19 -0400 Received: from relay11.mail.gandi.net ([217.70.178.231]:57135) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jkPrC-0005ys-H2 for 41813@debbugs.gnu.org; Sun, 14 Jun 2020 06:27:19 -0400 Received: from mimimi (lfbn-idf2-1-1315-147.w92-169.abo.wanadoo.fr [92.169.129.147]) (Authenticated sender: mail@ambrevar.xyz) by relay11.mail.gandi.net (Postfix) with ESMTPSA id 70BC5100004; Sun, 14 Jun 2020 10:27:12 +0000 (UTC) From: Pierre Neidhardt In-Reply-To: <87eeqiklmu.fsf@gnu.org> References: <20200611202423.9284-1-mail@ambrevar.xyz> <87eeqiklmu.fsf@gnu.org> Date: Sun, 14 Jun 2020 12:27:11 +0200 Message-ID: <87a716nds0.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: 1.8 (+) 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: Mathieu Othacehe writes: > Hello Pierre, > >> + (synopsis "Kernel module that disables discrete Nvidia graphics cards") >> + (description "The bbswitch module provides a way to toggle the Nvidia >> +graphics card on Optimus l [...] Content analysis details: (1.8 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.178.231 listed in list.dnswl.org] -0.0 RCVD_IN_MSPIKE_H2 RBL: Average reputation (+2) [217.70.178.231 listed in wl.mailspike.net] -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 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.8 (+) 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: Mathieu Othacehe writes: > Hello Pierre, > >> + (synopsis "Kernel module that disables discrete Nvidia graphics cards") >> + (description "The bbswitch module provides a way to toggle the Nvidia >> +graphics card on Optimus l [...] Content analysis details: (1.8 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_MSPIKE_H2 RBL: Average reputation (+2) [217.70.178.231 listed in wl.mailspike.net] -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.178.231 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 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager 1.0 BULK_RE_SUSP_NTLD Precedence bulk and RE: from a suspicious TLD 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Mathieu Othacehe writes: > Hello Pierre, > >> + (synopsis "Kernel module that disables discrete Nvidia graphics car= ds") >> + (description "The bbswitch module provides a way to toggle the Nvid= ia >> +graphics card on Optimus laptops.") > > The home page says that's it's intended to disable discrete graphics, > but only working with Nvidia currently. Maybe you should add this > information? Sorry, I'm not sure what you mean :) Are you saying that I should mention that it could potentially work with any brand in the future? Considering the age of the last commit, I doubt it ever will :) =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAl7l+38ACgkQm9z0l6S7 zH8Gsgf/S4Rp4T0VFPjIXOARN2csC+2S1m2YiynaPtTNtzTlLYMMqB/artjjV3YN JDU3nrvjDfC6/cg/Wn4U5u+YkApTBzrVZG+nf3nwIncut4miECboiwqxJb5LUJXD FGrdRCzvIli4fupYU4PhfXBHd51h/p9nAfilkef8OcvmywmvhFpMlmpmZQUv2HgP ptQWbzPLKkdW/u8b8hI49AIgWy41JjXaW/t8WFz8D6CtRa9Ceki2VjokYr4sivhS R355AjOheESbYMKzKLoGXgy5ePln7kLcdka/REDf2oyAi9lmJb8h1Iszu52tPOD9 r/AgYEknjeX4Qpp+T/GC96p1DTfi1w== =a5xX -----END PGP SIGNATURE----- --=-=-=-- From unknown Tue Jun 17 01:40:45 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#41813] [PATCH] gnu: Add bbswitch-module. Resent-From: Mathieu Othacehe Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 14 Jun 2020 10:43:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 41813 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Pierre Neidhardt Cc: 41813@debbugs.gnu.org Received: via spool by 41813-submit@debbugs.gnu.org id=B41813.159213135824609 (code B ref 41813); Sun, 14 Jun 2020 10:43:01 +0000 Received: (at 41813) by debbugs.gnu.org; 14 Jun 2020 10:42:38 +0000 Received: from localhost ([127.0.0.1]:42953 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jkQ61-0006Or-MV for submit@debbugs.gnu.org; Sun, 14 Jun 2020 06:42:37 -0400 Received: from eggs.gnu.org ([209.51.188.92]:41198) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jkQ5z-0006Ob-Jw for 41813@debbugs.gnu.org; Sun, 14 Jun 2020 06:42:35 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:43129) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jkQ5t-0006Ud-7p; Sun, 14 Jun 2020 06:42:29 -0400 Received: from [2a01:e0a:fa:a50:d869:cbcf:2456:40cc] (port=36496 helo=meru) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jkQ5s-0007Ip-68; Sun, 14 Jun 2020 06:42:28 -0400 From: Mathieu Othacehe References: <20200611202423.9284-1-mail@ambrevar.xyz> <87eeqiklmu.fsf@gnu.org> <87a716nds0.fsf@ambrevar.xyz> Date: Sun, 14 Jun 2020 12:42:26 +0200 In-Reply-To: <87a716nds0.fsf@ambrevar.xyz> (Pierre Neidhardt's message of "Sun, 14 Jun 2020 12:27:11 +0200") Message-ID: <87r1uij5d9.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) 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 (---) > Sorry, I'm not sure what you mean :) Are you saying that I should > mention that it could potentially work with any brand in the future? > Considering the age of the last commit, I doubt it ever will :) Yes, mmh, '2013' then I guess you're right. Mathieu From unknown Tue Jun 17 01:40:45 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#41813] [PATCH] gnu: Add bbswitch-module. Resent-From: Pierre Neidhardt Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 14 Jun 2020 11:27:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 41813 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Mathieu Othacehe Cc: 41813@debbugs.gnu.org Received: via spool by 41813-submit@debbugs.gnu.org id=B41813.159213400528764 (code B ref 41813); Sun, 14 Jun 2020 11:27:03 +0000 Received: (at 41813) by debbugs.gnu.org; 14 Jun 2020 11:26:45 +0000 Received: from localhost ([127.0.0.1]:42996 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jkQmj-0007Ts-Ew for submit@debbugs.gnu.org; Sun, 14 Jun 2020 07:26:45 -0400 Received: from relay6-d.mail.gandi.net ([217.70.183.198]:45111) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jkQmh-0007Td-4t for 41813@debbugs.gnu.org; Sun, 14 Jun 2020 07:26:44 -0400 X-Originating-IP: 92.169.129.147 Received: from mimimi (lfbn-idf2-1-1315-147.w92-169.abo.wanadoo.fr [92.169.129.147]) (Authenticated sender: mail@ambrevar.xyz) by relay6-d.mail.gandi.net (Postfix) with ESMTPSA id 585E6C0006; Sun, 14 Jun 2020 11:26:35 +0000 (UTC) From: Pierre Neidhardt In-Reply-To: <87r1uij5d9.fsf@gnu.org> References: <20200611202423.9284-1-mail@ambrevar.xyz> <87eeqiklmu.fsf@gnu.org> <87a716nds0.fsf@ambrevar.xyz> <87r1uij5d9.fsf@gnu.org> Date: Sun, 14 Jun 2020 13:26:35 +0200 Message-ID: <877dw9oplg.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: 1.8 (+) 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: Thanks, merged. -- Pierre Neidhardt https://ambrevar.xyz/ Content analysis details: (1.8 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_MSPIKE_H4 RBL: Very Good reputation (+4) [217.70.183.198 listed in wl.mailspike.net] -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.183.198 listed in list.dnswl.org] -0.0 SPF_PASS SPF: sender matches SPF record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 RCVD_IN_MSPIKE_WL Mailspike good senders 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 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.8 (+) 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: Thanks, merged. -- Pierre Neidhardt https://ambrevar.xyz/ Content analysis details: (1.8 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.183.198 listed in list.dnswl.org] -0.0 RCVD_IN_MSPIKE_H4 RBL: Very Good reputation (+4) [217.70.183.198 listed in wl.mailspike.net] -0.0 SPF_PASS SPF: sender matches SPF record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 RCVD_IN_MSPIKE_WL Mailspike good senders 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 1.0 BULK_RE_SUSP_NTLD Precedence bulk and RE: from a suspicious TLD -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Thanks, merged. =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAl7mCWsACgkQm9z0l6S7 zH8RWAf9HGRADsK80l2fWKkZp+vqvydoa6haqEwytFsTQc7vzWb5pIgFuF5NM2ZV crwWaSPba0qmoiFJNjqB11fp1vuooj3IJNOyI0321XYbxTkz2POioMdd5FO0RJ0+ /0wV6tyGct8+31ZIN7CHmUpe/Sgp1vRjHpz1UL6gQtlyssAk0B0UDerDSzbiO+O3 gnWhWgs6viu60TbBufgMm/u+2/zmmk6dTFuWnss4Y3FlagxNYpWboga60qnkkDqT yYvYY80IuOaD0PL3vQumTUKSeEkV4J8WkYg2Pm6LwWUe7izQb/+pwRK4POlc+fUm +arArZ5N0GIdDnjMJ6FtKrJcn8Z7kA== =iWQh -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sun Jun 14 07:27:12 2020 Received: (at control) by debbugs.gnu.org; 14 Jun 2020 11:27:13 +0000 Received: from localhost ([127.0.0.1]:43004 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jkQnA-0007VW-Lj for submit@debbugs.gnu.org; Sun, 14 Jun 2020 07:27:12 -0400 Received: from relay5-d.mail.gandi.net ([217.70.183.197]:51951) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jkQn9-0007VJ-Hj for control@debbugs.gnu.org; Sun, 14 Jun 2020 07:27:11 -0400 X-Originating-IP: 92.169.129.147 Received: from mimimi (lfbn-idf2-1-1315-147.w92-169.abo.wanadoo.fr [92.169.129.147]) (Authenticated sender: mail@ambrevar.xyz) by relay5-d.mail.gandi.net (Postfix) with ESMTPSA id 1EE0B1C0002 for ; Sun, 14 Jun 2020 11:27:04 +0000 (UTC) Date: Sun, 14 Jun 2020 13:27:04 +0200 Message-Id: <875zbtopkn.fsf@ambrevar.xyz> To: control@debbugs.gnu.org From: Pierre Neidhardt Subject: control message for bug #41813 X-Spam-Score: 1.8 (+) 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: close 41813 quit Content analysis details: (1.8 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.183.197 listed in list.dnswl.org] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 2.0 FROM_SUSPICIOUS_NTLD_FP From abused NTLD 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 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.2 (-) close 41813 quit