GNU bug report logs - #34724
Guix patch: emacs-debpaste

Previous Next

Package: guix-patches;

Reported by: Brian Leung <bkleung89 <at> gmail.com>

Date: Mon, 4 Mar 2019 00:48:02 UTC

Severity: normal

Done: Ludovic Courtès <ludo <at> gnu.org>

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 34724 in the body.
You can then email your comments to 34724 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#34724; Package guix-patches. (Mon, 04 Mar 2019 00:48:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Brian Leung <bkleung89 <at> gmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Mon, 04 Mar 2019 00:48:02 GMT) Full text and rfc822 format available.

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

From: Brian Leung <bkleung89 <at> gmail.com>
To: guix-patches <at> gnu.org
Subject: Guix patch: emacs-debpaste
Date: Mon, 4 Mar 2019 01:46:27 +0100
[Message part 1 (text/plain, inline)]
See attached.
[Message part 2 (text/html, inline)]
[0003-gnu-Add-emacs-debpaste.patch (text/x-patch, attachment)]
[0002-gnu-Add-emacs-xml-rpc.patch (text/x-patch, attachment)]

Information forwarded to guix-patches <at> gnu.org:
bug#34724; Package guix-patches. (Mon, 04 Mar 2019 02:26:02 GMT) Full text and rfc822 format available.

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

From: Brian Leung <bkleung89 <at> gmail.com>
To: 34724 <at> debbugs.gnu.org
Subject: emacs-debpaste addendum
Date: Mon, 4 Mar 2019 03:24:43 +0100
[Message part 1 (text/plain, inline)]
For the emacs-xml-rpc package, I elected not to use the Release versions
since they don't work properly with Emacs 25 and up.
[Message part 2 (text/html, inline)]

Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Mon, 11 Mar 2019 22:08:02 GMT) Full text and rfc822 format available.

Notification sent to Brian Leung <bkleung89 <at> gmail.com>:
bug acknowledged by developer. (Mon, 11 Mar 2019 22:08:02 GMT) Full text and rfc822 format available.

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

From: Ludovic Courtès <ludo <at> gnu.org>
To: Brian Leung <bkleung89 <at> gmail.com>
Cc: 34724-done <at> debbugs.gnu.org
Subject: Re: [bug#34724] Guix patch: emacs-debpaste
Date: Mon, 11 Mar 2019 23:07:29 +0100
[Message part 1 (text/plain, inline)]
Hi Brian,

I applied the first patch with these changes to address issues reported
by ‘guix lint’:

[Message part 2 (text/x-patch, inline)]
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 2e6cb7c627..b15917113b 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -11363,7 +11363,7 @@ Org-mode.  It features:
         (revision "1"))
     (package
       (name "emacs-xml-rpc")
-      (version (git-version "0" revision commit))
+      (version (git-version "1.6.12" revision commit))
       (source
        (origin
          (method git-fetch)
@@ -11376,13 +11376,13 @@ Org-mode.  It features:
            "0xa54z52rsfl3n0xgmbycj4zazp8ksgdwcq56swzs6wp72zlalmj"))))
       (build-system emacs-build-system)
       (home-page "https://github.com/hexmode/xml-rpc-el")
-      (synopsis "This is an XML-RPC client implementation in Elisp,
-capable of both synchronous and asynchronous method calls using the url
-package's async retrieval functionality.")
-      (description "@file{xml-rpc.el} represents XML-RPC datatypes as Lisp values,
-automatically converting to and from the XML datastructures as needed, both
-for method parameters and return values, making using XML-RPC methods fairly
-transparent to the Lisp code.")
+      (synopsis "XML-RPC client for Emacs")
+      (description "This package provides an XML-RPC client for Emacs capable
+of both synchronous and asynchronous method calls using the @code{url}
+package's async retrieval functionality.  @file{xml-rpc.el} represents XML-RPC
+datatypes as Lisp values, automatically converting to and from the XML
+datastructures as needed, both for method parameters and return values, making
+using XML-RPC methods fairly transparent to the Lisp code.")
       (license license:gpl3+))))
 
 (define-public emacs-fish-completion
[Message part 3 (text/plain, inline)]
Likewise for the second patch:

[Message part 4 (text/x-patch, inline)]
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 8d521cffce..69ea0b3b74 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -11362,24 +11362,23 @@ Org-mode.  It features:
   (package
     (name "emacs-debpaste")
     (version "0.1.5")
+    (home-page "https://github.com/alezost/debpaste.el")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append
-             "https://github.com/alezost/debpaste.el/archive/v"
-             version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference (url home-page)
+                           (commit (string-append "v" version))))
        (file-name (string-append name "-" version ".tar.gz"))
        (sha256
         (base32
-         "16qqa32ys3gvxf9x1va2cnjcmw1zvbwgc16pqasgrf4mh7qwsd9b"))))
+         "1wi70r56pd5z0x4dp4m58p9asq03j74kdm4fi9vai83vsl2z9amq"))))
     (build-system emacs-build-system)
     (propagated-inputs
      `(("emacs-xml-rpc" ,emacs-xml-rpc)))
-    (home-page "https://github.com/alezost/debpaste.el")
-    (synopsis "This package provides an interface for receiving, posting and
-deleting pastes from the Debian Pastezone.")
-    (description "Debpaste is an Emacs interface for the Debian Pastezone.
-It provides receiving, posting and deleting pastes using XML-RPC.")
+    (synopsis "Manipulate pastes from the Debian Pastezone")
+    (description "Debpaste is an Emacs interface for the Debian Pastezone,
+allowing you to receive, post, and delete pastes.  It communicates with the
+server using XML-RPC.")
     (license license:gpl3+)))
 
 (define-public emacs-xml-rpc
[Message part 5 (text/plain, inline)]
I also tweaked the commit log to follow our conventions.

Please do not miss
<https://www.gnu.org/software/guix/manual/en/html_node/Submitting-Patches.html>
for your future contributions.

Thank you!

Ludo’.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 09 Apr 2019 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 5 years and 18 days ago.

Previous Next


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