GNU bug report logs - #55147
[PATCH] gnu: emacs-plz: Update to 0.1-pre-2-1d3efc03.

Previous Next

Package: guix-patches;

Reported by: Aleksandr Vityazev <avityazev <at> posteo.org>

Date: Wed, 27 Apr 2022 11:55:01 UTC

Severity: normal

Tags: patch

Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 55147 in the body.
You can then email your comments to 55147 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#55147; Package guix-patches. (Wed, 27 Apr 2022 11:55:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Aleksandr Vityazev <avityazev <at> posteo.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 27 Apr 2022 11:55:01 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Aleksandr Vityazev <avityazev <at> posteo.org>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: emacs-plz: Update to 0.1-pre-2-1d3efc03.
Date: Wed, 27 Apr 2022 11:53:57 +0000
* gnu/packages/emacs-xyz.scm (emacs-plz): Update to 0.1-pre-2-1d3efc03.
---
 gnu/packages/emacs-xyz.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index db1663c677..2e6f841b07 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -15579,8 +15579,8 @@ (define-public emacs-emamux
     (license license:gpl3+)))
 
 (define-public emacs-plz
-  (let ((commit "7e456638a651bab3a814e3ea81742dd917509cbb")
-        (revision "1"))
+  (let ((commit "1d3efc036c9fdb7242499575e4d6bdcc928b0539")
+        (revision "2"))
     (package
       (name "emacs-plz")
       (version (git-version "0.1-pre" revision commit))
@@ -15592,7 +15592,7 @@ (define-public emacs-plz
                (commit commit)))
          (file-name (git-file-name name version))
          (sha256
-          (base32 "05kgxrps1s20im5hhq799nrs3615bvssm4r0ysgmwm203mmzsjgj"))))
+          (base32 "1vfa4igsvgspfx6qqzgdxb86hgbkcdr8hf63hr98yqfh7dngqjnz"))))
       (build-system emacs-build-system)
       (inputs (list curl))
       (home-page "https://github.com/alphapapa/plz.el")
-- 
2.35.1



-- 

Aleksandr Vityazev




Information forwarded to guix-patches <at> gnu.org:
bug#55147; Package guix-patches. (Sun, 15 May 2022 19:38:02 GMT) Full text and rfc822 format available.

Message #8 received at 55147 <at> debbugs.gnu.org (full text, mbox):

From: Aleksandr Vityazev <avityazev <at> posteo.org>
To: 55147 <at> debbugs.gnu.org
Subject: [PATCH]v2 gnu: emacs-plz: Update to 0.1.
Date: Sun, 15 May 2022 19:37:22 +0000
* gnu/packages/emacs-xyz (emacs-plz): Update to 0.1.
[source]: Use elpa instead of github.
---
 gnu/packages/emacs-xyz.scm | 38 +++++++++++++++++---------------------
 1 file changed, 17 insertions(+), 21 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 8a319fc0ff..7a5c6235fc 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -15710,29 +15710,25 @@ (define-public emacs-emamux
     (license license:gpl3+)))
 
 (define-public emacs-plz
-  (let ((commit "7e456638a651bab3a814e3ea81742dd917509cbb")
-        (revision "1"))
-    (package
-      (name "emacs-plz")
-      (version (git-version "0.1-pre" revision commit))
-      (source
-       (origin
-         (method git-fetch)
-         (uri (git-reference
-               (url "https://github.com/alphapapa/plz.el")
-               (commit commit)))
-         (file-name (git-file-name name version))
-         (sha256
-          (base32 "05kgxrps1s20im5hhq799nrs3615bvssm4r0ysgmwm203mmzsjgj"))))
-      (build-system emacs-build-system)
-      (inputs (list curl))
-      (home-page "https://github.com/alphapapa/plz.el")
-      (synopsis "HTTP library for Emacs")
-      (description
-       "This package provides HTTP library for Emacs.  It uses curl as
+  (package
+    (name "emacs-plz")
+    (version "0.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://elpa.gnu.org/packages/plz-" version ".tar"))
+       (sha256
+        (base32 "083qz6kfg4q8xy3vsfwlk2g9vbg8iym2axmyhh54naivrc096ghc"))))
+    (build-system emacs-build-system)
+    (inputs (list curl))
+    (home-page "https://github.com/alphapapa/plz.el")
+    (synopsis "HTTP library for Emacs")
+    (description
+     "This package provides HTTP library for Emacs.  It uses curl as
 a backend, which avoids some of the issues with using Emacs’s built-in url
 library.")
-      (license license:gpl3+))))
+    (license license:gpl3+)))
 
 (define-public emacs-ement
   (let ((commit "c951737dc855604aba389166bb0e7366afadc533")
-- 
2.36.0



-- 

Aleksandr Vityazev




Reply sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
You have taken responsibility. (Tue, 07 Jun 2022 19:47:01 GMT) Full text and rfc822 format available.

Notification sent to Aleksandr Vityazev <avityazev <at> posteo.org>:
bug acknowledged by developer. (Tue, 07 Jun 2022 19:47:01 GMT) Full text and rfc822 format available.

Message #13 received at 55147-done <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: Aleksandr Vityazev <avityazev <at> posteo.org>
Cc: 55147-done <at> debbugs.gnu.org
Subject: Re: [bug#55147] [PATCH]v2 gnu: emacs-plz: Update to 0.1.
Date: Tue, 07 Jun 2022 21:46:18 +0200
Hello,

Aleksandr Vityazev <avityazev <at> posteo.org> writes:

> * gnu/packages/emacs-xyz (emacs-plz): Update to 0.1.
> [source]: Use elpa instead of github.

We refrain from using ELPA as upstream because they have the habit of
removing old tarballs without warnings.

So I applied your patch, with Github as upstream.

Thank you.

Regards,
-- 
Nicolas Goaziou




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 06 Jul 2022 11:24:08 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 294 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.