From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthew Jordan Subject: Re: [Patch] Updated patch for emacs-helm Date: Fri, 03 Jun 2016 00:32:24 -0400 Message-ID: <87k2i6hoyv.fsf@mailerver.i-did-not-set--mail-host-address--so-tickle-me> References: <87lh2qx8qw.fsf@mailerver.i-did-not-set--mail-host-address--so-tickle-me> <87r3cfnbi8.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56427) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b8gns-00008B-S6 for guix-devel@gnu.org; Fri, 03 Jun 2016 00:33:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b8gno-0008Px-J9 for guix-devel@gnu.org; Fri, 03 Jun 2016 00:33:47 -0400 Received: from forward3o.cmail.yandex.net ([37.9.109.247]:35240) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b8gnn-0008JT-2B for guix-devel@gnu.org; Fri, 03 Jun 2016 00:33:44 -0400 In-reply-to: <87r3cfnbi8.fsf@gmail.com> 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: Alex Kost Cc: guix-devel --=-=-= Content-Type: text/plain Good Day, I have updated the package in accordance with the suggestions made. --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-Add-emacs-helm.patch Content-Description: Patch to add emacs-helm package. Content-Transfer-Encoding: quoted-printable >From dad3c30f9c959d127a5a62567a454e192ed55149 Mon Sep 17 00:00:00 2001 From: Matthew Jordan Date: Wed, 18 May 2016 17:39:45 -0400 Subject: [PATCH] gnu: Add emacs-helm. * gnu/packages/emacs.scm (emacs-helm): 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 b7c0a1f..d235fca 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -10,6 +10,7 @@ ;;; Copyright =C2=A9 2015, 2016 Christopher Allan Webber ;;; Copyright =C2=A9 2016 humanitiesNerd ;;; Copyright =C2=A9 2016 Efraim Flashner +;;; Copyright =C2=A9 2016 Matthew Jordan ;;; ;;; This file is part of GNU Guix. ;;; @@ -1795,3 +1796,32 @@ work on lists, strings and vectors.") Emacs default configuration in uncontroversial ways that nearly everyone= can agree upon.") (license license:gpl3+))) + +(define-public emacs-helm + (package + (name "emacs-helm") + (version "1.9.6") + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/" name "/helm/archive/v" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0fc897rwf1fm2m7jrsikkgcyzhngfcysxfmzchpwzfj6v9sb5rl9"))= )) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-async" ,emacs-async) + ("emacs-popup" ,emacs-popup))) + (home-page "https://emacs-helm.github.io/helm/") + (synopsis "Incremental completion and selection narrowing +framework for Emacs") + (description "Helm is incremental completion and selection narrowing +framework for Emacs. It will help steer you in the right direction when= you're +looking for stuff in Emacs (like buffers, files, etc). Helm is a fork o= f +anything.el originally written by Tamas Patrovic and can be considered t= o be +its successor. Helm sets out to clean up the legacy code in @code{anyth= ing.el} and +provide a cleaner, leaner and more modular tool, that's not tied in the = trap +of backward compatibility.") + (license license:gpl3+))) --=20 2.8.3 --=-=-= Content-Type: text/plain Respectfully, -- Matthew Jordan Sent with my mu4e --=-=-=--