From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54719) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fJkS8-0007fn-HD for guix-patches@gnu.org; Fri, 18 May 2018 14:50:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fJkS7-0000cn-H1 for guix-patches@gnu.org; Fri, 18 May 2018 14:50:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:60498) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fJkS7-0000cc-Di for guix-patches@gnu.org; Fri, 18 May 2018 14:50:07 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fJkS7-0001S4-70 for guix-patches@gnu.org; Fri, 18 May 2018 14:50:07 -0400 Subject: [bug#31503] [PATCH 07/21] gnu: emacs-evil-org: New variable. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54212) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fJkRK-0006Pe-Ek for guix-patches@gnu.org; Fri, 18 May 2018 14:49:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fJkRJ-0008H8-Gl for guix-patches@gnu.org; Fri, 18 May 2018 14:49:18 -0400 Received: from mail-wr0-x233.google.com ([2a00:1450:400c:c0c::233]:34137) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fJkRJ-0008Gi-8W for guix-patches@gnu.org; Fri, 18 May 2018 14:49:17 -0400 Received: by mail-wr0-x233.google.com with SMTP id p18-v6so10172187wrm.1 for ; Fri, 18 May 2018 11:49:17 -0700 (PDT) Received: from mimimi.home (2a01cb040a37a0005adf9a0845f647b3.ipv6.abo.wanadoo.fr. [2a01:cb04:a37:a000:5adf:9a08:45f6:47b3]) by smtp.gmail.com with ESMTPSA id q2-v6sm8369863wrj.57.2018.05.18.11.49.15 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 18 May 2018 11:49:15 -0700 (PDT) From: Pierre Neidhardt Date: Fri, 18 May 2018 20:48:53 +0200 Message-Id: <20180518184910.9987-4-ambrevar@gmail.com> In-Reply-To: <20180518184910.9987-1-ambrevar@gmail.com> References: <20180518184910.9987-1-ambrevar@gmail.com> 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: 31503@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-evil-org): New variable. --- gnu/packages/emacs.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 94f3895e8..d8e8f6a34 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -10619,3 +10619,33 @@ in Emacs+Evil. It allows you to select and edit matches interactively, integrating @code{iedit-mode} into Evil mode with an attempt at sensible defaults.") (license license:gpl3+))) + +(define-public emacs-evil-org + (package + (name "emacs-evil-org") + (version "20180323.1606") + (source + (origin + (method url-fetch) + (uri (string-append + "https://melpa.org/packages/evil-org-" + version + ".tar")) + (sha256 + (base32 + "06aindvpg8cv8ky4yylfp6z01l25n87rscfh1b1cw3nrgaiky7dn")))) + (build-system emacs-build-system) + (propagated-inputs `(("emacs-evil" ,emacs-evil))) + (home-page + "https://github.com/Somelauw/evil-org-mode") + (synopsis "Evil keybindings for Org mode") + (description + "Supplemental Evil mode key-bindings to Emacs org-mode. Features: +- normal, visual and insert mode bindings +- key bindings organised in key themes +- operators like > and < to work on headings +- text objects +- table support +- calendar (date selection) support +- agenda support") + (license license:gpl3+))) -- 2.17.0