From unknown Sat Jun 21 05:14:04 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#70081 <70081@debbugs.gnu.org> To: bug#70081 <70081@debbugs.gnu.org> Subject: Status: [PATCH 0/2] debootstrap: Add PureOS support. Reply-To: bug#70081 <70081@debbugs.gnu.org> Date: Sat, 21 Jun 2025 12:14:04 +0000 retitle 70081 [PATCH 0/2] debootstrap: Add PureOS support. reassign 70081 guix-patches submitter 70081 Denis 'GNUtoo' Carikli severity 70081 normal tag 70081 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Fri Mar 29 14:32:20 2024 Received: (at submit) by debbugs.gnu.org; 29 Mar 2024 18:32:20 +0000 Received: from localhost ([127.0.0.1]:43422 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rqH1X-0000B6-N5 for submit@debbugs.gnu.org; Fri, 29 Mar 2024 14:32:20 -0400 Received: from lists.gnu.org ([2001:470:142::17]:40474) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rqH1V-0000AN-98 for submit@debbugs.gnu.org; Fri, 29 Mar 2024 14:32:18 -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 ) id 1rqH1L-0001Pv-IP for guix-patches@gnu.org; Fri, 29 Mar 2024 14:32:08 -0400 Received: from cyberdimension.org ([80.67.179.20] helo=gnutoo.cyberdimension.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rqH1F-0006Oo-3q for guix-patches@gnu.org; Fri, 29 Mar 2024 14:32:07 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; s=dkim; bh=BgeGIpOCWNRz0DL S0diu0HOrUaO46REC+0azX+1eEaM=; h=date:subject:cc:to:from; d=cyberdimension.org; b=AN2Ss4h8wme68v6miMp9CWyoCeDn/GpqA8NEksX1lAuK6m WrXUEoI4mOVyV7lQwyxw+d9P9HinaBKYSTKFxM519nUA5E7DUndXNnFr3MgU+AG29HgCNF WwzBVSgtjevMdJiNh8bu+egQ0krRMl8DPS9qdDhTFCsG+/AS4qws5VRTc/89pepfAz6EGM XOKJQDFbjtndRbAp0QfPej2+tOGLRWbsbblZ0WzBaNvWy0CTUNybAcHQSEg5uQpvIZwPCR HflOFZyG+qruQ2jtUiSX9lH+AfptksFyxrY6fgJnBJJRBekEay8W1LmhXcSAsbPIGOQRdJ tWyPmFEJPGbtLX+Q== Received: from localhost.localdomain (localhost [::1]) by gnutoo.cyberdimension.org (OpenSMTPD) with ESMTP id e56b93b7; Fri, 29 Mar 2024 18:24:41 +0000 (UTC) From: Denis 'GNUtoo' Carikli To: guix-patches@gnu.org Subject: [PATCH 0/2] debootstrap: Add PureOS support. Date: Fri, 29 Mar 2024 19:23:59 +0100 Message-ID: X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=80.67.179.20; envelope-from=GNUtoo@cyberdimension.org; helo=gnutoo.cyberdimension.org 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, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) X-Debbugs-Envelope-To: submit Cc: Denis 'GNUtoo' Carikli 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.1 (/) Hi, In the previous patchset I added Trisquel support in debootstrap and I could not include the code that added PureOS support because debootstraping PureOS didn't work due to a change in the PureOS repository structure. Now that it's fixed upstream (in PureOS and/or newer debootstrap versions), after installing the debootstrap included in this patchset we can easily debootstrap PureOS byzantium: $ sudo -E debootstrap byzantium rootfs https://repo.puri.sm/pureos $ sudo chroot rootfs/ /bin/cat /etc/os-release ID=pureos NAME=PureOS PRETTY_NAME="PureOS 10 (Byzantium)" VERSION_ID="10" VERSION_CODENAME=byzantium HOME_URL="https://pureos.net/" SUPPORT_URL="https://puri.sm/faq/#faq-WherecanIfindoutmoreaboutPureOS" BUG_REPORT_URL="https://tracker.pureos.net/" LOGO=pureos-logo-icon Denis 'GNUtoo' Carikli (2): gnu: Add pureos-archive-keyring. gnu: debootstrap: Use pureos-archive-keyring. gnu/packages/debian.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) base-commit: 0ff72d105ca03a82de6bb5193266fd05fce72daf -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Sat Mar 30 03:55:31 2024 Received: (at 70081) by debbugs.gnu.org; 30 Mar 2024 07:55:31 +0000 Received: from localhost ([127.0.0.1]:43860 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rqTYp-0005U6-7y for submit@debbugs.gnu.org; Sat, 30 Mar 2024 03:55:31 -0400 Received: from cyberdimension.org ([79.143.250.36]:57474 helo=localhost) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rqTYj-0005Tm-7y for 70081@debbugs.gnu.org; Sat, 30 Mar 2024 03:55:29 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; s=dkim; bh=5bZ/AEtFojt43Lt qaas99NvDbB4fF07n5IihOaDkoM8=; h=references:in-reply-to:date:subject: cc:to:from; d=cyberdimension.org; b=VtMzciRghe9l5WUileKKJbng7JAHr3qiFK J+yzp422Fs49RLnO1X8s04AnATyHuZeGeDsVY4JQTwbMvZenDjM8GUriFaJg2b8Rv8yU8Q LhpCMbLdSwRkmsWDpUl9YRp/KcKdYsQvIj+PcFZ341c6Y981ZPStXOjq7XuRzQnWejNYh9 2+qlnG0H9Xj1Kmte5HMjohFMnmbImUc4uMM79/7MC0gTubFRXngFXuwCn63dGLoesvIiI3 vp1hoPiRIX9+/d45Kzs50GmHA7RVyuQg0HSm/oo16g/ygF24oaQ/Ww5jSRKvDXtXc1bTBY BKLQTsa8ut6Ezvq0NZbpI0KQ9niA== Received: from localhost.localdomain (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id 493f7bfe; Sat, 30 Mar 2024 07:55:21 +0000 (UTC) From: Denis 'GNUtoo' Carikli To: 70081@debbugs.gnu.org Subject: [PATCH 1/2] gnu: Add pureos-archive-keyring. Date: Sat, 30 Mar 2024 08:55:05 +0100 Message-ID: X-Mailer: git-send-email 2.41.0 In-Reply-To: References: MIME-Version: 1.0 X-Debbugs-Cc: ( , Christopher Baines , Ludovic Courtès , Mathieu Othacehe , Raghav Gururajan , Ricardo Wurmus , Simon Tournier , Tobias Geerinckx-Rice , jgart Content-Transfer-Encoding: 8bit X-Spam-Score: 3.6 (+++) 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: * gnu/packages/debian.scm (pureos-archive-keyring): New variable. Signed-off-by: Denis 'GNUtoo' Carikli Change-Id: I80af4b15c7fe20dd40358d4f676a89903060bf07 --- gnu/packages/debian.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 ins [...] Content analysis details: (3.6 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FSL_HELO_NON_FQDN_1 No description available. 3.6 HELO_LOCALHOST No description available. -0.0 SPF_PASS SPF: sender matches SPF record X-Debbugs-Envelope-To: 70081 Cc: Denis 'GNUtoo' Carikli 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.6 (++) 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: * gnu/packages/debian.scm (pureos-archive-keyring): New variable. Signed-off-by: Denis 'GNUtoo' Carikli Change-Id: I80af4b15c7fe20dd40358d4f676a89903060bf07 --- gnu/packages/debian.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 ins [...] Content analysis details: (2.6 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FSL_HELO_NON_FQDN_1 No description available. 3.6 HELO_LOCALHOST No description available. -0.0 SPF_PASS SPF: sender matches SPF record -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager * gnu/packages/debian.scm (pureos-archive-keyring): New variable. Signed-off-by: Denis 'GNUtoo' Carikli Change-Id: I80af4b15c7fe20dd40358d4f676a89903060bf07 --- gnu/packages/debian.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/debian.scm b/gnu/packages/debian.scm index 1715b963a9..4aa432abfa 100644 --- a/gnu/packages/debian.scm +++ b/gnu/packages/debian.scm @@ -148,6 +148,31 @@ (define-public debian-ports-archive-keyring ;; "The keys in the keyrings don't fall under any copyright." (license license:public-domain))) +(define-public pureos-archive-keyring + (package + (name "pureos-archive-keyring") + (version "2021.11.0") + (source (origin + (method url-fetch) + (uri (string-append + "https://repo.puri.sm/pureos/pool/main/p/pureos-archive-keyring/" + "pureos-archive-keyring_" version ".tar.xz")) + (sha256 + (base32 + "1a0d084a98bycyhbw531646rbivvlfkdk6ldshl5dy6fvzmbci0d")))) + (build-system copy-build-system) + (arguments + '(#:install-plan '(("keyrings/pureos-archive-keyring.gpg" + "share/keyrings/") + ("keyrings/pureos-archive-removed-keys.gpg" + "share/keyrings/")))) + (home-page "https://source.puri.sm/pureos/core/pureos-archive-keyring") + (synopsis "GnuPG archive keys of the Pureos archive") + (description "The Pureos distribution signs its packages. This package +contains the archive keys used for that.") + (license (list license:public-domain ;; the keys + license:gpl2+)))) ;; see debian/copyright + (define-public trisquel-keyring (package (name "trisquel-keyring") -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Sat Mar 30 03:55:35 2024 Received: (at 70081) by debbugs.gnu.org; 30 Mar 2024 07:55:35 +0000 Received: from localhost ([127.0.0.1]:43862 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rqTYs-0005UJ-JX for submit@debbugs.gnu.org; Sat, 30 Mar 2024 03:55:35 -0400 Received: from cyberdimension.org ([79.143.250.36]:57474 helo=localhost) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rqTYn-0005Tm-S8 for 70081@debbugs.gnu.org; Sat, 30 Mar 2024 03:55:30 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; s=dkim; bh=EMYsurESrIODs5s hEab6wm8B5cauDU8iPJeWk8124GM=; h=references:in-reply-to:date:subject: cc:to:from; d=cyberdimension.org; b=QV+BVyy+7owFbL8UndXFUBgSXYZvOnRYH3 Ab7JFFcJk/PBGAsiNYVoDECNZy6fwrIII6+IUiOx+z/yYVFjAcVh98Izcdtv2iN2UokHBR qw+w3zFe5lI5Tv3BaurmuZ9NTbRn35Db2yJjfYXBJp/xRjT4k8+6qknU3woL9cJFj3xtza fCxCFjfuF1mosH6HRNKC2V5J5aBEko5uBabKoLqf6TeeUY1+MzQOb4iL6HdiyYNZiqwaRz R9Za0pNE8tEzV4X1VKToA4a1v7IADo14FDmSWzm0wQHDiHignyIo1jVHO885oyX7CyAlr+ eqaZFfZ46UkiSq3ZPgbs/mL4TcnQ== Received: from localhost.localdomain (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id 75675df4; Sat, 30 Mar 2024 07:55:22 +0000 (UTC) From: Denis 'GNUtoo' Carikli To: 70081@debbugs.gnu.org Subject: [PATCH 2/2] gnu: debootstrap: Use pureos-archive-keyring. Date: Sat, 30 Mar 2024 08:55:06 +0100 Message-ID: X-Mailer: git-send-email 2.41.0 In-Reply-To: References: MIME-Version: 1.0 X-Debbugs-Cc: ( , Christopher Baines , Ludovic Courtès , Mathieu Othacehe , Raghav Gururajan , Ricardo Wurmus , Simon Tournier , Tobias Geerinckx-Rice , jgart Content-Transfer-Encoding: 8bit X-Spam-Score: 3.6 (+++) 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: * gnu/packages/debian.scm (debootstrap): [arguments]: In 'patch-source' phase, use pureos-archive-keyring. [inputs]: Add pureos-archive-keyring. Signed-off-by: Denis 'GNUtoo' Carikli Change-Id: I8bf0a7db50c66dcf3541e5c7244350ff9523d921 --- gnu/packages/debian.scm | 9 +++++++++ 1 file changed, 9 insertions(+) Content analysis details: (3.6 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FSL_HELO_NON_FQDN_1 No description available. 3.6 HELO_LOCALHOST No description available. -0.0 SPF_PASS SPF: sender matches SPF record 0.0 TVD_SPACE_RATIO No description available. X-Debbugs-Envelope-To: 70081 Cc: Denis 'GNUtoo' Carikli 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.6 (++) 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: * gnu/packages/debian.scm (debootstrap): [arguments]: In 'patch-source' phase, use pureos-archive-keyring. [inputs]: Add pureos-archive-keyring. Signed-off-by: Denis 'GNUtoo' Carikli Change-Id: I8bf0a7db50c66dcf3541e5c7244350ff9523d921 --- gnu/packages/debian.scm | 9 +++++++++ 1 file changed, 9 insertions(+) Content analysis details: (2.6 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FSL_HELO_NON_FQDN_1 No description available. 3.6 HELO_LOCALHOST No description available. -0.0 SPF_PASS SPF: sender matches SPF record 0.0 TVD_SPACE_RATIO No description available. -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager * gnu/packages/debian.scm (debootstrap): [arguments]: In 'patch-source' phase, use pureos-archive-keyring. [inputs]: Add pureos-archive-keyring. Signed-off-by: Denis 'GNUtoo' Carikli Change-Id: I8bf0a7db50c66dcf3541e5c7244350ff9523d921 --- gnu/packages/debian.scm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/gnu/packages/debian.scm b/gnu/packages/debian.scm index 4aa432abfa..a88fb04feb 100644 --- a/gnu/packages/debian.scm +++ b/gnu/packages/debian.scm @@ -258,6 +258,7 @@ (define-public debootstrap (add-after 'unpack 'patch-source (lambda* (#:key inputs outputs #:allow-other-keys) (let ((debian #$(this-package-input "debian-archive-keyring")) + (pureos #$(this-package-input "pureos-archive-keyring")) (trisquel #$(this-package-input "trisquel-keyring")) (ubuntu #$(this-package-input "ubuntu-keyring"))) (substitute* "Makefile" @@ -271,6 +272,11 @@ (define-public debootstrap (("/usr") debian)) (substitute* "scripts/gutsy" (("/usr") ubuntu)) + (substitute* "scripts/amber" + (("/usr/share/keyrings/pureos-archive-keyring.gpg") + (string-append + pureos + "/share/keyrings/pureos-archive-keyring.gpg"))) (substitute* "scripts/robur" (("/usr/share/keyrings/trisquel-archive-keyring.gpg") (string-append @@ -283,6 +289,8 @@ (define-public debootstrap (substitute* (find-files "scripts") (("keyring.*(debian-archive-keyring.gpg)"_ keyring) (string-append "keyring " debian "/share/keyrings/" keyring)) + (("keyring.*(pureos-archive-keyring.gpg)" _ keyring) + (string-append "keyring " pureos "/share/keyrings/" keyring)) (("keyring.*(trisquel-archive-keyring.gpg)" _ keyring) (string-append "keyring " trisquel "/share/keyrings/" keyring)) (("keyring.*(ubuntu-archive-keyring.gpg)" _ keyring) @@ -309,6 +317,7 @@ (define-public debootstrap #:tests? #f)) ; no tests (inputs (list debian-archive-keyring + pureos-archive-keyring trisquel-keyring ubuntu-keyring bash-minimal -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 02 14:17:02 2024 Received: (at 70081-done) by debbugs.gnu.org; 2 Apr 2024 18:17:02 +0000 Received: from localhost ([127.0.0.1]:56222 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rrigv-0003gA-3k for submit@debbugs.gnu.org; Tue, 02 Apr 2024 14:17:02 -0400 Received: from mail-lj1-x22f.google.com ([2a00:1450:4864:20::22f]:50301) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rrigq-0003ey-2G for 70081-done@debbugs.gnu.org; Tue, 02 Apr 2024 14:16:59 -0400 Received: by mail-lj1-x22f.google.com with SMTP id 38308e7fff4ca-2d4a8bddc21so77570221fa.0 for <70081-done@debbugs.gnu.org>; Tue, 02 Apr 2024 11:16:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1712081806; x=1712686606; darn=debbugs.gnu.org; h=in-reply-to:content-disposition:mime-version:references :mail-followup-to:message-id:subject:cc:to:from:date:sender:from:to :cc:subject:date:message-id:reply-to; bh=Df47xk9VPiYLshEdOFGedI56bYyiMh0sUIygSA7Q8sY=; b=EIlLvYISYp0o9w8x6fzI0ZYC9hiZZB1vU/FraPKphR2kleGcNzMPaAKW2Wpc9MdHTw YoRs35/B9kT9UUxy9/QJvbr5e+nRiDbBOYaTqZD+zFACMS0XLvWNfe5jY/t/XnLzZkRq fNR5HjdnnefAreiApGD3gZGvSYZwNy18JI2MUDxC1F3OwydtCQH6IRM6tQcp4yKwsubb 4F7Ol/tikQKnEv72x3/Hcwu5xrPDCXbRiCSTETNdvA61UoplanN6uDubDgVgZJM3uT7x 4FwQz1+a9CWN5puSll94pPVwlo96C2NnX8pQG4k3IhlT33ZXlpI3EPXU5QjFoUxn5uaC iI+Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1712081806; x=1712686606; h=in-reply-to:content-disposition:mime-version:references :mail-followup-to:message-id:subject:cc:to:from:date:sender :x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=Df47xk9VPiYLshEdOFGedI56bYyiMh0sUIygSA7Q8sY=; b=l61QbhaKdGPfmj0eJaYOpUBUo2n/XJ1IPIMvz3ODjW1EXL+Zm2KwKmG4NE1wYvzASZ b1FTJMswI5/Ay2V5WtPXbBYBTvemSft161L4Zoanqx4PKgYP31fGZMhjl7lWOKn/hSCX lYLZe7rieVLVNR1rF8yFr4kcyJ6UA2QUDnUd8CsAlZsm2zEeayG6i8jgWB9Nj5BF9LG+ sfT61AnmMJoi+OW82ylslbb8k/XIB6M3RltxHYQH6D3jfs5fGHPtKbG/XhaKy8/Qi2T4 dXStz8hzdTM/XRiFGzsqqXclpOsevU/1rMrUSAtBhsR73WGNMhnG6WGY+4Ly91CnXW7D vtYA== X-Gm-Message-State: AOJu0Yxe1DFxTwkE9g2vGyr/Jmfy+svEVJiK+51rSx5QrOXJuo26Y4gM 87zQGj29cRWFd5e6zvvag79I9wRhBX64D1dF8Ec6Hg378xF4Bnzd X-Google-Smtp-Source: AGHT+IFKUAT/lVHgFh/ElS7DJqWGCFQ6BVZBD+0Tcf2l5oa4WvCV3poqUKyrLyMbPHRBCu5fZhNTtQ== X-Received: by 2002:a2e:2e05:0:b0:2d6:ff58:178a with SMTP id u5-20020a2e2e05000000b002d6ff58178amr7598390lju.34.1712081805697; Tue, 02 Apr 2024 11:16:45 -0700 (PDT) Received: from localhost ([141.226.12.177]) by smtp.gmail.com with ESMTPSA id dq6-20020a0560000cc600b00341c3071c93sm14866141wrb.73.2024.04.02.11.16.45 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 02 Apr 2024 11:16:45 -0700 (PDT) Date: Tue, 2 Apr 2024 21:16:44 +0300 From: Efraim Flashner To: Denis 'GNUtoo' Carikli Subject: Re: [bug#70081] [PATCH 0/2] debootstrap: Add PureOS support. Message-ID: Mail-Followup-To: Efraim Flashner , Denis 'GNUtoo' Carikli , 70081-done@debbugs.gnu.org References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="dRrcUy8Tq/9dzIKH" Content-Disposition: inline In-Reply-To: X-PGP-Key-ID: 0x41AAE7DCCA3D8351 X-PGP-Key: https://flashner.co.il/~efraim/efraim_flashner.asc X-PGP-Fingerprint: A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 X-Spam-Score: 0.3 (/) X-Debbugs-Envelope-To: 70081-done Cc: 70081-done@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 (/) --dRrcUy8Tq/9dzIKH Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Thanks. Patches pushed! --=20 Efraim Flashner =D7=A8=D7=A0=D7=A9=D7=9C=D7=A4 = =D7=9D=D7=99=D7=A8=D7=A4=D7=90 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --dRrcUy8Tq/9dzIKH Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAmYMS4wACgkQQarn3Mo9 g1Epxw//X1oQ5ry2nLkg5b073ZoK2bQpe5QVvWxTnFzW3IclNqKKt4wef/gN04h8 kMDQozPr71iFJAkuCGWQMRBMHuk8la2evfzkqi22cLqR4WE9nTD5+310VvOxcBrS VslEdFtgs/GtOoAob6Zo/XLA3SaowXF+ZUfv4G+1NIiL9tKe5IymLlA3MKpxv6qx ZaR0GZaX/sVnnwKNlgtIt91F0H+tg+yGNkH57F2rF+ahwIBdxKxkEobZM1B23bOm 0cWm7xZT8YZ7g6X3cjGstUsLYfIIkQ+YeE/4gv3Tcz0KWhZn78/vKxxERU9TZkAm 6xVfoF47fOEL3mIa3wyezmQm2GbEJv9kJdewpXqMrd7Z5HqvcLotpdopcsCHdegC ITc4ULvkgOYhUY2VPoLzcASaZEqqfcUpJ6p1vGa3diKGBXxXi42CmfskAwL5IwX/ G0nQsFcIbGWXSVdh/xtThv/t5Wiz9Pof2Z7XfBWlPK2Gzo3OTiadcmzhBuL/Qu7i HURWdKvuZVcp1SyLpTzSiay7AMX1+eqTp4WydDO5q8lWHCEVceHtojARdFQ/5eIs VVqPk8pIgA/20rRimisRcbfgtG2SuSmhNdZBr1LAH2Ug5U13KBW86MtNmTdGPbSY 6jpcaYlgG/s+Lr3WrYElEDU7vsivv5hZJ2mAHn2Hfa613vob64s= =YGu0 -----END PGP SIGNATURE----- --dRrcUy8Tq/9dzIKH-- From unknown Sat Jun 21 05:14:04 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 01 May 2024 11:24:14 +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