From mboxrd@z Thu Jan 1 00:00:00 1970 From: Roel Janssen Subject: [PATCH] gnu: Add emacs-eprime Date: Sun, 03 Jul 2016 18:57:12 +0200 Message-ID: <87r3bau0bb.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42632) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bJkhc-000808-2P for guix-devel@gnu.org; Sun, 03 Jul 2016 12:57:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bJkhX-0006ki-O0 for guix-devel@gnu.org; Sun, 03 Jul 2016 12:57:03 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:37410) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bJkhX-0006kV-KD for guix-devel@gnu.org; Sun, 03 Jul 2016 12:56:59 -0400 Received: from [145.15.244.32] (port=46714 helo=roel-tp) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1bJkhV-0003Bg-T6 for guix-devel@gnu.org; Sun, 03 Jul 2016 12:56:58 -0400 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel Dear Guix, Here's a fairly trivial patch to add an eprime-mode for Emacs. The author hasn't made a release (at least not on Github), so I grabbed the source by the most recent commit (June 27, 2014), and used a version number compatible with how it is used in MELPA. Hopefully this is OK to push. Thank you for your time. Kind regards, Roel Janssen >From 725447eb40aad3be64d9caade294927d1a7877f1 Mon Sep 17 00:00:00 2001 From: Roel Janssen Date: Sun, 3 Jul 2016 18:53:33 +0200 Subject: [PATCH] gnu: Add emacs-eprime * gnu/packages/emacs.scm (emacs-eprime): New variable. --- gnu/packages/emacs.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index f95e7b0..5291c2c 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -2052,6 +2052,28 @@ Emacs default configuration in uncontroversial ways that nearly everyone can agree upon.") (license license:gpl3+))) +(define-public emacs-eprime + (let ((commit "17a481af26496be91c07139a9bfc05cfe722506f")) + (package + (name "emacs-eprime") + (version (string-append "20140513-" (string-take commit 7))) + (source (origin + (method url-fetch) + (uri (string-append "https://raw.githubusercontent.com" + "/AndrewHynes/eprime-mode/" + commit "/eprime-mode.el")) + (file-name (string-append "eprime-" version ".el")) + (sha256 + (base32 + "0v68lggkyq7kbcr9zyi573m2g2x251xy3jadlaw8kx02l8krwq8d")))) + (build-system emacs-build-system) + (home-page "https://github.com/AndrewHynes/eprime-mode") + (synopsis "E-prime checking mode for Emacs") + (description "This package provides an E-prime checking mode for Emacs +that highlights non-conforming text. The subset of the English language called +E-Prime forbids the use of the \"to be\" form to strengthen your writing.") + (license license:gpl3+)))) + (define-public emacs-smex (package (name "emacs-smex") -- 2.9.0