From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59274) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d6sZZ-0003VB-H9 for guix-patches@gnu.org; Sat, 06 May 2017 01:48:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d6sZW-0000Mq-EW for guix-patches@gnu.org; Sat, 06 May 2017 01:48:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:58858) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d6sZW-0000Ml-B3 for guix-patches@gnu.org; Sat, 06 May 2017 01:48:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d6sZW-0003Ki-1T for guix-patches@gnu.org; Sat, 06 May 2017 01:48:02 -0400 Subject: bug#26794: Add emacs-evil-surround Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59201) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d6sZK-0003Uz-2H for guix-patches@gnu.org; Sat, 06 May 2017 01:47:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d6sZG-0000Hh-Uh for guix-patches@gnu.org; Sat, 06 May 2017 01:47:50 -0400 Received: from o177.p8.mailjet.com ([87.253.233.177]:48400) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1d6sZG-0000HK-Mh for guix-patches@gnu.org; Sat, 06 May 2017 01:47:46 -0400 Message-Id: MIME-Version: 1.0 From: Arun Isaac Date: Sat, 06 May 2017 11:17:23 +0530 Content-Type: multipart/mixed; boundary="=-=-=" 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: 26794@debbugs.gnu.org --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Please find attached a patch adding emacs-evil-surround. = --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-Add-emacs-evil-surround.patch >From 3d19ee3def7bb2e64751ed1dfcf53316351575c1 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Sat, 6 May 2017 11:14:53 +0530 Subject: [PATCH] gnu: Add emacs-evil-surround. * gnu/packages/emacs.scm (emacs-evil-surround): New variable. --- gnu/packages/emacs.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index fac04e2c9..05f288c55 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -4580,3 +4580,26 @@ with gnuplot.") functions which allows users to transpose windows arrangement in currently selected frame.") (license license:bsd-2))) + +(define-public emacs-evil-surround + (package + (name "emacs-evil-surround") + (version "1.0.0") + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/timcharper/evil-surround/archive/v" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0p572jgic3q1ia1nz37kclir729ay6i2f4sa7wnaapyxly2lwb3r")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-evil" ,emacs-evil))) + (home-page "https://github.com/timcharper/evil-surround") + (synopsis "Easily modify surrounding parantheses and quotes") + (description "@code{emacs-evil-surround} allows easy deletion, change and +addition of surrounding pairs, such as parantheses and quotes, in evil mode.") + (license license:gpl3+))) -- 2.12.2 --=-=-=--