From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51082) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fKrHn-0002I1-Vb for guix-patches@gnu.org; Mon, 21 May 2018 16:20:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fKrHm-0007Ls-TE for guix-patches@gnu.org; Mon, 21 May 2018 16:20:03 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:35355) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fKrHm-0007Lm-P8 for guix-patches@gnu.org; Mon, 21 May 2018 16:20:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fKrHm-0008Sn-J7 for guix-patches@gnu.org; Mon, 21 May 2018 16:20:02 -0400 Subject: [bug#31517] [PATCH 02/21] gnu: emacs-esh-autosuggest: New variable. Resent-Message-ID: References: <20180518184910.9987-1-ambrevar@gmail.com> <20180518184910.9987-19-ambrevar@gmail.com> From: Ricardo Wurmus In-reply-to: <20180518184910.9987-19-ambrevar@gmail.com> Date: Mon, 21 May 2018 22:19:37 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Message-ID: <87y3gcoj6u.fsf@elephly.net> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Pierre Neidhardt Cc: 31517@debbugs.gnu.org Hi Pierre, > * gnu/packages/emacs.scm (emacs-esh-autosuggest): 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 10bf4c355..b84c58e2e 100644 > --- a/gnu/packages/emacs.scm > +++ b/gnu/packages/emacs.scm > @@ -10487,3 +10487,31 @@ daemons (services) for those getting tired of ty= ping out @code{sudo service > my_thing reload} all the time. It's offers a consistent UI over differe= nt > init systems.") > (license license:gpl3+))) > + > +(define-public emacs-esh-autosuggest > + (package > + (name "emacs-esh-autosuggest") > + (version "2.0.0") > + (source > + (origin > + (method url-fetch) > + (uri (string-append "https://github.com/dieggsy/esh-autosuggest/a= rchive/" > + version ".tar.gz")) > + (file-name (string-append name "-" version "-checkout")) The same comment as for =E2=80=9Cemacs-daemons=E2=80=9D applies here. Coul= d you please change this in all of your patches? --=20 Ricardo