X-Loop: help-debbugs@HIDDEN Subject: [bug#73406] [PATCH v2 0/2] SANE: fix a locking bug for plustek backend Resent-From: Adrien 'neox' Bourmault <neox@HIDDEN> Original-Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> Resent-CC: guix-patches@HIDDEN Resent-Date: Sat, 21 Sep 2024 08:03:02 +0000 Resent-Message-ID: <handler.73406.B.172690572824725 <at> debbugs.gnu.org> Resent-Sender: help-debbugs@HIDDEN X-GNU-PR-Message: report 73406 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 73406 <at> debbugs.gnu.org Cc: Adrien 'neox' Bourmault <neox@HIDDEN> X-Debbugs-Original-To: guix-patches@HIDDEN Received: via spool by submit <at> debbugs.gnu.org id=B.172690572824725 (code B ref -1); Sat, 21 Sep 2024 08:03:02 +0000 Received: (at submit) by debbugs.gnu.org; 21 Sep 2024 08:02:08 +0000 Received: from localhost ([127.0.0.1]:36987 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1srv4B-0006Qh-E2 for submit <at> debbugs.gnu.org; Sat, 21 Sep 2024 04:02:07 -0400 Received: from lists.gnu.org ([209.51.188.17]:42126) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <neox@HIDDEN>) id 1srv49-0006QX-Gp for submit <at> debbugs.gnu.org; Sat, 21 Sep 2024 04:02:06 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <neox@HIDDEN>) id 1srv3p-0001nI-Ae for guix-patches@HIDDEN; Sat, 21 Sep 2024 04:01:45 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <neox@HIDDEN>) id 1srv3n-0007Qf-QF; Sat, 21 Sep 2024 04:01:43 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:Subject:To:From:in-reply-to: references; bh=TDkffOLoFLNL8/m3nfO/sXsGH9iP37fRGnT18WrYRHc=; b=DkF8gq+IoZ2WeX 0QWDRoT5E4wM/6aG91fpTB3N8Bs9i/AN7v5C14XC7YjzNbs8m3BmOTMa+7AVAdeO2Zty9S4QktADN hqYX0C4OXS2TqJWrFwKNbTUJBXlsMyL4RU0wDYfe8qzAlv3luEvs/nRay3tuaTQMdhgjEulSWbIO/ ZN0zLbZdFB7RXHn82joWig1z8iM1ZGTh+6x0CM+mWXvmLWSs49b6QlVqMIYELwUdYoE2gW4Hqogew KSo2u+m+U2qkLZIyE/MJKAZBmtZEPlw0kFqted9qI1TPCGtw8vSYJRDnWVVvs+PsiQQNk/MYgx5PQ 1h4WoVTWlTff27cAN4Cw==; From: Adrien 'neox' Bourmault <neox@HIDDEN> Date: Sat, 21 Sep 2024 10:01:31 +0200 Message-ID: <cover.1726864525.git.neox@HIDDEN> X-Mailer: git-send-email 2.46.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -3.3 (---) Hi. While attempting to use a Canon LiDE 30 scanner, which is supported by SANE in its current version, I noticed a malfunction with the plustek backend. No application seemed capable of detecting the scanner, even though the `sane-find-scanner` command indicated its presence, and the device IDs matched those in the plustek backend configuration. I investigated further using the following command: SANE_DEBUG_SANEI_USB=128 SANE_DEBUG_PLUSTEK=255 strace -fye open,openat scanimage -L Here is a summary of the output: [23:00:21.688008] [plustek] usbDev_open(auto,) - 0x1c1e5630 [pid 1209-20241] openat(AT_FDCWD</home/neox>, "/gnu/store/gzc1m4n79d1fgby8l58dsaq7nrzyhc14-sane-backend> [23:00:21.688089] [plustek] sanei_access_lock failed: 11 [23:00:21.688131] [plustek] open failed: -1 It seems that the issue is the attempt to open a lock file in the store, which is not possible due to the read-only nature of the file system. To address this, there were two possible approaches: either move the lock file to another location or disable the locking mechanism altogether. After some research, I found that this bug has been resolved in both Debian [1] and nixOS [2], and it has also been reported to the upstream project [3]. Debian opted to disable the locking mechanism, while nixOS moved the lock file to a runtime-generated location using systemd (by patching the install phase to prevent the creation of the lock directory). However, since the locking mechanism allows the use of multiple devices simultaneously[4], which can be useful, nixOS's solution appears to be the better approach. I followed this method, proposing to create the lock directory during the activation of the sane service. I tested these patch with my Canon LiDE 30 and have been able to (finally) scan with it. I realized I forgot to add my copyright notice in the files I modified. This v2 fixes this. [1] Debian bug report: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=973490 [2] nixOS bug report: https://github.com/NixOS/nixpkgs/issues/273280 [3] Upstream issue: https://gitlab.com/sane-project/backends/-/issues/363 [4] https://gitlab.com/sane-project/backends/-/issues/363#note_443142177 Adrien 'neox' Bourmault (2): gnu: sane-backends-minimal: fix lock path for plustek backend services: sane-service-type: create lock path for plustek backend gnu/packages/scanner.scm | 10 +++++++++- gnu/services/desktop.scm | 14 ++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) base-commit: 1b6ce1796abdf497f61f426d61339318f4f4f23d -- 2.46.0
Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) Content-Type: text/plain; charset=utf-8 X-Loop: help-debbugs@HIDDEN From: help-debbugs@HIDDEN (GNU bug Tracking System) To: Adrien 'neox' Bourmault <neox@HIDDEN> Subject: bug#73406: Acknowledgement ([PATCH v2 0/2] SANE: fix a locking bug for plustek backend) Message-ID: <handler.73406.B.172690572824725.ack <at> debbugs.gnu.org> References: <cover.1726864525.git.neox@HIDDEN> X-Gnu-PR-Message: ack 73406 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 73406 <at> debbugs.gnu.org Date: Sat, 21 Sep 2024 08:03:02 +0000 Thank you for filing a new bug report with debbugs.gnu.org. This is an automatically generated reply to let you know your message has been received. Your message is being forwarded to the package maintainers and other interested parties for their attention; they will reply in due course. Your message has been sent to the package maintainer(s): guix-patches@HIDDEN If you wish to submit further information on this problem, please send it to 73406 <at> debbugs.gnu.org. Please do not send mail to help-debbugs@HIDDEN unless you wish to report a problem with the Bug-tracking system. --=20 73406: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D73406 GNU Bug Tracking System Contact help-debbugs@HIDDEN with problems
X-Loop: help-debbugs@HIDDEN Subject: [bug#73406] [PATCH v2 1/2] gnu: sane-backends-minimal: fix lock path for plustek backend Resent-From: Adrien 'neox' Bourmault <neox@HIDDEN> Original-Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> Resent-CC: guix-patches@HIDDEN Resent-Date: Sat, 21 Sep 2024 08:05:01 +0000 Resent-Message-ID: <handler.73406.B73406.172690584525001 <at> debbugs.gnu.org> Resent-Sender: help-debbugs@HIDDEN X-GNU-PR-Message: followup 73406 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 73406 <at> debbugs.gnu.org Cc: Adrien 'neox' Bourmault <neox@HIDDEN> Received: via spool by 73406-submit <at> debbugs.gnu.org id=B73406.172690584525001 (code B ref 73406); Sat, 21 Sep 2024 08:05:01 +0000 Received: (at 73406) by debbugs.gnu.org; 21 Sep 2024 08:04:05 +0000 Received: from localhost ([127.0.0.1]:36999 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1srv64-0006VB-KM for submit <at> debbugs.gnu.org; Sat, 21 Sep 2024 04:04:05 -0400 Received: from eggs.gnu.org ([209.51.188.92]:58356) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <neox@HIDDEN>) id 1srv62-0006Ub-TA for 73406 <at> debbugs.gnu.org; Sat, 21 Sep 2024 04:04:03 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <neox@HIDDEN>) id 1srv5d-0007WQ-82; Sat, 21 Sep 2024 04:03:37 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:References:In-Reply-To:Date:Subject:To: From; bh=SGIX3lKzdvIsn4XzV4xaeCZ/n0iY37uv9n0DhTSWRQw=; b=aYe2oUBKYlvsQStb55PQ BxAMqeqeSQDrj8ZsftYi180OXiVMsj/mIhFNSgLyAtlcuDb1jXES+pcowHsMZcI/Dr7AhzfcQb1ne 7Ind6VhV7g7XCyT6vKCISeyduYHd7UODwaJ8FNBlW4sYufh9+g/BgyV0FdL/jaz4zllldHjW5OG0s qLrKNBpBFhldx3v+hxqPyaLxTh8tX5AQBCbCm3DrATRQOLPD2HiheFDnPqK/8vwmmXydpnXciHYjb 9VqJ0XxD1ESCVIUPK6fktGe4XmoQOFqNYkyhoPJv2GXg/bsaZJUEYxt7jCXbXJ9fV1Btnafe9jobb 41ZJk/KdmMl05Q==; From: Adrien 'neox' Bourmault <neox@HIDDEN> Date: Sat, 21 Sep 2024 10:03:32 +0200 Message-ID: <bc2d915931bfd53462d5eeac7504b04b94ea2d02.1726864525.git.neox@HIDDEN> X-Mailer: git-send-email 2.46.0 In-Reply-To: <cover.1726864525.git.neox@HIDDEN> References: <cover.1726864525.git.neox@HIDDEN> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -3.3 (---) * gnu/packages/scanner.scm (sane-backends-minimal) [arguments]<#:configure-flags>: add "--with-lockdir=/var/lock/sane" [arguments]<#:phases>: add disable-lockdir-creation to prevent creating the lockpath during install Change-Id: I338c16cd4c0bfa0d165c9906b0f1f87ab79a4f75 Signed-off-by: Adrien 'neox' Bourmault <neox@HIDDEN> --- gnu/packages/scanner.scm | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/gnu/packages/scanner.scm b/gnu/packages/scanner.scm index a2faaa2728..a346f004ae 100644 --- a/gnu/packages/scanner.scm +++ b/gnu/packages/scanner.scm @@ -5,6 +5,7 @@ ;;; Copyright © 2017, 2019, 2020, 2022 Tobias Geerinckx-Rice <me@HIDDEN> ;;; Copyright © 2018 Efraim Flashner <efraim@HIDDEN> ;;; Copyright © 2022 João Gabriel <joaog.bastos@HIDDEN> +;;; Copyright © 2024 Adrien Bourmault <neox@HIDDEN> ;;; ;;; This file is part of GNU Guix. ;;; @@ -136,7 +137,8 @@ (define-public sane-backends-minimal (inputs (list libusb)) (arguments - `(#:phases + `(#:configure-flags '("--with-lockdir=/var/lock/sane") ;; Avoid errors with plustek + #:phases (modify-phases %standard-phases (add-before 'bootstrap 'zap-unnecessary-git-dependency (lambda _ @@ -145,6 +147,12 @@ (define-public sane-backends-minimal (("/bin/sh") (which "sh"))) (with-output-to-file ".tarball-version" (lambda _ (format #t ,version))))) + (add-before 'configure 'disable-lockdir-creation + (lambda _ + ;; Modify the Makefile.am to prevent the creation of the lock dir + (substitute* "backend/Makefile.am" + (("^install-lockpath:.*$") + "install-lockpath: # pass")))) (add-before 'configure 'disable-backends (lambda _ (setenv "BACKENDS" " ") -- 2.46.0
X-Loop: help-debbugs@HIDDEN Subject: [bug#73406] [PATCH v2 2/2] services: sane-service-type: create lock path for plustek backend Resent-From: Adrien 'neox' Bourmault <neox@HIDDEN> Original-Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> Resent-CC: guix-patches@HIDDEN Resent-Date: Sat, 21 Sep 2024 08:05:02 +0000 Resent-Message-ID: <handler.73406.B73406.172690586125053 <at> debbugs.gnu.org> Resent-Sender: help-debbugs@HIDDEN X-GNU-PR-Message: followup 73406 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 73406 <at> debbugs.gnu.org Cc: Adrien 'neox' Bourmault <neox@HIDDEN> Received: via spool by 73406-submit <at> debbugs.gnu.org id=B73406.172690586125053 (code B ref 73406); Sat, 21 Sep 2024 08:05:02 +0000 Received: (at 73406) by debbugs.gnu.org; 21 Sep 2024 08:04:21 +0000 Received: from localhost ([127.0.0.1]:37010 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1srv6L-0006W0-9I for submit <at> debbugs.gnu.org; Sat, 21 Sep 2024 04:04:21 -0400 Received: from eggs.gnu.org ([209.51.188.92]:58246) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <neox@HIDDEN>) id 1srv6I-0006VW-TL for 73406 <at> debbugs.gnu.org; Sat, 21 Sep 2024 04:04:19 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <neox@HIDDEN>) id 1srv5t-0007Xh-Mg; Sat, 21 Sep 2024 04:03:53 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:References:In-Reply-To:Date:Subject:To: From; bh=/5ublfufOcudc9IjBbBZJgcwCwVNsKfI9gGUTgLELzc=; b=JRwuNUuvT5cbO+h0sOP+ 8XDpahv1tavqLBqz9734gZFh2H1zYIt2qkhRSDDNKNUT0mUN/pe2K1dNPQlfKJazoJjyhBlFXVMYW l2FP02i1lToNkvfwKBunXs40W8qoDKpgiXACzZiIlgQa0qaubPw/CYTDAfWtiodOiDCfg3QoHBmJz swu3tHVte0665wEWj0bLjvGs80rGBfRDg3tA5FjyqCjEY6fLPOg2lzZs36oXOY0m2YBtOye+F/I0t khFDp/pjyVkEhHMwHOshCi5oTNq6IW5lJhihSzkCjh6TfKxyHDm1d0LRKLxk2Nxe+NsrnFgSIBNic KapARR1YKmlVIg==; From: Adrien 'neox' Bourmault <neox@HIDDEN> Date: Sat, 21 Sep 2024 10:03:48 +0200 Message-ID: <8604617ae2896e2d73d24958aab7ee534c656dfa.1726864525.git.neox@HIDDEN> X-Mailer: git-send-email 2.46.0 In-Reply-To: <cover.1726864525.git.neox@HIDDEN> References: <cover.1726864525.git.neox@HIDDEN> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -3.3 (---) * gnu/services/desktop.scm (sane-service-type): extend with an activation service to create the lockpath and give the right permissions Change-Id: I187886d12b5f0b4fe21b03de178ea2187205387a Signed-off-by: Adrien 'neox' Bourmault <neox@HIDDEN> --- gnu/services/desktop.scm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/gnu/services/desktop.scm b/gnu/services/desktop.scm index 274aeeef9b..500527cb50 100644 --- a/gnu/services/desktop.scm +++ b/gnu/services/desktop.scm @@ -17,6 +17,7 @@ ;;; Copyright © 2021, 2022 muradm <mail@HIDDEN> ;;; Copyright © 2023 Bruno Victal <mirai@HIDDEN> ;;; Copyright © 2023 Zheng Junjie <873216071@HIDDEN> +;;; Copyright © 2024 Adrien Bourmault <neox@HIDDEN> ;;; ;;; This file is part of GNU Guix. ;;; @@ -1408,6 +1409,17 @@ (define %sane-accounts ;; The '60-libsane.rules' udev rules refers to the "scanner" group. (list (user-group (name "scanner") (system? #t)))) +(define %sane-activation + #~(begin + (use-modules (guix build utils)) + (let ((lockpath "/var/lock/sane") + (gid (vector-ref (getgrnam "scanner") 2))) + ;; Create the lock directory at runtime and give right perms + (mkdir-p lockpath) + (chown lockpath -1 gid) + (chmod lockpath #o770)) + #t)) + (define sane-service-type (service-type (name 'sane) @@ -1418,6 +1430,8 @@ (define sane-service-type (default-value sane-backends-minimal) (extensions (list (service-extension udev-service-type list) + (service-extension activation-service-type + (const %sane-activation)) (service-extension account-service-type (const %sane-accounts)))))) -- 2.46.0
Received: (at control) by debbugs.gnu.org; 21 Sep 2024 08:06:44 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Sat Sep 21 04:06:44 2024 Received: from localhost ([127.0.0.1]:37020 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1srv8e-0006iJ-56 for submit <at> debbugs.gnu.org; Sat, 21 Sep 2024 04:06:44 -0400 Received: from eggs.gnu.org ([209.51.188.92]:33672) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <neox@HIDDEN>) id 1srv8c-0006i4-GM for control <at> debbugs.gnu.org; Sat, 21 Sep 2024 04:06:43 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <neox@HIDDEN>) id 1srv8D-00080y-9b for control <at> debbugs.gnu.org; Sat, 21 Sep 2024 04:06:17 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:To:From:Subject:in-reply-to: references; bh=oNpyPvlUvF/rEaUKRFyIQv2xelJcxlk2lcG+uyVJ80c=; b=UgZnkG91IMWqgX td1YehgQDx4OqIwrMKMTFm6wiHsGGcSUaLphFa6eKMlqh3PZAdZpaYgGvRSwxy4KMGvtgTD7wVHCp 3V70ycOpDn+gdRyhffYFqrPyIoi4QmKxuzjpRKZc8UG2ddoHjsWTN3J+yRrYtw61UlRQhXwJnphGo h4s/qYzKAPN2SGqWfP2p/fVMbcdZIEHk+yKpJt7cCrQOfjo2qHidRSRrPQoqd3srBdF98g3uKG2xT LFHdDaomJoJODDlVaZfZhIm6OphE9mKSqjFaGVmrcEt+be2CDcXWWvTL6vS6tqYrJAsi/TOkD3jwG MImvGMi78lt8NzSzmTJA==; Message-ID: <66ec29ed5356fb6d9c9d75789eb7875b67031b6f.camel@HIDDEN> Subject: From: Adrien 'neox' Bourmault <neox@HIDDEN> To: control <at> debbugs.gnu.org Date: Sat, 21 Sep 2024 10:06:15 +0200 Content-Type: text/plain Content-Transfer-Encoding: 7bit User-Agent: Evolution 3.48.4 MIME-Version: 1.0 X-Spam-Score: -0.3 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -1.3 (-) user guix merge 73393 73406 quit
Received: (at control) by debbugs.gnu.org; 21 Sep 2024 08:37:41 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Sat Sep 21 04:37:41 2024 Received: from localhost ([127.0.0.1]:37053 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1srvcb-0008Mm-9Z for submit <at> debbugs.gnu.org; Sat, 21 Sep 2024 04:37:41 -0400 Received: from mail.a-lec.org ([80.67.160.154]:40370) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <neox@HIDDEN>) id 1srvcV-0008MN-Hg for control <at> debbugs.gnu.org; Sat, 21 Sep 2024 04:37:40 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=a-lec.org; s=mail; t=1726907800; bh=G/kKNckbvyVUWpSEl3IqBCDH3NnH0pQYCgUkGpxajss=; h=Subject:From:To:Date:From; b=WX5TNONTHgr9tlzFp0L6hW74qMFHtE1AmJG6l4vwFi8PcfQz5DaQ7GC1FMTd7LRMo ySFkm0Tabzw6OIEibNxcMcbGB6FOBBq8mCNJ5gw0/jiTYslG8xGH8b87BRV6TRqS+f tESsDervcKIzndpE1W+/wBtduN/44lZueQw+OM0dOs4EdnFFynFdpPKItO54YO9tl5 6S8Q21NNk6XsAVJF0xFpMji81rHe4m9tCandgD2rzbEL75ebdPYNFvvSB4bUVRFg+d FxiB0pNdoEppVzbV7ni3ffvW7C6b08e6akD5lf4lnB/gVrA0eKQiGGbcbEe3Q94ODo 4FbFUCFO+fAmQ== Received: from n-guix-port.home (2a01cb0800a34600f17caeeb0ed26563.ipv6.abo.wanadoo.fr [IPv6:2a01:cb08:a3:4600:f17c:aeeb:ed2:6563]) (Authenticated sender: neox) by mail.a-lec.org (Postfix) with ESMTPSA id 56371800DB for <control <at> debbugs.gnu.org>; Sat, 21 Sep 2024 10:36:40 +0200 (CEST) Message-ID: <1e13b19de7a66164e901100842803696de3cefc4.camel@HIDDEN> Subject: From: Adrien 'neox' Bourmault <neox@HIDDEN> To: control <at> debbugs.gnu.org Date: Sat, 21 Sep 2024 10:36:39 +0200 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.48.4 MIME-Version: 1.0 X-Spam-Score: 2.0 (++) 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: user guix unmerge 73406 unmerge 73393 merge 73391 73392 73393 73406 quit Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 2.0 BLANK_SUBJECT Subject is present but empty -0.0 T_SCC_BODY_TEXT_LINE No description available. X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: 1.0 (+) user guix unmerge 73406 unmerge 73393 merge 73391 73392 73393 73406 quit
Received: (at control) by debbugs.gnu.org; 21 Sep 2024 08:37:41 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Sat Sep 21 04:37:41 2024 Received: from localhost ([127.0.0.1]:37053 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1srvcb-0008Mm-9Z for submit <at> debbugs.gnu.org; Sat, 21 Sep 2024 04:37:41 -0400 Received: from mail.a-lec.org ([80.67.160.154]:40370) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <neox@HIDDEN>) id 1srvcV-0008MN-Hg for control <at> debbugs.gnu.org; Sat, 21 Sep 2024 04:37:40 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=a-lec.org; s=mail; t=1726907800; bh=G/kKNckbvyVUWpSEl3IqBCDH3NnH0pQYCgUkGpxajss=; h=Subject:From:To:Date:From; b=WX5TNONTHgr9tlzFp0L6hW74qMFHtE1AmJG6l4vwFi8PcfQz5DaQ7GC1FMTd7LRMo ySFkm0Tabzw6OIEibNxcMcbGB6FOBBq8mCNJ5gw0/jiTYslG8xGH8b87BRV6TRqS+f tESsDervcKIzndpE1W+/wBtduN/44lZueQw+OM0dOs4EdnFFynFdpPKItO54YO9tl5 6S8Q21NNk6XsAVJF0xFpMji81rHe4m9tCandgD2rzbEL75ebdPYNFvvSB4bUVRFg+d FxiB0pNdoEppVzbV7ni3ffvW7C6b08e6akD5lf4lnB/gVrA0eKQiGGbcbEe3Q94ODo 4FbFUCFO+fAmQ== Received: from n-guix-port.home (2a01cb0800a34600f17caeeb0ed26563.ipv6.abo.wanadoo.fr [IPv6:2a01:cb08:a3:4600:f17c:aeeb:ed2:6563]) (Authenticated sender: neox) by mail.a-lec.org (Postfix) with ESMTPSA id 56371800DB for <control <at> debbugs.gnu.org>; Sat, 21 Sep 2024 10:36:40 +0200 (CEST) Message-ID: <1e13b19de7a66164e901100842803696de3cefc4.camel@HIDDEN> Subject: From: Adrien 'neox' Bourmault <neox@HIDDEN> To: control <at> debbugs.gnu.org Date: Sat, 21 Sep 2024 10:36:39 +0200 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.48.4 MIME-Version: 1.0 X-Spam-Score: 2.0 (++) 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: user guix unmerge 73406 unmerge 73393 merge 73391 73392 73393 73406 quit Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 2.0 BLANK_SUBJECT Subject is present but empty -0.0 T_SCC_BODY_TEXT_LINE No description available. X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: 1.0 (+) user guix unmerge 73406 unmerge 73393 merge 73391 73392 73393 73406 quit
Received: (at control) by debbugs.gnu.org; 21 Sep 2024 16:59:09 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Sat Sep 21 12:59:09 2024 Received: from localhost ([127.0.0.1]:40276 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1ss3Rs-00037G-Ok for submit <at> debbugs.gnu.org; Sat, 21 Sep 2024 12:59:08 -0400 Received: from mail.a-lec.org ([80.67.160.154]:34358) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <neox@HIDDEN>) id 1ss3Ro-00036k-Qt for control <at> debbugs.gnu.org; Sat, 21 Sep 2024 12:59:07 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=a-lec.org; s=mail; t=1726937919; bh=+P2E9qE5bGz/16t4Cpp01H8B7cV8Z0YFjNG3YtogocI=; h=Subject:From:To:Date:From; b=bru0CBr+xUA6zN86sfyPiyJr6c+qXWKDLE8oSvy7qCm32RagvWadopRF8RFp4ChdT IAm/Bn+BmLl8nhPXTD7WvA4eJpNKRL/NiRrc1nJd5u8i3jPO4amP9jLdZicugqrQ/N jg9NeUJHMvhIugkhU/GbKAiC4AdLiG3CcYimutFIZY4h018flKzLj0bpfqigFOtStS n0pBiR2Awul4gwoiwCxUEXBWfH9yeIYptJ+apbXiYwPG0AviI93hALe0z7EFjlJRl4 lh4EzsK1RAyliw1iTyTFn6rM4B/KipbThMM2viyjQGZXWhxE9LXDoE6iWrdWzgiI6B 4rhBKF7zmIHwQ== Received: from 2a01cb0800a34600f17caeeb0ed26563.ipv6.abo.wanadoo.fr (2a01cb0800a34600f17caeeb0ed26563.ipv6.abo.wanadoo.fr [IPv6:2a01:cb08:a3:4600:f17c:aeeb:ed2:6563]) (Authenticated sender: neox) by mail.a-lec.org (Postfix) with ESMTPSA id ACD35801EC for <control <at> debbugs.gnu.org>; Sat, 21 Sep 2024 18:58:39 +0200 (CEST) Message-ID: <97c2dacdb82edc04cae8a610b9a510d2cb977130.camel@HIDDEN> Subject: From: Adrien 'neox' Bourmault <neox@HIDDEN> To: control <at> debbugs.gnu.org Date: Sat, 21 Sep 2024 18:58:39 +0200 Content-Type: text/plain Content-Transfer-Encoding: 7bit User-Agent: Evolution 3.48.4 MIME-Version: 1.0 X-Spam-Score: 2.0 (++) 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: user guix unmerge 73406 thanks Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 2.0 BLANK_SUBJECT Subject is present but empty -0.0 T_SCC_BODY_TEXT_LINE No description available. X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: 1.0 (+) user guix unmerge 73406 thanks
Received: (at control) by debbugs.gnu.org; 21 Sep 2024 22:57:06 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Sat Sep 21 18:57:06 2024 Received: from localhost ([127.0.0.1]:40491 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1ss92H-0005db-S7 for submit <at> debbugs.gnu.org; Sat, 21 Sep 2024 18:57:06 -0400 Received: from eggs.gnu.org ([209.51.188.92]:54960) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <neox@HIDDEN>) id 1ss92E-0005d4-MC for control <at> debbugs.gnu.org; Sat, 21 Sep 2024 18:57:03 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <neox@HIDDEN>) id 1ss91o-0000K0-Iw for control <at> debbugs.gnu.org; Sat, 21 Sep 2024 18:56:36 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:To:From:Subject:in-reply-to: references; bh=q9rzcl5cV4oDs2GuMv6UhAbTZD6JBl6l0LgBtbrRRkA=; b=hiJMzQ78z9KljS nZO+cKh45YPyP5iaj5RoW6S69/ySsi0h0yA1vRIPT98/L6SWnn8a2pdi6/45yM6M0F4Mz04s+q6vR ul2F4ubgfNlK91g4FciigZhDdRqPgs21kccQDrkmx4bQi9sTOXVqUli06KBFMTffMMqJZC3JVBIbA Dsx0CTdwU5ir5rlq0vUx3DJB8cCtc2Q3gFgiPiqBggh4+q+RaNLXWYMdn5Ml2oGTXLeIhgeXTR5RX br13E8CqPJKo4IZvNs1bz+Q3zkewq/npSQQBttaz5tRzwsPpZbXP4SQ5tlZhBYltxQ7jFTzs2HTN3 gXWiYZa+f8cqxF5vmUUA==; Message-ID: <7bc43cd9449d5b1b8f80c90fc4a4e54234364d5d.camel@HIDDEN> Subject: From: Adrien 'neox' Bourmault <neox@HIDDEN> To: control <at> debbugs.gnu.org Date: Sun, 22 Sep 2024 00:56:33 +0200 Content-Type: text/plain Content-Transfer-Encoding: 7bit User-Agent: Evolution 3.48.4 MIME-Version: 1.0 X-Spam-Score: -0.3 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -1.3 (-) user guix merge 73391 73392 73393 73406 quit
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997 nCipher Corporation Ltd,
1994-97 Ian Jackson.