From unknown Sun Jun 22 22:46:59 2025 X-Loop: help-debbugs@gnu.org Subject: bug#27050: [PATCH 1/1] gnu: Add emacs-restclient. Resent-From: James Richardson Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 24 May 2017 05:32:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 27050 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 27050@debbugs.gnu.org Cc: James Richardson X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.149560388617344 (code B ref -1); Wed, 24 May 2017 05:32:01 +0000 Received: (at submit) by debbugs.gnu.org; 24 May 2017 05:31:26 +0000 Received: from localhost ([127.0.0.1]:35399 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dDOtK-0004Vf-Fd for submit@debbugs.gnu.org; Wed, 24 May 2017 01:31:26 -0400 Received: from eggs.gnu.org ([208.118.235.92]:37539) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dDOpF-0004KW-58 for submit@debbugs.gnu.org; Wed, 24 May 2017 01:27:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dDOp8-0001nY-Rr for submit@debbugs.gnu.org; Wed, 24 May 2017 01:27:07 -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.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:49909) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dDOp8-0001nS-Of for submit@debbugs.gnu.org; Wed, 24 May 2017 01:27:06 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56743) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dDOp7-00029w-AY for guix-patches@gnu.org; Wed, 24 May 2017 01:27:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dDOp3-0001lC-7r for guix-patches@gnu.org; Wed, 24 May 2017 01:27:05 -0400 Received: from gandalf.jamestechnotes.com ([45.79.219.18]:58852) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dDOp3-0001kv-3T for guix-patches@gnu.org; Wed, 24 May 2017 01:27:01 -0400 Received: from cpe-75-190-233-89.nc.res.rr.com ([75.190.233.89] helo=thor.lab01.jamestechnotes.com) by gandalf.jamestechnotes.com with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1dDOp1-0003GT-8b; Wed, 24 May 2017 01:26:59 -0400 Received: from james by thor.lab01.jamestechnotes.com with local (Exim 4.87) (envelope-from ) id 1dDOov-0001ea-Ps; Wed, 24 May 2017 01:26:53 -0400 From: James Richardson Date: Wed, 24 May 2017 01:26:44 -0400 Message-Id: <20170524052644.6293-1-james@jamestechnotes.com> X-Mailer: git-send-email 2.11.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] [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.1 (----) X-Mailman-Approved-At: Wed, 24 May 2017 01:31:24 -0400 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: -4.1 (----) * 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 ;;; Copyright © 2017 George Clemmer ;;; Copyright © 2017 Feng Shu +;;; Copyright © 2017 James Richardson ;;; ;;; 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 From unknown Sun Jun 22 22:46:59 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: James Richardson Subject: bug#27050: closed (Re: bug#27050: [PATCH 1/1] gnu: Add emacs-restclient.) Message-ID: References: <87poesrcte.fsf@gnu.org> <20170524052644.6293-1-james@jamestechnotes.com> X-Gnu-PR-Message: they-closed 27050 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 27050@debbugs.gnu.org Date: Sun, 28 May 2017 19:40:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1496000402-24961-1" This is a multi-part message in MIME format... ------------=_1496000402-24961-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #27050: [PATCH 1/1] gnu: Add emacs-restclient. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 27050@debbugs.gnu.org. --=20 27050: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D27050 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1496000402-24961-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 27050-done) by debbugs.gnu.org; 28 May 2017 19:39:23 +0000 Received: from localhost ([127.0.0.1]:42026 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dF427-0006Tc-9r for submit@debbugs.gnu.org; Sun, 28 May 2017 15:39:23 -0400 Received: from eggs.gnu.org ([208.118.235.92]:55994) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dF425-0006TP-JK for 27050-done@debbugs.gnu.org; Sun, 28 May 2017 15:39:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dF41w-0001hs-F1 for 27050-done@debbugs.gnu.org; Sun, 28 May 2017 15:39:16 -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.0 required=5.0 tests=BAYES_20,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:48804) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dF41w-0001ho-CF; Sun, 28 May 2017 15:39:12 -0400 Received: from reverse-83.fdn.fr ([80.67.176.83]:50914 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1dF41v-0002M6-OX; Sun, 28 May 2017 15:39:12 -0400 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) To: James Richardson Subject: Re: bug#27050: [PATCH 1/1] gnu: Add emacs-restclient. References: <20170524052644.6293-1-james@jamestechnotes.com> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 9 Prairial an 225 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-unknown-linux-gnu Date: Sun, 28 May 2017 21:39:09 +0200 In-Reply-To: <20170524052644.6293-1-james@jamestechnotes.com> (James Richardson's message of "Wed, 24 May 2017 01:26:44 -0400") Message-ID: <87poesrcte.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (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-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 27050-done Cc: 27050-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: -5.0 (-----) James Richardson 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 webservi= ces from > +within Emacs. Restclient runs queries from a plan-text query sheet, dis= plays > +results pretty-printed in XML or JSON with @code{restclient-mode}") I turned this into a sentenced and committed. Thanks! Ludo=E2=80=99. ------------=_1496000402-24961-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 24 May 2017 05:31:26 +0000 Received: from localhost ([127.0.0.1]:35399 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dDOtK-0004Vf-Fd for submit@debbugs.gnu.org; Wed, 24 May 2017 01:31:26 -0400 Received: from eggs.gnu.org ([208.118.235.92]:37539) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dDOpF-0004KW-58 for submit@debbugs.gnu.org; Wed, 24 May 2017 01:27:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dDOp8-0001nY-Rr for submit@debbugs.gnu.org; Wed, 24 May 2017 01:27:07 -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.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:49909) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dDOp8-0001nS-Of for submit@debbugs.gnu.org; Wed, 24 May 2017 01:27:06 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56743) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dDOp7-00029w-AY for guix-patches@gnu.org; Wed, 24 May 2017 01:27:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dDOp3-0001lC-7r for guix-patches@gnu.org; Wed, 24 May 2017 01:27:05 -0400 Received: from gandalf.jamestechnotes.com ([45.79.219.18]:58852) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dDOp3-0001kv-3T for guix-patches@gnu.org; Wed, 24 May 2017 01:27:01 -0400 Received: from cpe-75-190-233-89.nc.res.rr.com ([75.190.233.89] helo=thor.lab01.jamestechnotes.com) by gandalf.jamestechnotes.com with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1dDOp1-0003GT-8b; Wed, 24 May 2017 01:26:59 -0400 Received: from james by thor.lab01.jamestechnotes.com with local (Exim 4.87) (envelope-from ) id 1dDOov-0001ea-Ps; Wed, 24 May 2017 01:26:53 -0400 From: James Richardson To: guix-patches@gnu.org Subject: [PATCH 1/1] gnu: Add emacs-restclient. Date: Wed, 24 May 2017 01:26:44 -0400 Message-Id: <20170524052644.6293-1-james@jamestechnotes.com> X-Mailer: git-send-email 2.11.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] [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.1 (----) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Wed, 24 May 2017 01:31:24 -0400 Cc: James Richardson 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: -4.1 (----) * 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 ;;; Copyright © 2017 George Clemmer ;;; Copyright © 2017 Feng Shu +;;; Copyright © 2017 James Richardson ;;; ;;; 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 ------------=_1496000402-24961-1--