From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH] gnu: Add emacs-auto-complete Date: Mon, 29 Aug 2016 00:32:59 +0000 Message-ID: <87d1ksjtxg.fsf@we.make.ritual.n0.is> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38298) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1beAVa-0006Bw-Dv for guix-devel@gnu.org; Sun, 28 Aug 2016 20:33:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1beAVZ-0007Dx-9s for guix-devel@gnu.org; Sun, 28 Aug 2016 20:33:02 -0400 Received: from mithlond.libertad.in-berlin.de ([2001:67c:1400:2490::1]:44482 helo=beleriand.n0.is) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1beAVY-0007Dt-W5 for guix-devel@gnu.org; Sun, 28 Aug 2016 20:33:01 -0400 Received: by beleriand.n0.is (OpenSMTPD) with ESMTPSA id 647ade15 TLS version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO for ; Mon, 29 Aug 2016 00:33:00 +0000 (UTC) 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@gnu.org --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0004-gnu-Add-emacs-auto-complete.patch >From a415af4e28055c98737aec967921a04390180c57 Mon Sep 17 00:00:00 2001 From: ng0 Date: Mon, 29 Aug 2016 00:16:52 +0000 Subject: [PATCH 4/4] gnu: Add emacs-auto-complete. * gnu/packages/emacs.scm (emacs-auto-complete): New variable. --- gnu/packages/emacs.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 311f484..c6d2333 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -3051,3 +3051,32 @@ Flx has support for ido (interactively do things) through flx-ido.") "Cyberpunk color theme for the emacs 24+ built-in color theme support known loosely as deftheme. Many mode-specific customizations are included.") (license license:gpl3+)))) + +(define-public emacs-auto-complete + (let ((upstream-name "auto-complete")) + (package + (name "emacs-auto-complete") + (version "1.5.1") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/" upstream-name "/" + upstream-name "/archive/v" version ".tar.gz")) + (sha256 + (base32 + "1jvq4lj00hwml75lpmlciazy8f3bbg13gffsfnl835p4qd8l7yqv")) + (file-name (string-append name "-" version ".tar.gz")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-popup" ,emacs-popup))) + (native-inputs + `(("emacs" ,emacs-minimal))) + (home-page "https://github.com/auto-complete/auto-complete") + (synopsis "Intelligent auto-completion extension for Emacs") + (description + "Auto-Complete is an intelligent auto-completion extension for Emacs. +It extends the standard Emacs completion interface and provides an environment +that allows users to concentrate more on their own work. Its features are: +a visual interface, reduce overhead of completion by using statistic method, +extensibility.") + (license license:gpl3+)))) -- 2.9.3 --=-=-= Content-Type: text/plain -- ng0 For non-prism friendly talk find me on http://www.psyced.org --=-=-=--