From unknown Thu Aug 14 21:46:49 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#36000 <36000@debbugs.gnu.org> To: bug#36000 <36000@debbugs.gnu.org> Subject: Status: [PATCH 1/4] guix: Add helper for generating desktop entry files. Reply-To: bug#36000 <36000@debbugs.gnu.org> Date: Fri, 15 Aug 2025 04:46:49 +0000 retitle 36000 [PATCH 1/4] guix: Add helper for generating desktop entry fil= es. reassign 36000 guix-patches submitter 36000 Pierre Neidhardt severity 36000 normal tag 36000 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Thu May 30 03:45:18 2019 Received: (at submit) by debbugs.gnu.org; 30 May 2019 07:45:18 +0000 Received: from localhost ([127.0.0.1]:60685 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hWFkT-0005r8-OZ for submit@debbugs.gnu.org; Thu, 30 May 2019 03:45:18 -0400 Received: from eggs.gnu.org ([209.51.188.92]:40028) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hWFkR-0005qo-Sl for submit@debbugs.gnu.org; Thu, 30 May 2019 03:45:16 -0400 Received: from lists.gnu.org ([209.51.188.17]:54330) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hWFkM-0001kh-Kl for submit@debbugs.gnu.org; Thu, 30 May 2019 03:45:10 -0400 Received: from eggs.gnu.org ([209.51.188.92]:54400) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hWFkL-0000Xq-9U for guix-patches@gnu.org; Thu, 30 May 2019 03:45:10 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: * X-Spam-Status: No, score=1.4 required=5.0 tests=BAYES_50,RCVD_IN_DNSWL_LOW, RCVD_IN_RP_RNBL,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 1hWFkJ-0001gL-Sp for guix-patches@gnu.org; Thu, 30 May 2019 03:45:09 -0400 Received: from mslow2.mail.gandi.net ([217.70.178.242]:58044) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hWFkJ-0001fC-I1 for guix-patches@gnu.org; Thu, 30 May 2019 03:45:07 -0400 Received: from relay8-d.mail.gandi.net (unknown [217.70.183.201]) by mslow2.mail.gandi.net (Postfix) with ESMTP id 60AC03AACCB for ; Thu, 30 May 2019 07:12:06 +0000 (UTC) X-Originating-IP: 92.169.116.19 Received: from localhost.localdomain (lfbn-1-4117-19.w92-169.abo.wanadoo.fr [92.169.116.19]) (Authenticated sender: mail@ambrevar.xyz) by relay8-d.mail.gandi.net (Postfix) with ESMTPSA id 202941BF205 for ; Thu, 30 May 2019 07:11:39 +0000 (UTC) From: Pierre Neidhardt To: guix-patches@gnu.org Subject: [PATCH 1/4] guix: Add helper for generating desktop entry files. Date: Thu, 30 May 2019 09:11:38 +0200 Message-Id: <20190530071138.31690-1-mail@ambrevar.xyz> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 217.70.178.242 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Spam-Score: -1.1 (-) 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 (--) * guix/build/utils.scm (make-desktop-entry-file): New procedure. --- guix/build/utils.scm | 99 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 99 insertions(+) diff --git a/guix/build/utils.scm b/guix/build/utils.scm index 5fe3286843..21bdc42719 100644 --- a/guix/build/utils.scm +++ b/guix/build/utils.scm @@ -1100,6 +1100,105 @@ with definitions for VARS." (chmod prog-tmp #o755) (rename-file prog-tmp prog)))) =20 +(define* (make-desktop-entry-file destination #:key + (type "Application") ; One of "Applica= tion", "Link" or "Directory". + (version "1.1") + name + (generic-name name) + (no-display #f) + comment + icon + (hidden #f) + only-show-in + not-show-in + (d-bus-activatable #f) + try-exec + exec + path + (terminal #f) + actions + mime-type + (categories "Application") + implements + keywords + (startup-notify #t) + startup-w-m-class + #:rest all-args) + "Create a desktop entry file at DESTINATION. +You must specify NAME. + +Values can be booleans, numbers, strings or list of strings. + +Additionally, locales can be specified with an alist where the key is th= e +locale. The #f key specifies the default. Example: + + #:name '((#f \"I love Guix\") (\"fr\" \"J'aime Guix\")) + +produces + + Name=3DI love Guix + Name[fr]=3DJ'aime Guix + +For a complete description of the format, see the specifications at +https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-= spec-latest.html." + (define (escape-semicolon s) + (string-join (string-split s #\;) "\\;")) + (define* (parse key value #:optional locale) + (set! value (match value + (#t "true") + (#f "false") + ((? number? n) n) + ((? string? s) (escape-semicolon s)) + ((? list? value) + (catch 'wrong-type-arg + (lambda () (string-join (map escape-semicolon value= ) ";")) + (lambda args (error "List arguments can only contai= n strings: ~a" args)))) + (_ (error "Value must be a boolean, number, string or = list of strings")))) + (format #t "~a=3D~a~%" + (if locale + (format #f "~a[~a]" key locale) + key) + value)) + + (define key-error-message "This procedure only takes key arguments bes= ide DESTINATION") + + (unless name + (error "Missing NAME key argument")) + (unless (member #:type all-args) + (set! all-args (append (list #:type type) all-args))) + (mkdir-p (dirname destination)) + + (with-output-to-file destination + (lambda () + (format #t "[Desktop Entry]~%") + (let loop ((args all-args)) + (match args + (() #t) + ((_) (error key-error-message)) + ((key value . ...) + (unless (keyword? key) + (error key-error-message)) + (set! key + (string-join (map string-titlecase + (string-split (symbol->string + (keyword->symbol key)) + #\-)) + "")) + (match value + (((_ . _) . _) + (for-each (lambda (locale-subvalue) + (parse key + (if (and (list? (cdr locale-subvalue)) + (=3D 1 (length (cdr locale-sub= value)))) + ;; Support both proper and improper= lists for convenience. + (cadr locale-subvalue) + (cdr locale-subvalue)) + (car locale-subvalue))) + value)) + (_ + (parse key value))) + (loop (cddr args)))))))) + =0C ;;; ;;; Locales. --=20 2.21.0 From debbugs-submit-bounces@debbugs.gnu.org Thu May 30 04:17:47 2019 Received: (at 36000) by debbugs.gnu.org; 30 May 2019 08:17:47 +0000 Received: from localhost ([127.0.0.1]:60708 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hWGFu-0006je-Q3 for submit@debbugs.gnu.org; Thu, 30 May 2019 04:17:47 -0400 Received: from relay5-d.mail.gandi.net ([217.70.183.197]:39083) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hWGFr-0006jH-M4 for 36000@debbugs.gnu.org; Thu, 30 May 2019 04:17:44 -0400 X-Originating-IP: 92.169.116.19 Received: from localhost.localdomain (lfbn-1-4117-19.w92-169.abo.wanadoo.fr [92.169.116.19]) (Authenticated sender: mail@ambrevar.xyz) by relay5-d.mail.gandi.net (Postfix) with ESMTPSA id 95ED01C0008 for <36000@debbugs.gnu.org>; Thu, 30 May 2019 08:17:39 +0000 (UTC) From: Pierre Neidhardt To: 36000@debbugs.gnu.org Subject: [PATCH 4/4] gnu: drascula: Use make-desktop-entry-file. Date: Thu, 30 May 2019 10:17:28 +0200 Message-Id: <20190530081728.27140-3-mail@ambrevar.xyz> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190530081728.27140-1-mail@ambrevar.xyz> References: <20190530081728.27140-1-mail@ambrevar.xyz> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.2 (/) X-Debbugs-Envelope-To: 36000 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 (-) * gnu/packages/games.scm (drascula)[arguments]: Do it. --- gnu/packages/games.scm | 28 ++++++++++++---------------- 1 file changed, 12 insertions(+), 16 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index af875435d6..94a44f0fc1 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -7276,22 +7276,18 @@ on items and player adaptability for character progression.") ;; game, so we borrow SCUMMVM's. (let ((apps (string-append out "/share/applications"))) (mkdir-p apps) - (with-output-to-file (string-append apps "/drascula.desktop") - (lambda _ - (format #t - "[Desktop Entry]~@ - Name=Drascula: The Vampire Strikes Back~@ - GenericName=Drascula~@ - Exec=~a/bin/drascula~@ - Icon=~a/share/icons/hicolor/scalable/apps/scummvm.svg~@ - Categories=AdventureGame;Game;RolePlaying;~@ - Keywords=game;adventure;roleplaying;2D,fantasy;~@ - Comment=Classic 2D point and click adventure game~@ - Comment[de]=klassisches 2D-Abenteuerspiel in Zeigen-und-Klicken-Manier~@ - Comment[fr]=Jeux classique d'aventure pointer-et-cliquer en 2D~@ - Comment[it]=Gioco classico di avventura punta e clicca 2D~@ - Type=Application~%" - out scummvm)))) + (make-desktop-entry-file + (string-append apps "/drascula.desktop") + #:name "Drascula: The Vampire Strikes Back" + #:generic-name "Drascula" + #:exec (string-append out "/bin/drascula") + #:icon (string-append scummvm "/share/icons/hicolor/scalable/apps/scummvm.svg") + #:categories '("AdventureGame" "Game" "RolePlaying") + #:keywords '("game" "adventure" "roleplaying" "2D" "fantasy") + #:comment '((#f "Classic 2D point and click adventure game") + ("de" "Klassisches 2D-Abenteuerspiel in Zeigen-und-Klicken-Manier") + ("fr" "Jeu classique d'aventure pointer-et-cliquer en 2D") + ("it" "Gioco classico di avventura punta e clicca 2D")))) #t)))) (native-inputs `(("bash" ,bash) -- 2.21.0 From debbugs-submit-bounces@debbugs.gnu.org Thu May 30 04:17:47 2019 Received: (at 36000) by debbugs.gnu.org; 30 May 2019 08:17:47 +0000 Received: from localhost ([127.0.0.1]:60710 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hWGFv-0006jh-6d for submit@debbugs.gnu.org; Thu, 30 May 2019 04:17:47 -0400 Received: from relay5-d.mail.gandi.net ([217.70.183.197]:59261) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hWGFr-0006jI-M4 for 36000@debbugs.gnu.org; Thu, 30 May 2019 04:17:44 -0400 X-Originating-IP: 92.169.116.19 Received: from localhost.localdomain (lfbn-1-4117-19.w92-169.abo.wanadoo.fr [92.169.116.19]) (Authenticated sender: mail@ambrevar.xyz) by relay5-d.mail.gandi.net (Postfix) with ESMTPSA id 637FF1C0009 for <36000@debbugs.gnu.org>; Thu, 30 May 2019 08:17:39 +0000 (UTC) From: Pierre Neidhardt To: 36000@debbugs.gnu.org Subject: [PATCH 3/4] gnu: tome4: Use make-desktop-entry-file. Date: Thu, 30 May 2019 10:17:27 +0200 Message-Id: <20190530081728.27140-2-mail@ambrevar.xyz> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190530081728.27140-1-mail@ambrevar.xyz> References: <20190530081728.27140-1-mail@ambrevar.xyz> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.2 (/) X-Debbugs-Envelope-To: 36000 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 (-) * gnu/packages/games.scm (tome4)[arguments]: Do it. --- gnu/packages/games.scm | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 4fdc9b01e6..af875435d6 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -5035,19 +5035,13 @@ Crowther & Woods, its original authors, in 1995. It has been known as (copy-recursively "game" (string-append data "/game")) ;; launcher (mkdir-p applications) - (with-output-to-file (string-append applications "/" - ,name ".desktop") - (lambda () - (display - (string-append - "[Desktop Entry] -Name=ToME4 -Comment=" ,synopsis "\n" -"Exec=" ,name "\n" -"Icon=" icon "\n" -"Terminal=false -Type=Application -Categories=Game;RolePlaying;\n"))))) + (make-desktop-entry-file + (string-append applications "/" ,name ".desktop") + #:name "ToME4" + #:comment ,synopsis + #:exec ,name + #:icon icon + #:categories '("Game" "RolePlaying"))) #t))))) (home-page "https://te4.org") (description "Tales of Maj’Eyal (ToME) RPG, featuring tactical turn-based -- 2.21.0 From debbugs-submit-bounces@debbugs.gnu.org Thu May 30 04:17:47 2019 Received: (at 36000) by debbugs.gnu.org; 30 May 2019 08:17:47 +0000 Received: from localhost ([127.0.0.1]:60712 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hWGFv-0006jo-Hh for submit@debbugs.gnu.org; Thu, 30 May 2019 04:17:47 -0400 Received: from relay5-d.mail.gandi.net ([217.70.183.197]:32861) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hWGFr-0006jJ-P2 for 36000@debbugs.gnu.org; Thu, 30 May 2019 04:17:45 -0400 X-Originating-IP: 92.169.116.19 Received: from localhost.localdomain (lfbn-1-4117-19.w92-169.abo.wanadoo.fr [92.169.116.19]) (Authenticated sender: mail@ambrevar.xyz) by relay5-d.mail.gandi.net (Postfix) with ESMTPSA id 2AB131C0004 for <36000@debbugs.gnu.org>; Thu, 30 May 2019 08:17:38 +0000 (UTC) From: Pierre Neidhardt To: 36000@debbugs.gnu.org Subject: [PATCH 2/4] gnu: emacs-exwm: Use make-desktop-entry-file. Date: Thu, 30 May 2019 10:17:26 +0200 Message-Id: <20190530081728.27140-1-mail@ambrevar.xyz> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.2 (/) X-Debbugs-Envelope-To: 36000 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 (-) * gnu/packages/emacs-xyz.scm (emacs-exwm)[arguments]: Do it. --- gnu/packages/emacs-xyz.scm | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 9199b45e40..fed92528c3 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -7498,15 +7498,12 @@ It should enable you to implement low-level X11 applications.") ;; Add a .desktop file to xsessions (mkdir-p xsessions) (mkdir-p bin) - (with-output-to-file - (string-append xsessions "/exwm.desktop") - (lambda _ - (format #t "[Desktop Entry]~@ - Name=~a~@ - Comment=~a~@ - Exec=~a~@ - TryExec=~:*~a~@ - Type=Application~%" ,name ,synopsis exwm-executable))) + (make-desktop-entry-file + (string-append xsessions "/exwm.desktop") + #:name ,name + #:comment ,synopsis + #:exec exwm-executable + #:try-exec exwm-executable) ;; Add a shell wrapper to bin (with-output-to-file exwm-executable (lambda _ -- 2.21.0 From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 12 04:44:00 2019 Received: (at 36000) by debbugs.gnu.org; 12 Oct 2019 08:44:00 +0000 Received: from localhost ([127.0.0.1]:60716 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iJD0K-00031N-Ey for submit@debbugs.gnu.org; Sat, 12 Oct 2019 04:44:00 -0400 Received: from relay6-d.mail.gandi.net ([217.70.183.198]:59821) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iJD0J-00031G-En for 36000@debbugs.gnu.org; Sat, 12 Oct 2019 04:44:00 -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 relay6-d.mail.gandi.net (Postfix) with ESMTPSA id 7C7B6C0004; Sat, 12 Oct 2019 08:43:57 +0000 (UTC) From: Pierre Neidhardt To: 36000@debbugs.gnu.org Subject: Re: bug#36000: Acknowledgement ([PATCH 1/4] guix: Add helper for generating desktop entry files.) In-Reply-To: References: <20190530071138.31690-1-mail@ambrevar.xyz> Date: Sat, 12 Oct 2019 10:43:56 +0200 Message-ID: <87y2xquzeb.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: 36000 Cc: Ludovic =?utf-8?Q?Court=C3=A8s?= , Marius Bakke 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 Can we merge this in core updates? Any blocker? Thanks! =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAl2hkkwACgkQm9z0l6S7 zH8m0wgAsO2ZwpOK1DxhQ9Flj0FEh7KSKuEAnnRmvzxyooP45c1IBmctesdcmUrz 8HLRLCEy8b/GwVHdWFXHEP1D3E7jwoqs0uAqn7bNAjynHuadhQfrZL8BGOoCaGiW YaEwNsb6VAylm6iH0TnzeYYXyUARUHc3aZQ6AdXHc2EFE3zWzYp4OwrJkYrCmTbl AOZWPHTTfkc8Jn05LunDddd4Bu+SgdRIj3BLDJihH91YOGYyzIhy9cSbQPoN21Cd y/gcX0NdL5FGYOei9y9PJ3/YjzAMXk06YYyb3Iwy5sEalr8MjEVrSn0iCmVaqwNF E8ax6X0FvGD35MSrqvRxiKCmiRs7lw== =HK3g -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 12 14:44:18 2019 Received: (at 36000) by debbugs.gnu.org; 12 Oct 2019 18:44:18 +0000 Received: from localhost ([127.0.0.1]:34115 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iJMND-00036o-Mz for submit@debbugs.gnu.org; Sat, 12 Oct 2019 14:44:16 -0400 Received: from flashner.co.il ([178.62.234.194]:40656) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iJMNC-00036Y-3N for 36000@debbugs.gnu.org; Sat, 12 Oct 2019 14:44:14 -0400 Received: from localhost (unknown [94.230.83.61]) by flashner.co.il (Postfix) with ESMTPSA id EAED1400D1; Sat, 12 Oct 2019 18:44:07 +0000 (UTC) Date: Sat, 12 Oct 2019 21:44:06 +0300 From: Efraim Flashner To: Pierre Neidhardt Subject: Re: [bug#36000] Acknowledgement ([PATCH 1/4] guix: Add helper for generating desktop entry files.) Message-ID: <20191012184406.GD13364@E5400> References: <20190530071138.31690-1-mail@ambrevar.xyz> <87y2xquzeb.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="ZARJHfwaSJQLOEUz" Content-Disposition: inline In-Reply-To: <87y2xquzeb.fsf@ambrevar.xyz> 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 User-Agent: Mutt/1.12.2 (2019-09-21) X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 36000 Cc: Marius Bakke , 36000@debbugs.gnu.org, Ludovic =?utf-8?Q?Court=C3=A8s?= 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 (-) --ZARJHfwaSJQLOEUz Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Oct 12, 2019 at 10:43:56AM +0200, Pierre Neidhardt wrote: > Can we merge this in core updates? > Any blocker? >=20 The wrapping is wrong at the very top, it should be under the 'e' in define. It looks good. I didn't look too much at the logic (my weak point) but this should be a very welcome addition. Why core-updates specifically? --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --ZARJHfwaSJQLOEUz Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAl2iHvMACgkQQarn3Mo9 g1FZpQ//b5xA+39A7D2fRn4lftKrKxJLDhN40GIFTqLCNm8in1J7rRZWKKu72rnp h+hV/w2B9ODv4CW/fFu9TQ8xzj5/nee2F0zgYS/1KbNsoW2inDGb9b/BRgJqSt2r CAYnL57X2qSMV1gdCv7b/vVdVBedzL6K5hi6O+20nyZJSJUL5DOSCDVQ0ls4XXGV /2B63z3dkNZpzB8620lSyja7ibu0QKsrm8PshO+VrwLyfy2pF4V81j2eZEVyNiY1 NuTmhrQPG7PcmFwV7M+xNuwkinRBOAizz4h76Kxa9X6yd9ud/SrFXyiMlVGLqou7 VGrcC1P2Rz1liziuMsBo7j5M6pnWnhXw/G6viWGYAU5q4UJr9z9p13wpUOCWmfX2 5BOXYl3syIVpNyGEzXGswladK6Z9r+33pTBBbQ9jaamP4qwEAqtEGoPC2hUrp2Xg eKRKDWMdyymDHhx/WL3+7yhz/wtlja1skMhi4GUKzSw51WU6LpxqKQsWBkdbx9om vaHrqNuSPLc9bBcFtRYNDjUaZS6L8AuOe0f1FEmfyAgVBYUDHzQqIjbb/sPuLkLV 26UVnk0bpjT/RyBwebhwJmN238OC6+kXNM9TBDSgNe4o0E+CJENf57NnZQB/7/Cb SgMWfN/bvDdtfE7aXHc5LiX7gmMRxm4jP+KakSYYGlFUGm+NqFU= =R9rW -----END PGP SIGNATURE----- --ZARJHfwaSJQLOEUz-- From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 12 15:05:43 2019 Received: (at 36000) by debbugs.gnu.org; 12 Oct 2019 19:05:43 +0000 Received: from localhost ([127.0.0.1]:34161 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iJMhz-0003hC-Ea for submit@debbugs.gnu.org; Sat, 12 Oct 2019 15:05:43 -0400 Received: from relay5-d.mail.gandi.net ([217.70.183.197]:42195) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iJMhx-0003h4-OE for 36000@debbugs.gnu.org; Sat, 12 Oct 2019 15:05:42 -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 relay5-d.mail.gandi.net (Postfix) with ESMTPSA id 2085A1C0002; Sat, 12 Oct 2019 19:05:38 +0000 (UTC) From: Pierre Neidhardt To: Efraim Flashner Subject: Re: [bug#36000] Acknowledgement ([PATCH 1/4] guix: Add helper for generating desktop entry files.) In-Reply-To: <20191012184406.GD13364@E5400> References: <20190530071138.31690-1-mail@ambrevar.xyz> <87y2xquzeb.fsf@ambrevar.xyz> <20191012184406.GD13364@E5400> Date: Sat, 12 Oct 2019 21:05:38 +0200 Message-ID: <87o8yl6ayl.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: 36000 Cc: Marius Bakke , 36000@debbugs.gnu.org, Ludovic =?utf-8?Q?Court=C3=A8s?= , Nicolas Goaziou 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 Cc-ing Nicolas since he was part of the discussion: https://lists.gnu.org/archive/html/guix-devel/2019-05/msg00404.html Efraim Flashner writes: > The wrapping is wrong at the very top, it should be under the 'e' in > define. You mean the indentation? I'm not sure what's wrong, could you write a sni= ppet? > Why core-updates specifically? Because this rebuilds the world :( =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAl2iJAIACgkQm9z0l6S7 zH/UjQf7BR8zS9G1YkMfR2pkIh64GdWinQXTeTNjAIFcPnue9Q0GsOmBqALCJEW8 u0Dbx+OSRbTfxONn07QNMiD6IUdAomwkm3XZJf7G5YkPeh0lwUlra4gZ2xqKZhat 2eSm01n2b3s7a5ze4tHUaoFq6vrEqgvguRihBhma2vbM305MAV1PzfawLQvrjaga BlUdqbn5qNjI3GQQIGgYHWpuFahtk9bUYYP2lWhk/P6O7IZ2GslK256krx8D7Xgb zqmeFVsMnXVt8FbnS2rSbqwXhm72+J9NhtbDVleI5Hs73fSqJL381fVlIasI8HQJ a/zhWPWyoN1s8OFyeGhOQ2h8Gum1dQ== =w+8Q -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 12 15:12:24 2019 Received: (at 36000) by debbugs.gnu.org; 12 Oct 2019 19:12:24 +0000 Received: from localhost ([127.0.0.1]:34167 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iJMoS-0003rM-6x for submit@debbugs.gnu.org; Sat, 12 Oct 2019 15:12:24 -0400 Received: from flashner.co.il ([178.62.234.194]:40752) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iJMoQ-0003r6-9i for 36000@debbugs.gnu.org; Sat, 12 Oct 2019 15:12:22 -0400 Received: from localhost (unknown [94.230.83.61]) by flashner.co.il (Postfix) with ESMTPSA id 6D873400D1; Sat, 12 Oct 2019 19:12:16 +0000 (UTC) Date: Sat, 12 Oct 2019 22:12:15 +0300 From: Efraim Flashner To: Pierre Neidhardt Subject: Re: [bug#36000] Acknowledgement ([PATCH 1/4] guix: Add helper for generating desktop entry files.) Message-ID: <20191012191215.GE13364@E5400> References: <20190530071138.31690-1-mail@ambrevar.xyz> <87y2xquzeb.fsf@ambrevar.xyz> <20191012184406.GD13364@E5400> <87o8yl6ayl.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="orO6xySwJI16pVnm" Content-Disposition: inline In-Reply-To: <87o8yl6ayl.fsf@ambrevar.xyz> 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 User-Agent: Mutt/1.12.2 (2019-09-21) X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 36000 Cc: Marius Bakke , 36000@debbugs.gnu.org, Ludovic =?utf-8?Q?Court=C3=A8s?= , Nicolas Goaziou 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 (-) --orO6xySwJI16pVnm Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Oct 12, 2019 at 09:05:38PM +0200, Pierre Neidhardt wrote: > Cc-ing Nicolas since he was part of the discussion: > https://lists.gnu.org/archive/html/guix-devel/2019-05/msg00404.html >=20 > Efraim Flashner writes: >=20 > > The wrapping is wrong at the very top, it should be under the 'e' in > > define. >=20 > You mean the indentation? I'm not sure what's wrong, could you write a s= nippet? >=20 Yeah, I did mean indentation. I meant that it should be (define* (... next-line-here but then I checked guix/build/utils and saw that all the other ones are indented the way you have it so keep it :). > > Why core-updates specifically? >=20 > Because this rebuilds the world :( >=20 Ah, that's unfortunate --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --orO6xySwJI16pVnm Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAl2iJYsACgkQQarn3Mo9 g1H1ZQ//d9Y+o7mLUZW6yk/MFXA82N18uNElzOLUsDtLouQUeLXzKo1tWjdQstus QRkk2PbN9CFKLh/FaSuhSCd8ILD9e5cyQl0q/R56YsPnfdlsTmgEUV1cylmAiqMb ij/PU6YapHgF9Ijkt074l3nd3ZANnn6mumIFovVJpDSl+F7loipxLbnmWn28QNtm PMMXGA63TnUJ1DzRQGH4iJ+wNzi5KUtvuHwQFDZ4Y+yfVsMs+fHeLK2XlGun9Fgp zNt7B8qmHhvzbl+m9Tm/79DEiGewdcof8GJEwuuKmUjdRmCky4PT+CDS8sHXtPrH A8EaT+4aKzm+VFouY26xOdm4h8MfnjpE4WMaBbGOFKD0TIepH1J9mV9b7wT4ysL7 DK20aoyd2iueTCXSGDai2ndeA8JiXxpapPbBbEn+y5OikkgqDINM1s6SqGtosqVm omLbuSp4a3S0SiF9h0bTX0seXOvy5sHno5BFurwAS48kOQkC9Xht+wUQaduL4Rif i8eQR+cs9KwZi5mkyzWoSJHhjnaEdXCX2EGXKBaXcF4uzWrVzimTd/n6ig4asAIG Oc1Hqh6xFZgWKHoNZKR7GaJkxdIaqJWBGipZ1dp1RPMC1hO5RwbScC/MFiB4Ygpy nxmI9vawkYPexbejwirZfIe5q9zaOqgoyvxfzexB1FZeuY8Be84= =uMpG -----END PGP SIGNATURE----- --orO6xySwJI16pVnm-- From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 18 04:44:05 2019 Received: (at 36000) by debbugs.gnu.org; 18 Oct 2019 08:44:05 +0000 Received: from localhost ([127.0.0.1]:49305 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iLNrg-0006rk-Mw for submit@debbugs.gnu.org; Fri, 18 Oct 2019 04:44:05 -0400 Received: from relay2-d.mail.gandi.net ([217.70.183.194]:48615) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iLNrd-0006rB-Fu for 36000@debbugs.gnu.org; Fri, 18 Oct 2019 04:44:02 -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 relay2-d.mail.gandi.net (Postfix) with ESMTPSA id 12F604000C; Fri, 18 Oct 2019 08:43:58 +0000 (UTC) From: Pierre Neidhardt To: Efraim Flashner Subject: Re: [bug#36000] Acknowledgement ([PATCH 1/4] guix: Add helper for generating desktop entry files.) In-Reply-To: <20191012191215.GE13364@E5400> References: <20190530071138.31690-1-mail@ambrevar.xyz> <87y2xquzeb.fsf@ambrevar.xyz> <20191012184406.GD13364@E5400> <87o8yl6ayl.fsf@ambrevar.xyz> <20191012191215.GE13364@E5400> Date: Fri, 18 Oct 2019 10:43:58 +0200 Message-ID: <87k192l9yp.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: 36000 Cc: Marius Bakke , 36000@debbugs.gnu.org, Ludovic =?utf-8?Q?Court=C3=A8s?= , Nicolas Goaziou 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 So shall I merge it on staging then? =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAl2pe04ACgkQm9z0l6S7 zH+s8wf/UwoqhodXVZvi7P0zU2MTgw1WWtdP8EZL9fHqEbEmullcVvf1Iea4/GGK 8WPteyls+f97oskfES9VGOz1wBhgQ7fRxltAW2YiN8RDHK1rW9CQqX76tnzuyUxn D84hHu24aWAMz1E3sUCs95JJRN9dfxuHN8iS+M3zIhVRd10If7otfH9F3vdruRx8 NMVRf8fYk5I3r2flWqUTkJIMnNiy2wAM0YrrwxySEoK2GNNunnWODUcBXIoLUJk8 R9Ze7XFx+3WyPFbq5dp/ZnF7nfRn3BSSEY76zOY5JPYDk9A1x8BX+NEMZW7NlSpk ez6g1ppshXsQURbSwgoHCZBRbKRWuQ== =zibA -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 18 10:40:24 2019 Received: (at 36000) by debbugs.gnu.org; 18 Oct 2019 14:40:24 +0000 Received: from localhost ([127.0.0.1]:51371 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iLTQW-0008Rg-3B for submit@debbugs.gnu.org; Fri, 18 Oct 2019 10:40:24 -0400 Received: from eggs.gnu.org ([209.51.188.92]:54568) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iLTQV-0008RP-0D for 36000@debbugs.gnu.org; Fri, 18 Oct 2019 10:40:23 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:46227) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iLTQP-0005nQ-DP; Fri, 18 Oct 2019 10:40:17 -0400 Received: from [2001:660:6102:320:e120:2c8f:8909:cdfe] (port=39646 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1iLTQN-0003Hq-6d; Fri, 18 Oct 2019 10:40:15 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Pierre Neidhardt Subject: Re: [bug#36000] Acknowledgement ([PATCH 1/4] guix: Add helper for generating desktop entry files.) References: <20190530071138.31690-1-mail@ambrevar.xyz> <87y2xquzeb.fsf@ambrevar.xyz> <20191012184406.GD13364@E5400> <87o8yl6ayl.fsf@ambrevar.xyz> <20191012191215.GE13364@E5400> <87k192l9yp.fsf@ambrevar.xyz> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 27 =?utf-8?Q?Vend=C3=A9miaire?= an 228 de la =?utf-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-pc-linux-gnu Date: Fri, 18 Oct 2019 16:40:13 +0200 In-Reply-To: <87k192l9yp.fsf@ambrevar.xyz> (Pierre Neidhardt's message of "Fri, 18 Oct 2019 10:43:58 +0200") Message-ID: <87v9smyv5e.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-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 36000 Cc: Marius Bakke , 36000@debbugs.gnu.org, Efraim Flashner , Nicolas Goaziou 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 (---) Hi, Pierre Neidhardt skribis: > So shall I merge it on staging then? I think =E2=80=98staging=E2=80=99 is in fact pretty much ready, no? Marius? https://ci.guix.gnu.org/jobset/staging-staging Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 18 11:10:14 2019 Received: (at 36000) by debbugs.gnu.org; 18 Oct 2019 15:10:14 +0000 Received: from localhost ([127.0.0.1]:51414 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iLTtO-0000pO-B5 for submit@debbugs.gnu.org; Fri, 18 Oct 2019 11:10:14 -0400 Received: from wout1-smtp.messagingengine.com ([64.147.123.24]:60179) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iLTtM-0000ou-Ep for 36000@debbugs.gnu.org; Fri, 18 Oct 2019 11:10:13 -0400 Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailout.west.internal (Postfix) with ESMTP id 77E274CB; Fri, 18 Oct 2019 11:10:06 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute5.internal (MEProxy); Fri, 18 Oct 2019 11:10:06 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fastmail.com; h= from:to:cc:subject:in-reply-to:references:date:message-id :mime-version:content-type; s=fm1; bh=MM4r5WOK79M1dRmkpzuNxL/oKt wa5FKwoIbRm8kf4Ds=; b=u1XDo3Hyq220+MhWp6r+R4yWqcy17y306ze+MODY75 GIyv3dnZIyum4+ea6W+aqR5NZ9Ez3WJvcoCZdqUZqqHjf4o3HY3RRG+kMvmHcOJX JiepVGtV2KYGqvf2fiL3OhLN3xZ+RYbab0HyXvcwCM8C5qiRVBCCuvHr7cUyQEIm Y3AL0EjrTKNdoHNt4FaV1wJcIn6dQzx65CeXLOdgBNp36tyfGtv3B+lRwX5yO6vr 9niMamGEzc9CHyUy/9oLxZecuD7aWpwtdIhMzDtJPj+P36rnZTtAatHdIhATn8S9 EiWwXhPAmB72y6i7+xUQd58gYBygNePoqdai3IJ2+QDQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=MM4r5W OK79M1dRmkpzuNxL/oKtwa5FKwoIbRm8kf4Ds=; b=W6AJJDEnNiWqG0j1PzL0W1 5QMW9lME8Qc7cKMUWV4es9mlICRFWId2gqjUYnHQNZ20cyl1GjnrBw2zYvZbo7YE a9GEehnBv75lReiwv+wSFBlcs92XDpKmLwOeT2EscD67NEuhZKnAcU6PabgslvfF xbyC97+r6Yaz1Jqrb1y2DNAd7VZLd5+//x+S/iAAwA8wm1OHU+b59rc9SEYr86lB cfcdn9xUKtxDSEll6C64njvxlSlZNHHyS1bqw37MFk67qnoqu8xT+Dg0pJstE7mm l4R9RbXNY7v7GHmxe9DGVjEm3nirL+qHT0sb98yNqj5MzukjlCGjNye8pvV1hQ1A == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedufedrjeelgdekfecutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenfg hrlhcuvffnffculddujedmnecujfgurhephffvufgjfhgffffkgggtsehgtderredtreej necuhfhrohhmpeforghrihhushcuuegrkhhkvgcuoehmsggrkhhkvgesfhgrshhtmhgrih hlrdgtohhmqeenucffohhmrghinhepghhnuhdrohhrghenucfkphepiedvrdduiedrudel vddrudehtdenucfrrghrrghmpehmrghilhhfrhhomhepmhgsrghkkhgvsehfrghsthhmrg hilhdrtghomhenucevlhhushhtvghrufhiiigvpedt X-ME-Proxy: Received: from localhost (ti0006q161-0149.bb.online.no [62.16.192.150]) by mail.messagingengine.com (Postfix) with ESMTPA id ED37680062; Fri, 18 Oct 2019 11:10:04 -0400 (EDT) From: Marius Bakke To: Ludovic =?utf-8?Q?Court=C3=A8s?= , Pierre Neidhardt Subject: Re: [bug#36000] Acknowledgement ([PATCH 1/4] guix: Add helper for generating desktop entry files.) In-Reply-To: <87v9smyv5e.fsf@gnu.org> References: <20190530071138.31690-1-mail@ambrevar.xyz> <87y2xquzeb.fsf@ambrevar.xyz> <20191012184406.GD13364@E5400> <87o8yl6ayl.fsf@ambrevar.xyz> <20191012191215.GE13364@E5400> <87k192l9yp.fsf@ambrevar.xyz> <87v9smyv5e.fsf@gnu.org> User-Agent: Notmuch/0.29.1 (https://notmuchmail.org) Emacs/26.2 (x86_64-pc-linux-gnu) Date: Fri, 18 Oct 2019 17:10:02 +0200 Message-ID: <87imomytrp.fsf@devup.no> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 36000 Cc: 36000@debbugs.gnu.org, Efraim Flashner , Nicolas Goaziou 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.7 (-) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Ludovic Court=C3=A8s writes: > Hi, > > Pierre Neidhardt skribis: > >> So shall I merge it on staging then? > > I think =E2=80=98staging=E2=80=99 is in fact pretty much ready, no? Mari= us? > > https://ci.guix.gnu.org/jobset/staging-staging Indeed, it will be merged within a day or two and is currently only taking bugfixes. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAl2p1csACgkQoqBt8qM6 VPpi7QgAj1PsruXh0azP0chky1X9oSVjKyveqF8G29Zt1SGGPAtin2V/PBaGEWEy qvqlUXWWwIh5+vRQzCUQRuwtNAjhNzrtLuVZjTZVkne5P6rgXl8CEf6sMD0yxl81 hUl+O8m+WDmkoW7vrd5W54gNsDEtCgEebTOUCOBsY0jDUr2Bk51dsC3Zi7JaHPwm KZ9wXG4wuvN5IT0dVw+4AsM58ojC2GhtCXz9BnNJY1+KNzYF3RbkgSrZkSo8SaT+ mRqk7OcaG+CNjKWzDQM4xPLkkEsLU98ALMWWuXK+AN6hQsHLOkgKThZShLUa5lvV LOmgfas9bKvdkFXMXst9xCeWIkNiDQ== =3srz -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 18 11:13:40 2019 Received: (at 36000) by debbugs.gnu.org; 18 Oct 2019 15:13:40 +0000 Received: from localhost ([127.0.0.1]:51433 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iLTwi-0000vR-Bj for submit@debbugs.gnu.org; Fri, 18 Oct 2019 11:13:40 -0400 Received: from wout1-smtp.messagingengine.com ([64.147.123.24]:36955) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iLTwf-0000vD-04 for 36000@debbugs.gnu.org; Fri, 18 Oct 2019 11:13:37 -0400 Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailout.west.internal (Postfix) with ESMTP id 22FAE45D; Fri, 18 Oct 2019 11:13:31 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute5.internal (MEProxy); Fri, 18 Oct 2019 11:13:31 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fastmail.com; h= from:to:cc:subject:in-reply-to:references:date:message-id :mime-version:content-type; s=fm1; bh=z3s4/1eXEPArWPuOzYWR+eLg+L qSEF99CMO7JQgp4Z8=; b=qD1i0eRaFo6FSwLLMSWGHeBn9/6DS9/h0qXopzxSW+ IAuisR/WbApwdud3ZFfPmGP1rDLnepFGWBAdSnCmFQ77sP3Qo6KhZQLHCFV3Jswg jOmroElZk/YyuszjXIS5htjt6f4HFSMvvQ6rblky9bnDyaK+o+MJtnO6725HRAqz fuqopCgQR27UDJOlm7+2SqN+xpvFipMjHyGO39bBp0UuTjoBTWuAM3jHhqlqyqHo H+EHsQGELzdI8yhB0f8ya8YvGYjK7i8la9+O5sLKd+5F3z4oDyLYZ2KcC4XqllFq 3HsJVQCIIlDI7oFZQ4hKDn0gciEVpeF1xFNmcAvFUvtg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=z3s4/1 eXEPArWPuOzYWR+eLg+LqSEF99CMO7JQgp4Z8=; b=oIDmrE+pD2w86Fnbrvp2up fhtheG5HA0bsMeMCXuzHl0v+QxA3gjitOnJyHV7WLp1skLq3kBwq9NiN/zYIvRon PYYgWvoxNfAqb89c8mhziU6XkyXSeMVGg3VMcdaKwIJuTf2NreNpoWz2nabFcrlz 8DCOnSHndLMS+GXmVgDfh4nG3yOT9Bnl5O14lUfWlBcO4baISZFHg9Dch5csJgtL vEpcNrfNlg9BF4v0I+HuopMpvJJQ7haBRPQt0KWOdblP6y3ZTqrrR4LvLJq8kjRK qICRwycNKfGw+NbcEeh/iOYLhkgLxvCZezSyNwENyNE7MGuMuNzSzbaDORRfddww == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedufedrjeelgdekgecutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenfg hrlhcuvffnffculddujedmnecujfgurhephffvufgjfhgffffkgggtsehgtderredtredt necuhfhrohhmpeforghrihhushcuuegrkhhkvgcuoehmsggrkhhkvgesfhgrshhtmhgrih hlrdgtohhmqeenucffohhmrghinhepghhnuhdrohhrghenucfkphepiedvrdduiedrudel vddrudehtdenucfrrghrrghmpehmrghilhhfrhhomhepmhgsrghkkhgvsehfrghsthhmrg hilhdrtghomhenucevlhhushhtvghrufhiiigvpedt X-ME-Proxy: Received: from localhost (ti0006q161-0149.bb.online.no [62.16.192.150]) by mail.messagingengine.com (Postfix) with ESMTPA id 29365D6005E; Fri, 18 Oct 2019 11:13:29 -0400 (EDT) From: Marius Bakke To: Pierre Neidhardt , Efraim Flashner Subject: Re: [bug#36000] Acknowledgement ([PATCH 1/4] guix: Add helper for generating desktop entry files.) In-Reply-To: <87k192l9yp.fsf@ambrevar.xyz> References: <20190530071138.31690-1-mail@ambrevar.xyz> <87y2xquzeb.fsf@ambrevar.xyz> <20191012184406.GD13364@E5400> <87o8yl6ayl.fsf@ambrevar.xyz> <20191012191215.GE13364@E5400> <87k192l9yp.fsf@ambrevar.xyz> User-Agent: Notmuch/0.29.1 (https://notmuchmail.org) Emacs/26.2 (x86_64-pc-linux-gnu) Date: Fri, 18 Oct 2019 17:13:27 +0200 Message-ID: <87ftjqytm0.fsf@devup.no> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 36000 Cc: 36000@debbugs.gnu.org, Ludovic =?utf-8?Q?Court=C3=A8s?= , Nicolas Goaziou 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.7 (-) --=-=-= Content-Type: text/plain Pierre Neidhardt writes: > So shall I merge it on staging then? This is world-rebuilding change, no? In that case it has to go through 'core-updates' as per the branch rebuild policy: https://guix.gnu.org/manual/en/guix.html#Submitting-Patches (it would be good to shorten that section a bit...) --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAl2p1pcACgkQoqBt8qM6 VPoF3Af/cgToWx5QiSF25TbNT51glKj0roQc1yGjNOolVp7CYro2m1/lPbDNmLY3 7opxd4wY0sBwu7l/d6fUsu79ozeKuT7v0Ti/oepHQMeVXZgQ+xvLxAW2LCyz9nt6 goMtKDBieaSJ+Qv5moBvVVP0/KqoIJ/EN69fHrIw9GRswUtDYZmXBZYhGjWj/qVL qJi33yuHFRUyOdSOcE8WrAKlnwzbxmZezUqfxxKYo++IcYgM6lqllPJHcBKhVA3a iBrsK5QRkNBlxTOxL2fz2x9jK18ned5t+EEMg4MQN62GukpZGunprmyyx01gUe6n jUrnhlBxnsXnYYyJCi/blWNdPxz9Tw== =WZW6 -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 18 11:22:10 2019 Received: (at 36000) by debbugs.gnu.org; 18 Oct 2019 15:22:10 +0000 Received: from localhost ([127.0.0.1]:51445 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iLU4w-00019A-EJ for submit@debbugs.gnu.org; Fri, 18 Oct 2019 11:22:10 -0400 Received: from relay10.mail.gandi.net ([217.70.178.230]:51077) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iLU4u-00018z-Hp for 36000@debbugs.gnu.org; Fri, 18 Oct 2019 11:22:09 -0400 Received: from bababa (lfbn-1-4156-76.w92-169.abo.wanadoo.fr [92.169.151.76]) (Authenticated sender: pierre@atlas.engineer) by relay10.mail.gandi.net (Postfix) with ESMTPSA id D5845240005; Fri, 18 Oct 2019 15:22:05 +0000 (UTC) From: Pierre Neidhardt To: Marius Bakke , Efraim Flashner Subject: Re: [bug#36000] Acknowledgement ([PATCH 1/4] guix: Add helper for generating desktop entry files.) In-Reply-To: <87ftjqytm0.fsf@devup.no> References: <20190530071138.31690-1-mail@ambrevar.xyz> <87y2xquzeb.fsf@ambrevar.xyz> <20191012184406.GD13364@E5400> <87o8yl6ayl.fsf@ambrevar.xyz> <20191012191215.GE13364@E5400> <87k192l9yp.fsf@ambrevar.xyz> <87ftjqytm0.fsf@devup.no> Date: Fri, 18 Oct 2019 17:22:05 +0200 Message-ID: <87y2xihyea.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: 36000 Cc: 36000@debbugs.gnu.org, Ludovic =?utf-8?Q?Court=C3=A8s?= , Nicolas Goaziou 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 Sorry, my email this morning meant "core-updates", as per the other comments in this thread! So should I merge on core-updates then? =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAl2p2J0ACgkQm9z0l6S7 zH+VVQf/dV6a50Pf2kU3IvM+fnWHvFfulVkcqHG5IQIBnnEWxoTASCfLZwUCEj2M 6y3xiAEMRAey4TB3MdMVlUH8oSif2dXjqpLPt9dShdIZ42RQ6n4K1RbOB9Enu1mr +pkUqGez95cwxgSxNgdxqP+yBQgcOrksSA/0KQ2KBLqFvkfk9HGikT81AY9zCOBD pL9EhdeIZGYyO6kXABxHnGFKdsj4me5o1huflUwlKrGP42B5CITOLje8/WWTQuLD a553dDPrX24soPy2KLtY9VbqXVKJd5lNIcgJBtIcyh6hKiMwnAV/R/QFpcs3hAI9 dr3CmtmFgwMDH3MYaxNnpsDONWLcVQ== =3NS1 -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 18 11:24:57 2019 Received: (at 36000) by debbugs.gnu.org; 18 Oct 2019 15:24:57 +0000 Received: from localhost ([127.0.0.1]:51451 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iLU7d-0001D9-0A for submit@debbugs.gnu.org; Fri, 18 Oct 2019 11:24:57 -0400 Received: from wout1-smtp.messagingengine.com ([64.147.123.24]:40519) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iLU7b-0001Cx-H7 for 36000@debbugs.gnu.org; Fri, 18 Oct 2019 11:24:55 -0400 Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailout.west.internal (Postfix) with ESMTP id 992B93D5; Fri, 18 Oct 2019 11:24:49 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute5.internal (MEProxy); Fri, 18 Oct 2019 11:24:49 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fastmail.com; h= from:to:cc:subject:in-reply-to:references:date:message-id :mime-version:content-type; s=fm1; bh=ksUomYB6/SZH0ykUXFuyMIX4fq z3yTh8MlhDkyj9bUQ=; b=OBKxzNHG3zbifXfsFyXOf+XsqHtgOXft/xssGn6dem ju08zC414/H7F0E2gkrjSAbQTZ6aU9cafyyn1Di5BFbxp2DZbZH420fhKmVZwvvS T4vP6DHMZ3a8yk5qJc7zWNnRGvj2EZnDEWa5wxwRjBNpyOMHPX61lBOxesKQi1wo g64Jr2a/VJKkAHvHqKBybQrRK4jbataZstJG9WIj98sLm80pKEAA/R4HDo5uD0Ho EKgKLoLEdE9ktBOnMEVsVKrdKjv/AJ/spZrO8PLWhXpihxAYa4dz/yv9bJkvQWAR 8VxYDkSL+9QpGsFq9fH6wjXgq/Ud4rdAIhfwOLond1sg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=ksUomY B6/SZH0ykUXFuyMIX4fqz3yTh8MlhDkyj9bUQ=; b=v2bPFyLDG2l/Gz3Q3HBwn5 0hxhOySXb6bXrwYBgZ5QBXQQ26IQeqjrBLftIvrdaUigE9BzEzoIckY7CDZe2UJR DNqA1Z7RsyIDMa0BsQeNmdq/uV86TcuCppJQOIw+yvKkuUwEFSwHrTGV1nvcEzmX DWpgyZzBkIDaUEVlz7YkbeSi8LRLUw5yI9aZ31Sh8M4HwFp3OGWMg17P2m5ymhDo ifxbG8Vc2mJs+iXntZWHjOipl3XG4j16/qELzt9UaJ0Ly7cG9t29l6GRRowREHwR VN4jarZqTo1VUYp7mRUrRmV66XDWI5RahZSw7Q7WJAbq1XzjPVI9TSmQtETkTvtw == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedufedrjeelgdekiecutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenfg hrlhcuvffnffculddvfedmnecujfgurhephffvufgjfhgffffkgggtsehgtderredtredt necuhfhrohhmpeforghrihhushcuuegrkhhkvgcuoehmsggrkhhkvgesfhgrshhtmhgrih hlrdgtohhmqeenucfkphepiedvrdduiedrudelvddrudehtdenucfrrghrrghmpehmrghi lhhfrhhomhepmhgsrghkkhgvsehfrghsthhmrghilhdrtghomhenucevlhhushhtvghruf hiiigvpedt X-ME-Proxy: Received: from localhost (ti0006q161-0149.bb.online.no [62.16.192.150]) by mail.messagingengine.com (Postfix) with ESMTPA id EE558D60065; Fri, 18 Oct 2019 11:24:47 -0400 (EDT) From: Marius Bakke To: Pierre Neidhardt , Efraim Flashner Subject: Re: [bug#36000] Acknowledgement ([PATCH 1/4] guix: Add helper for generating desktop entry files.) In-Reply-To: <87y2xihyea.fsf@ambrevar.xyz> References: <20190530071138.31690-1-mail@ambrevar.xyz> <87y2xquzeb.fsf@ambrevar.xyz> <20191012184406.GD13364@E5400> <87o8yl6ayl.fsf@ambrevar.xyz> <20191012191215.GE13364@E5400> <87k192l9yp.fsf@ambrevar.xyz> <87ftjqytm0.fsf@devup.no> <87y2xihyea.fsf@ambrevar.xyz> User-Agent: Notmuch/0.29.1 (https://notmuchmail.org) Emacs/26.2 (x86_64-pc-linux-gnu) Date: Fri, 18 Oct 2019 17:24:46 +0200 Message-ID: <87d0euyt35.fsf@devup.no> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 36000 Cc: 36000@debbugs.gnu.org, Ludovic =?utf-8?Q?Court=C3=A8s?= , Nicolas Goaziou 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.7 (-) --=-=-= Content-Type: text/plain Pierre Neidhardt writes: > Sorry, my email this morning meant "core-updates", as per the other > comments in this thread! > > So should I merge on core-updates then? If you think it is ready, go for it! :-) --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAl2p2T4ACgkQoqBt8qM6 VPq4ggf9HpJP4qg/tFJI+ZbGqiQ/UOaizkO8wuv4eZk9VgPdYMZqFsoh/+TUzVB7 mLruVdyHYcLIiN74w3ZfjmLy0QQM/2fYCOkyHKQVSAeZGD7e3jHqUT306tb2I3ro 9/OU65IDNdlnzLPcQQINhVIFpKGKDTC/X84R3qHZTjHnc4yCcpU4l/aQMbWQ7vKp e6i3B/l9UGV4uWfXXhOyyz0YERn4njDWawUUJFGIYjQlbsmLRjfxVVtVHvDzuBRu /Z61Ho+sjP+1IFRHEx44zB1+hcJXp1vE/LtdZMS9jm2ewk1B6IGKmmHPCK3t6sZ7 WCbh4NwmwepchA85YBvU6hxPteNLLA== =LZTm -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 19 06:46:42 2019 Received: (at 36000) by debbugs.gnu.org; 19 Oct 2019 10:46:42 +0000 Received: from localhost ([127.0.0.1]:52011 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iLmFt-00065c-O3 for submit@debbugs.gnu.org; Sat, 19 Oct 2019 06:46:41 -0400 Received: from relay1-d.mail.gandi.net ([217.70.183.193]:56017) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iLmFp-00065Q-VS for 36000@debbugs.gnu.org; Sat, 19 Oct 2019 06:46:39 -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 relay1-d.mail.gandi.net (Postfix) with ESMTPSA id 77DED240004; Sat, 19 Oct 2019 10:46:34 +0000 (UTC) From: Pierre Neidhardt To: Marius Bakke , Efraim Flashner Subject: Re: [bug#36000] Acknowledgement ([PATCH 1/4] guix: Add helper for generating desktop entry files.) In-Reply-To: <87d0euyt35.fsf@devup.no> References: <20190530071138.31690-1-mail@ambrevar.xyz> <87y2xquzeb.fsf@ambrevar.xyz> <20191012184406.GD13364@E5400> <87o8yl6ayl.fsf@ambrevar.xyz> <20191012191215.GE13364@E5400> <87k192l9yp.fsf@ambrevar.xyz> <87ftjqytm0.fsf@devup.no> <87y2xihyea.fsf@ambrevar.xyz> <87d0euyt35.fsf@devup.no> Date: Sat, 19 Oct 2019 12:46:34 +0200 Message-ID: <87bludhv1x.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: 36000 Cc: 36000@debbugs.gnu.org, Ludovic =?utf-8?Q?Court=C3=A8s?= , Nicolas Goaziou 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+LlsMPZAEJKvom9z0l6S7zH8FAl2q6YoACgkQm9z0l6S7 zH9nhAf9Eb1c6fTi2VbDbK+65/MC3iIBmTZqY04d5nDdfMaV+0yUUhvpYcJbBLVq NICMq176FD3Hp2/0EsC8ztQ0T67YLzVoNX4FNQ09Q4zH8mqftkxRvRDm4rQ5PNxk 7XyA1wXjaJF+dlWYHPtgxYdwE5S/WhEzL7L3WKPIJVZHVZi+Z68Y7TIbNrUQ0esZ RXTz6UNllZZqrutRFHvbeHNrk3a4uK2UeQaaxtbHapiDbm37Jo0jJKWjhbWMq9U8 sTiMaJA+sBm2I2JzP9KAHKrLQSskPNPv7y8+zkhpBENXUIlIpT/KziBG0TWc//e4 Z08+ODr9arZc7hEiHSPGJAYN91IvvQ== =1h6P -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 19 06:47:24 2019 Received: (at control) by debbugs.gnu.org; 19 Oct 2019 10:47:24 +0000 Received: from localhost ([127.0.0.1]:52015 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iLmGY-000673-2c for submit@debbugs.gnu.org; Sat, 19 Oct 2019 06:47:24 -0400 Received: from relay8-d.mail.gandi.net ([217.70.183.201]:39877) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iLmGW-00066v-Rj for control@debbugs.gnu.org; Sat, 19 Oct 2019 06:47:21 -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 relay8-d.mail.gandi.net (Postfix) with ESMTPSA id F24521BF203 for ; Sat, 19 Oct 2019 10:47:18 +0000 (UTC) Date: Sat, 19 Oct 2019 12:47:18 +0200 Message-Id: <87a79xhv0p.fsf@ambrevar.xyz> To: control@debbugs.gnu.org From: Pierre Neidhardt Subject: control message for bug #36000 X-Spam-Score: 1.3 (+) 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 36000 quit Content analysis details: (1.3 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.201 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 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 1.5 FROM_SUSPICIOUS_NTLD_FP 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 36000 quit From unknown Thu Aug 14 21:46:49 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, 16 Nov 2019 12:24:03 +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