emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#27050: closed ([PATCH 1/1] gnu: Add emacs-restclie


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#27050: closed ([PATCH 1/1] gnu: Add emacs-restclient.)
Date: Sun, 28 May 2017 19:40:02 +0000

Your message dated Sun, 28 May 2017 21:39:09 +0200
with message-id <address@hidden>
and subject line Re: bug#27050: [PATCH 1/1] gnu: Add emacs-restclient.
has caused the debbugs.gnu.org bug report #27050,
regarding [PATCH 1/1] gnu: Add emacs-restclient.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
27050: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=27050
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH 1/1] gnu: Add emacs-restclient. Date: Wed, 24 May 2017 01:26:44 -0400
* gnu/packages/emacs.scm (emacs-restclient): New variable.
---
 gnu/packages/emacs.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index a59a4ca69..176df7105 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -25,6 +25,7 @@
 ;;; Copyright © 2017 Kei Kebreau <address@hidden>
 ;;; Copyright © 2017 George Clemmer <address@hidden>
 ;;; Copyright © 2017 Feng Shu <address@hidden>
+;;; Copyright © 2017 James Richardson <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -4836,3 +4837,30 @@ Emacs.")
 using ERT.  It assumes a certain test structure setup and can therefore make
 running tests easier.")
       (license license:gpl3+))))
+
+(define-public emacs-restclient
+  (let ((commit "07a3888bb36d0e29608142ebe743b4362b800f40")
+        (revision "1"))                 ;Guix package revision,
+                                        ;upstream doesn't have official 
releases
+    (package
+      (name "emacs-restclient")
+      (version (string-append revision "."
+                              (string-take commit 7)))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/pashky/restclient.el.git";)
+                      (commit commit)))
+                (sha256
+                 (base32
+                  "00lmjhb5im1kgrp54yipf1h9pshxzgjlg71yf2rq5n973gvb0w0q"))))
+      (build-system emacs-build-system)
+      (propagated-inputs
+       `(("emacs-helm" ,emacs-helm)))
+      (home-page "https://github.com/pashky/restclient.el";)
+      (synopsis "Explore and test HTTP REST webservices")
+      (description
+       "A tool that allows testing and exploration of HTTP REST webservices 
from
+within Emacs.  Restclient runs queries from a plan-text query sheet, displays
+results pretty-printed in XML or JSON with @code{restclient-mode}")
+      (license license:public-domain))))
-- 
2.13.0




--- End Message ---
--- Begin Message --- Subject: Re: bug#27050: [PATCH 1/1] gnu: Add emacs-restclient. Date: Sun, 28 May 2017 21:39:09 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux)
James Richardson <address@hidden> skribis:

> * gnu/packages/emacs.scm (emacs-restclient): New variable.

[...]

> +      (home-page "https://github.com/pashky/restclient.el";)
> +      (synopsis "Explore and test HTTP REST webservices")
> +      (description
> +       "A tool that allows testing and exploration of HTTP REST webservices 
> from
> +within Emacs.  Restclient runs queries from a plan-text query sheet, displays
> +results pretty-printed in XML or JSON with @code{restclient-mode}")

I turned this into a sentenced and committed.  Thanks!

Ludo’.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]