From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 24 03:22:51 2021 Received: (at submit) by debbugs.gnu.org; 24 Sep 2021 07:22:51 +0000 Received: from localhost ([127.0.0.1]:56596 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mTfXn-0004XH-Cp for submit@debbugs.gnu.org; Fri, 24 Sep 2021 03:22:51 -0400 Received: from lists.gnu.org ([209.51.188.17]:49452) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mTfXm-0004XA-I4 for submit@debbugs.gnu.org; Fri, 24 Sep 2021 03:22:50 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:44130) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mTfXm-0000Lt-Bp for guix-patches@gnu.org; Fri, 24 Sep 2021 03:22:50 -0400 Received: from flashner.co.il ([178.62.234.194]:42424) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mTfXk-0006vq-EV for guix-patches@gnu.org; Fri, 24 Sep 2021 03:22:50 -0400 Received: from localhost (unknown [141.226.169.107]) by flashner.co.il (Postfix) with ESMTPSA id B2F0A40425 for ; Fri, 24 Sep 2021 07:22:46 +0000 (UTC) Date: Fri, 24 Sep 2021 10:21:30 +0300 From: Efraim Flashner To: guix-patches@gnu.org Subject: [PATCH] gnu: Add debian-ports-archive-keyring: New variable. Message-ID: <76ef9bf7be29ef3c6c98e911c9fa2eb37c5b8d95.1632467997.git.efraim@flashner.co.il> Mail-Followup-To: guix-patches@gnu.org MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="EUMHk3cPORFz+iXf" Content-Disposition: inline X-TUID: Vtt89zQKx7mI Received-SPF: pass client-ip=178.62.234.194; envelope-from=efraim@flashner.co.il; helo=flashner.co.il X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit 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.3 (--) --EUMHk3cPORFz+iXf Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable * gnu/packages/debian.scm (debian-ports-archive-keyring): New variable. --- gnu/packages/debian.scm | 64 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/gnu/packages/debian.scm b/gnu/packages/debian.scm index a23490f00b..42b0fc8c7b 100644 --- a/gnu/packages/debian.scm +++ b/gnu/packages/debian.scm @@ -81,6 +81,70 @@ (define-public debian-archive-keyring (license (list license:public-domain ; the keys license:gpl2+)))) ; see debian/copyright =20 +(define-public debian-ports-archive-keyring + (package + (name "debian-ports-archive-keyring") + (version "2020.02.02") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://debian/pool/main/d" + "/debian-ports-archive-keyring" + "/debian-ports-archive-keyring_" version ".tar= =2Exz")) + (sha256 + (base32 + "0746zfc3n4f77wlrd9a9a6r4mahz2cx5wdd9izg65vmn5qwamgza")))) + (build-system gnu-build-system) + (arguments + '(#:tests? #f ; No test suite. + #:phases + (modify-phases %standard-phases + (delete 'configure) ; No configure script. + (replace 'build + (lambda _ + ;; gpg options derived from the debian/rules file. + (let ((gpg-options (list "--no-options" "--no-default-keyring" + "--no-auto-check-trustdb" "--no-keyr= ing" + "--import-options" "import-export" + "--import"))) + (with-output-to-file "debian-ports-archive-keyring.gpg" + (lambda _ + (apply invoke "gpg" + (append gpg-options (find-files "active-keys")))= )) + (with-output-to-file "debian-ports-archive-keyring-removed.= gpg" + (lambda _ + (apply invoke "gpg" + (append gpg-options (find-files "removed-keys"))= ))) + (mkdir "trusted.gpg") + (for-each + (lambda (key) + (with-output-to-file + (string-append "trusted.gpg/" (basename key ".key") "= =2Egpg") + (lambda _ + (apply invoke "gpg" (append gpg-options (list key))= )))) + (find-files "active-keys")) + #t))) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (apt (string-append out "/etc/apt/trusted.gpg.d/")) + (key (string-append out "/share/keyrings/"))) + (install-file "debian-ports-archive-keyring.gpg" key) + (install-file "debian-ports-archive-keyring-removed.gpg" ke= y) + (for-each (lambda (file) + (install-file file apt)) + (find-files "trusted.gpg" "\\.gpg$"))) + #t))))) + (native-inputs + `(("gnupg" ,gnupg))) + (home-page "https://tracker.debian.org/pkg/debian-ports-archive-keyrin= g") + (synopsis "GnuPG archive keys of the Debian ports archive") + (description + "The Debian ports-archive digitally signs its Release files. This pa= ckage +contains the archive keys used for that.") + ;; "The keys in the keyrings don't fall under any copyright." + (license license:public-domain))) + (define-public ubuntu-keyring (package (name "ubuntu-keyring") base-commit: c582be4c38596a6a31a39c6799723dcd8b6eb909 --=20 2.33.0 --EUMHk3cPORFz+iXf Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAmFNfHoACgkQQarn3Mo9 g1HocRAAoYSDsUtZD2h+cRYoSHs4ji3ISo9SEJ/RerviHkIaAIGZwU2F9+Rg1d3h iIK4Kqv66NupTYeL0Dc0eQ09nP0OnOgHQbR0y23+/TvE+Dz610pgJVf6d4Ql8o9G S1GoFKurEwfQBAOvFTtU8Zmgl35NO7+CccJCoj4/f3/ySs4F+VDcXs7SaMMZt1oB mnkKNkWlMkOQzqS/LQqSWjYYmkpz1nm/iSecyNVnMo1kkVibPBS9rrvwTjQBSaSu 4e563HIWp9qCw8riLKpCDHPVcb4h7U08qhmc4V727i6VLif7oBOYVuuuVgMFiPC3 BKWAyCPytryDFuWFNp0TIWBz2EPxDGpyREz3eQKEoog3rEgdwSNKF8SRRkrzp/PQ d8mxbEWNw7h6hnocDMDjj+xLRXbot2YvgB5sAH5uoMLF9zvV/q4ildUIjHef3Beh eM7mJ8IEN/iMHJm4mZ8kS768lgARSQNgfYT/gUSsI7vN8T3MbMCAismxJ7hsAlVS jsb6x5Z//UWTiHlSyrfaA5vBQ+F89Mci7/vXWveDRf2FyULKvN9uDr87wl17zpph l5/CLtUG5ha2HX4d+C/I7i51eXDGwR+mzDK43MVxsVHabpBkmK4+q83NM3PtUwbL DUqjra1V7SxpB09RAwhmYH9SIXqMU9RVgiRe43yFeLpwTlBEgkQ= =0/aa -----END PGP SIGNATURE----- --EUMHk3cPORFz+iXf-- From debbugs-submit-bounces@debbugs.gnu.org Sun Oct 10 09:17:15 2021 Received: (at 50772-done) by debbugs.gnu.org; 10 Oct 2021 13:17:15 +0000 Received: from localhost ([127.0.0.1]:54594 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mZYhX-0003lO-Mu for submit@debbugs.gnu.org; Sun, 10 Oct 2021 09:17:15 -0400 Received: from flashner.co.il ([178.62.234.194]:57162) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mZYhV-0003lA-MX for 50772-done@debbugs.gnu.org; Sun, 10 Oct 2021 09:17:14 -0400 Received: from localhost (unknown [141.226.169.107]) by flashner.co.il (Postfix) with ESMTPSA id 8FB65400F4 for <50772-done@debbugs.gnu.org>; Sun, 10 Oct 2021 13:17:07 +0000 (UTC) Date: Sun, 10 Oct 2021 16:15:36 +0300 From: Efraim Flashner To: 50772-done@debbugs.gnu.org Subject: Re: bug#50772: Acknowledgement ([PATCH] gnu: Add debian-ports-archive-keyring: New variable.) Message-ID: Mail-Followup-To: Efraim Flashner , 50772-done@debbugs.gnu.org References: <76ef9bf7be29ef3c6c98e911c9fa2eb37c5b8d95.1632467997.git.efraim@flashner.co.il> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="sNGoEYQEifdrgP/j" 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.0 (/) X-Debbugs-Envelope-To: 50772-done 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 (-) --sNGoEYQEifdrgP/j Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Patch 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 --sNGoEYQEifdrgP/j Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAmFi53gACgkQQarn3Mo9 g1HcdA//ZLfReEBRrXO1xJY9kHjLWISqaJy7Suji2jr1pqBZrHMCK0GOz5yaHcKG dciN9LcFATy9SBlXxu1NkhvS+C01ZC4/L0t9GlhU48pjGTaGkaSPacZENslwhDhR HnnbuuA+YON7TAAWmlpFLCGRM+iS7FrBwugGLYE5rBBG5ZM7xQ5dNjxYbvGaswFf KjjVHpfI4DVVUaUK1KVx+mEwYif1/Tsobmmgz6wjrZZf3DZafII8GJ6oX5uLDZsD y9L72UtT4RZIXXTs9U1Cw+Nqqw+dZ7O/BGAi7l+F4mrHocNxQmYKnqQlmdSP/TIu p6I8NtYpKOGOz0OPT8t1vR9zKFE7yBW19ReAlrkBSTRvlIeh+QSCcul3KMjmxA2+ 0bpIw1AEYZ/QODfxxQTCLBOwCbe/feZNwtHr2MRHqkaV7IJJJs8f4M23ucdMcXku dvbA/AnfVMGTZXuUmi+04QmtebAxhdg25R6rYbckbGEjHNboCC7wcXDNAYhz9W6D XeOWvVlKGsibRfJb/3yjVCsGjPG4WIvkadNR2GOLJQNpfdwH4sPPrfA+u/JEjbuY wv2iP7aHpzR9qQgezX17SdbSikSNzguP8PSihBLuPFPWGfJFQePr+MkVqvag2F+o LCI3NhaAEu1Y0T3RUla2ou/3YsVTJt5lPFtlAkmNO5r8hnWZsNM= =0Dwf -----END PGP SIGNATURE----- --sNGoEYQEifdrgP/j-- From unknown Sat Jun 21 03:30:38 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 08 Nov 2021 12:24:06 +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