From debbugs-submit-bounces@debbugs.gnu.org Thu Sep 19 06:36:21 2019 Received: (at submit) by debbugs.gnu.org; 19 Sep 2019 10:36:21 +0000 Received: from localhost ([127.0.0.1]:55180 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iAtnM-0008Ds-Rs for submit@debbugs.gnu.org; Thu, 19 Sep 2019 06:36:21 -0400 Received: from lists.gnu.org ([209.51.188.17]:50190) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iAtnK-0008Dj-I7 for submit@debbugs.gnu.org; Thu, 19 Sep 2019 06:36:15 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:54109) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iAtnI-0002xg-IS for guix-patches@gnu.org; Thu, 19 Sep 2019 06:36:13 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.1 required=5.0 tests=BAYES_50,RCVD_IN_DNSWL_LOW, URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iAtnG-0006aC-Fc for guix-patches@gnu.org; Thu, 19 Sep 2019 06:36:11 -0400 Received: from relay7-d.mail.gandi.net ([217.70.183.200]:43441) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iAtnG-0006Z7-3p for guix-patches@gnu.org; Thu, 19 Sep 2019 06:36:10 -0400 X-Originating-IP: 92.169.116.127 Received: from localhost.localdomain (lfbn-1-4117-127.w92-169.abo.wanadoo.fr [92.169.116.127]) (Authenticated sender: mail@ambrevar.xyz) by relay7-d.mail.gandi.net (Postfix) with ESMTPSA id C5CF520016 for ; Thu, 19 Sep 2019 10:36:07 +0000 (UTC) From: Pierre Neidhardt To: guix-patches@gnu.org Subject: [PATCH] gnu: Add makeself-safeextract. Date: Thu, 19 Sep 2019 12:35:52 +0200 Message-Id: <20190919103552.1415-1-mail@ambrevar.xyz> X-Mailer: git-send-email 2.23.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 217.70.183.200 X-Spam-Score: -0.4 (/) 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.1 (--) * gnu/packages/compression.scm (makeself-safeextract): New variable. --- gnu/packages/compression.scm | 49 +++++++++++++++++++++++++++++++++++- 1 file changed, 48 insertions(+), 1 deletion(-) diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index bda43bfd18..9785fa7a60 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -22,7 +22,7 @@ ;;; Copyright © 2017 Julien Lepiller ;;; Copyright © 2018 Rutger Helling ;;; Copyright © 2018 Joshua Sierles, Nextjournal -;;; Copyright © 2018 Pierre Neidhardt +;;; Copyright © 2018, 2019 Pierre Neidhardt ;;; Copyright © 2019 Nicolas Goaziou ;;; ;;; This file is part of GNU Guix. @@ -48,6 +48,7 @@ #:use-module (guix git-download) #:use-module (guix build-system cmake) #:use-module (guix build-system gnu) + #:use-module (guix build-system trivial) #:use-module (gnu packages) #:use-module (gnu packages assembly) #:use-module (gnu packages autotools) @@ -2000,3 +2001,49 @@ external compressors: the compressor to be used for each format is configurable at run time, and must be installed separately.") (license (list license:bsd-2 ; arg_parser.{cc,h} license:gpl2+)))) ; the rest + +(define-public makeself-safeextract + (let ((commit "1a95e121fa8e3c02d307ae37b9b7834e616c3683")) + (package + (name "makeself-safeextract") + (version (git-version "0.0.0" "1" commit)) + (home-page "https://github.com/ssokolow/makeself_safeextract") + (source + (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1anlinaj9lvfi8bn00wp11vzqq0f9sig4fm9yrspisx31v0z4a2c")))) + (build-system trivial-build-system) + (inputs + `(("python" ,python-2) + ("p7zip" ,p7zip) + ("unzip" ,unzip))) + (arguments + `(#:modules ((guix build utils)) + #:builder + (begin + (use-modules (guix build utils)) + (let* ((name "makeself_safeextract") + (source (string-append (assoc-ref %build-inputs "source") + "/" name ".py")) + (bin (string-append (assoc-ref %outputs "out") "/bin")) + (target (string-append bin "/" name)) + (python (string-append (assoc-ref %build-inputs "python") "/bin")) + (7z (string-append (assoc-ref %build-inputs "p7zip") "/bin/7z")) + (unzip (string-append (assoc-ref %build-inputs "unzip") "/bin/unzip"))) + (setenv "PATH" (string-append (getenv "PATH") ":" python)) + (mkdir-p bin) + (copy-file source target) + (substitute* target + (("'7z'") (format #f "'~a'" 7z)) + (("'unzip'") (format #f "'~a'" unzip))) + (patch-shebang target))))) + (synopsis "Extract makeself and mojo archives without running untrusted code") + (description "A simple script to unpack makeself-generated +self-extractors without running the possibly untrusted shell script.") + (license license:gpl3+)))) -- 2.23.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Sep 26 17:09:46 2019 Received: (at 37457) by debbugs.gnu.org; 26 Sep 2019 21:09:46 +0000 Received: from localhost ([127.0.0.1]:45410 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iDb1G-0000er-98 for submit@debbugs.gnu.org; Thu, 26 Sep 2019 17:09:46 -0400 Received: from hera.aquilenet.fr ([185.233.100.1]:50758) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iDb1E-0000ei-Lk for 37457@debbugs.gnu.org; Thu, 26 Sep 2019 17:09:45 -0400 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id D5DDC8BDE8; Thu, 26 Sep 2019 23:09:43 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8T0fuGjM5VC2; Thu, 26 Sep 2019 23:09:43 +0200 (CEST) Received: from ribbon (unknown [IPv6:2a01:e0a:1d:7270:af76:b9b:ca24:c465]) by hera.aquilenet.fr (Postfix) with ESMTPSA id B93848BDE6; Thu, 26 Sep 2019 23:09:42 +0200 (CEST) From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Pierre Neidhardt Subject: Re: [bug#37457] [PATCH] gnu: Add makeself-safeextract. References: <20190919103552.1415-1-mail@ambrevar.xyz> Date: Thu, 26 Sep 2019 23:09:42 +0200 In-Reply-To: <20190919103552.1415-1-mail@ambrevar.xyz> (Pierre Neidhardt's message of "Thu, 19 Sep 2019 12:35:52 +0200") Message-ID: <87k19uix2h.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: 37457 Cc: 37457@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.0 (/) Hello, Pierre Neidhardt skribis: > * gnu/packages/compression.scm (makeself-safeextract): New variable. [...] > + (synopsis "Extract makeself and mojo archives without running untr= usted code") > + (description "A simple script to unpack makeself-generated > +self-extractors without running the possibly untrusted shell script.") What about: This package provides a script to unpack self-extracting archives generated by @command{makeself} or @command{mojo} without running the possibly untrusted extraction shell script. ? (I didn=E2=80=99t know about these things.) Otherwise LGTM, thanks! Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 27 03:58:22 2019 Received: (at 37457) by debbugs.gnu.org; 27 Sep 2019 07:58:22 +0000 Received: from localhost ([127.0.0.1]:45799 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iDl8w-0001Hp-0Z for submit@debbugs.gnu.org; Fri, 27 Sep 2019 03:58:22 -0400 Received: from relay12.mail.gandi.net ([217.70.178.232]:48407) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iDl8t-0001Hf-9W for 37457@debbugs.gnu.org; Fri, 27 Sep 2019 03:58:20 -0400 Received: from bababa (lfbn-1-4156-76.w92-169.abo.wanadoo.fr [92.169.151.76]) (Authenticated sender: pierre@atlas.engineer) by relay12.mail.gandi.net (Postfix) with ESMTPSA id 68FB720000A; Fri, 27 Sep 2019 07:58:17 +0000 (UTC) From: Pierre Neidhardt To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: [bug#37457] [PATCH] gnu: Add makeself-safeextract. In-Reply-To: <87k19uix2h.fsf@gnu.org> References: <20190919103552.1415-1-mail@ambrevar.xyz> <87k19uix2h.fsf@gnu.org> Date: Fri, 27 Sep 2019 09:58:16 +0200 Message-ID: <87y2yab27b.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: -0.2 (/) X-Debbugs-Envelope-To: 37457 Cc: 37457@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.2 (/) --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Done, thanks! =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAl2NwRgACgkQm9z0l6S7 zH+9UAf9G4FAOBi5K9ISABNNNgxxWgzEkRT2JgAd+i0wct9MsCxFJDFbCM2+IwGO v9P+vG3GOzvil5H0/S2+8j2YsTUxarJ226ImwSDRXC0k6DRn4dqkQ/JFG5dfpT/3 uREVzML7UVTi1aC2W9MbP+IUbv40wmcbE2kXD5VNuu/aXhET70cpbaaOR5MxtlLi EaAGY7hAFoemoB+5YvRqHgVxWf78BsLGtFWfsOzH2HIilMGTnmFbARxpTzw661A/ 6UQrzWdFhQjXDDEzFk0xcAhc6znKdlXm5S8vAHOJ4dL1a/NQXZV9pBQVOFUakct3 eJAx2aAyMUrDj7KttiszN54h+A3beA== =sFnf -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 27 03:58:50 2019 Received: (at control) by debbugs.gnu.org; 27 Sep 2019 07:58:50 +0000 Received: from localhost ([127.0.0.1]:45802 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iDl9M-0001IX-8m for submit@debbugs.gnu.org; Fri, 27 Sep 2019 03:58:48 -0400 Received: from relay12.mail.gandi.net ([217.70.178.232]:46575) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iDl9K-0001IN-Gv for control@debbugs.gnu.org; Fri, 27 Sep 2019 03:58:46 -0400 Received: from bababa (lfbn-1-4156-76.w92-169.abo.wanadoo.fr [92.169.151.76]) (Authenticated sender: pierre@atlas.engineer) by relay12.mail.gandi.net (Postfix) with ESMTPSA id A521C20000C for ; Fri, 27 Sep 2019 07:58:45 +0000 (UTC) From: Pierre Neidhardt To: control@debbugs.gnu.org Subject: control message for bug #37457 Date: Fri, 27 Sep 2019 09:58:45 +0200 Message-ID: <87v9teb26i.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: text/plain 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 37457 quit 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.232 listed in wl.mailspike.net] -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.178.232 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 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 37457 quit From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 27 16:01:23 2019 Received: (at 37457-done) by debbugs.gnu.org; 27 Sep 2019 20:01:24 +0000 Received: from localhost ([127.0.0.1]:48720 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iDwQd-0001GY-Je for submit@debbugs.gnu.org; Fri, 27 Sep 2019 16:01:23 -0400 Received: from sender4-of-o53.zoho.com ([136.143.188.53]:21314) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iDwQb-0001GK-Ag for 37457-done@debbugs.gnu.org; Fri, 27 Sep 2019 16:01:21 -0400 ARC-Seal: i=1; a=rsa-sha256; t=1569614477; cv=none; d=zoho.com; s=zohoarc; b=Un0VbejVeA2ccgPbgArI827g3KYMSFkdFO9Je34f31oLA8qE6zcpzJMvHW0u6j3CT210DRlqn3oPuzDv3J9rArnVDO6NtRr8ebR4R1lp3qKVDWxH4Nz3oI7cILmjFy0dvym2rLam485Jtj9VGla1KP3PdMWXiMHt8LcpHwZqm60= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1569614477; h=Content-Type:Cc:Date:From:In-Reply-To:MIME-Version:Message-ID:References:Subject:To:ARC-Authentication-Results; bh=iFNvKRK4xn3aAPH0L8shm9kthguV40lElBjs64YNgYg=; b=ANNN8v+meHsgzRI/X0nBRBX4edcn5R0gDhBK909cV++jTvcUNaZx7yGXMwCsvQi9q3ENXkLNBrmUID5zfMDIpE9MdsCKiP8GGU/Y+M9MD/7qzwP1ANnEkb45bseAEk4ek3bfQnA7WsTPyWUy7SES6O/hPd8tj3L0NTPJt1KcVas= ARC-Authentication-Results: i=1; mx.zoho.com; dkim=pass header.i=elephly.net; spf=pass smtp.mailfrom=rekado@elephly.net; dmarc=pass header.from= header.from= DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1569614477; s=zoho; d=elephly.net; i=rekado@elephly.net; h=References:From:To:Cc:Subject:In-reply-to:Date:Message-ID:MIME-Version:Content-Type; l=102; bh=iFNvKRK4xn3aAPH0L8shm9kthguV40lElBjs64YNgYg=; b=gmoSLhWQfbslndAczF8ugaDdFir5d0C5ZrNopmkofWg1Cyk89nc67KEsmc32yf2P WzZc1MLllos6Y8rm9XNfK1lUj0oJuOqcCntMSL4mr89CHhNyiRfotqSX43toaiVKniF qhUn5l45ax+TIbCR6o4QBUXtSVdmF6BFH8300njY= Received: from localhost (p54AD4FB7.dip0.t-ipconnect.de [84.173.79.183]) by mx.zohomail.com with SMTPS id 1569614475684928.7339143713265; Fri, 27 Sep 2019 13:01:15 -0700 (PDT) References: <20190919103552.1415-1-mail@ambrevar.xyz> <87k19uix2h.fsf@gnu.org> <87y2yab27b.fsf@ambrevar.xyz> User-agent: mu4e 1.2.0; emacs 26.3 From: Ricardo Wurmus To: Pierre Neidhardt Subject: Re: [bug#37457] [PATCH] gnu: Add makeself-safeextract. In-reply-to: <87y2yab27b.fsf@ambrevar.xyz> X-URL: https://elephly.net X-PGP-Key: https://elephly.net/rekado.pubkey X-PGP-Fingerprint: BCA6 89B6 3655 3801 C3C6 2150 197A 5888 235F ACAC Date: Fri, 27 Sep 2019 22:01:12 +0200 Message-ID: <87zhipfr07.fsf@elephly.net> MIME-Version: 1.0 Content-Type: text/plain X-ZohoMailClient: External X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 37457-done Cc: Ludovic =?utf-8?Q?Court=C3=A8s?= , 37457-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: -1.0 (-) Pierre Neidhardt writes: > Done, thanks! Thanks, closing. -- Ricardo From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 27 16:07:42 2019 Received: (at 37457-done) by debbugs.gnu.org; 27 Sep 2019 20:07:42 +0000 Received: from localhost ([127.0.0.1]:48729 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iDwWk-0001VU-KA for submit@debbugs.gnu.org; Fri, 27 Sep 2019 16:07:42 -0400 Received: from relay3-d.mail.gandi.net ([217.70.183.195]:38955) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iDwWh-0001VE-GI for 37457-done@debbugs.gnu.org; Fri, 27 Sep 2019 16:07:40 -0400 X-Originating-IP: 92.169.151.76 Received: from bababa (lfbn-1-4156-76.w92-169.abo.wanadoo.fr [92.169.151.76]) (Authenticated sender: pierre@atlas.engineer) by relay3-d.mail.gandi.net (Postfix) with ESMTPSA id 7FBA060002; Fri, 27 Sep 2019 20:07:37 +0000 (UTC) From: Pierre Neidhardt To: Ricardo Wurmus Subject: Re: [bug#37457] [PATCH] gnu: Add makeself-safeextract. In-Reply-To: <87zhipfr07.fsf@elephly.net> References: <20190919103552.1415-1-mail@ambrevar.xyz> <87k19uix2h.fsf@gnu.org> <87y2yab27b.fsf@ambrevar.xyz> <87zhipfr07.fsf@elephly.net> Date: Fri, 27 Sep 2019 22:07:35 +0200 Message-ID: <871rw1bj08.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: -0.2 (/) X-Debbugs-Envelope-To: 37457-done Cc: Ludovic =?utf-8?Q?Court=C3=A8s?= , 37457-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.2 (/) --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Ricardo Wurmus writes: > Thanks, closing. Hmm? I had already closed it, hadn't I? I received a confirmation from control@debbugs.gnu.org. =2D-8<---------------cut here---------------start------------->8--- Processing commands for control@debbugs.gnu.org: > close 37457 bug#37457: [PATCH] gnu: Add makeself-safeextract. bug closed, send any further explanations to 37457@debbugs.gnu.org and Pierre Neidhardt > quit Stopping processing here. =2D-8<---------------cut here---------------end--------------->8--- =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAl2ObAcACgkQm9z0l6S7 zH9lFgf+LBDaHHgFcT+EL+rG42JNtxKWC+8PJBplca9C5jC6Q1dnNKnH6Oy4XUA/ ENR2DhCx4fAZx0zubdVbpfuLn7aGs0gYU1K3NbDpOg7wjRq/dsGTzFk6q9AfkGtc z4aFD9FbX+BuF6d9oQgza4odAm+cByq2vJNglmHVG+qvpmkgQcfxPdWBzZUTBCmS u9ZIQR0I1yRDcLxJJETqVNBO/pkL0Xm/x0Z/X8IdPtRsyy4Or8Mhin+gAq1mXi7C BPMldS4jaEtoQPfyokTHetyiJkydPuKSxkqfn/o01ylNKjNM/rehVmyR9Q2cbjKt qtxQc7juoA0I7+0EdhHM1arM7v/4Tw== =vlN7 -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 27 17:58:43 2019 Received: (at 37457-done) by debbugs.gnu.org; 27 Sep 2019 21:58:43 +0000 Received: from localhost ([127.0.0.1]:48776 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iDyGB-0005V2-3W for submit@debbugs.gnu.org; Fri, 27 Sep 2019 17:58:43 -0400 Received: from sender4-of-o52.zoho.com ([136.143.188.52]:21217) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iDyG8-0005Ut-Fd for 37457-done@debbugs.gnu.org; Fri, 27 Sep 2019 17:58:41 -0400 ARC-Seal: i=1; a=rsa-sha256; t=1569621515; cv=none; d=zoho.com; s=zohoarc; b=Vcw3wT1kct1rSsSuWCf82aJUfJeEyBLGvYphfPs7elbaenZ73dIcpOaIRTzkJm9pJKX0CbScqw/dlZdN/Xb66HGJ0quBbALP6WFpRDQHqktBf48l4yJTpcXqJqYdQjF/7gsiQNdK6Dc6ZRSZBFZwzqHWWWi+Oav6kY8294C7Qm0= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1569621515; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:MIME-Version:Message-ID:References:Subject:To:ARC-Authentication-Results; bh=jGTWvOeANietPCT7Tvw+rYgfJ+kJVEUBlgYf4PDl0m4=; b=AZz6UJHRTCzVjL1Mqaw96g01ARWCINY2xblOP6nb1eoVvDpSeM8EYH4a7O4xaWE6BBHFquoenHbnCAwsQ/P4UH7QTxLa0cbtGtIIkhNsUxn1N/eapl0QfUGYT1EPescyLJPzq39FeiOfwPX1Euu3w2th6Bj7lopPhBvXl5puDKw= ARC-Authentication-Results: i=1; mx.zoho.com; dkim=pass header.i=elephly.net; spf=pass smtp.mailfrom=rekado@elephly.net; dmarc=pass header.from= header.from= DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1569621515; s=zoho; d=elephly.net; i=rekado@elephly.net; h=References:From:To:Cc:Subject:In-reply-to:Date:Message-ID:MIME-Version:Content-Type:Content-Transfer-Encoding; l=396; bh=jGTWvOeANietPCT7Tvw+rYgfJ+kJVEUBlgYf4PDl0m4=; b=B4QyJO4G1JDUTx5k4JjLGivgjqE/j1VwwN5LXppwpdoUIcrtTNNpOUjP9ii7DvEl 2RLhA8NVHha2CvZ1yNEJf1i04B5stQU42WGJxbjIMzhGgO0oAN0l2uJxzQM7Bpu4UNh v+kwTJOw1F08GxsjswBIQiNL4XXqD0JEfki9cn9w= Received: from localhost (p54AD4FB7.dip0.t-ipconnect.de [84.173.79.183]) by mx.zohomail.com with SMTPS id 1569621513819243.79534484367116; Fri, 27 Sep 2019 14:58:33 -0700 (PDT) References: <20190919103552.1415-1-mail@ambrevar.xyz> <87k19uix2h.fsf@gnu.org> <87y2yab27b.fsf@ambrevar.xyz> <87zhipfr07.fsf@elephly.net> <871rw1bj08.fsf@ambrevar.xyz> User-agent: mu4e 1.2.0; emacs 26.3 From: Ricardo Wurmus To: Pierre Neidhardt Subject: Re: [bug#37457] [PATCH] gnu: Add makeself-safeextract. In-reply-to: <871rw1bj08.fsf@ambrevar.xyz> X-URL: https://elephly.net X-PGP-Key: https://elephly.net/rekado.pubkey X-PGP-Fingerprint: BCA6 89B6 3655 3801 C3C6 2150 197A 5888 235F ACAC Date: Fri, 27 Sep 2019 23:58:30 +0200 Message-ID: <87r241flkp.fsf@elephly.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-ZohoMailClient: External X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 37457-done Cc: Ludovic =?utf-8?Q?Court=C3=A8s?= , 37457-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: -1.0 (-) Pierre Neidhardt writes: > Ricardo Wurmus writes: > >> Thanks, closing. > > Hmm? I had already closed it, hadn't I? > I received a confirmation from control@debbugs.gnu.org. Oh, my bad. I only saw a last email without message to *-done@debbugs.gnu.org; didn=E2=80=99t stop to check the current status of = the issue first. -- Ricardo From unknown Sat Jun 21 10:36:59 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 26 Oct 2019 11:24:07 +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