From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Kost Subject: Re: [PATCH] gnu: emacs-popup (new variable) Date: Mon, 15 Feb 2016 23:48:06 +0300 Message-ID: <877fi53dkp.fsf@gmail.com> References: <87bn7hhmfb.fsf@grrlz.net> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52653) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aVQ44-0002cN-V8 for guix-devel@gnu.org; Mon, 15 Feb 2016 15:48:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aVQ40-00064m-UV for guix-devel@gnu.org; Mon, 15 Feb 2016 15:48:12 -0500 Received: from mail-lf0-x235.google.com ([2a00:1450:4010:c07::235]:34594) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aVQ40-00064g-Ln for guix-devel@gnu.org; Mon, 15 Feb 2016 15:48:08 -0500 Received: by mail-lf0-x235.google.com with SMTP id j78so96082952lfb.1 for ; Mon, 15 Feb 2016 12:48:08 -0800 (PST) In-Reply-To: <87bn7hhmfb.fsf@grrlz.net> (Nils Gillmann's message of "Mon, 15 Feb 2016 19:13:12 +0100") 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Nils Gillmann Cc: guix-devel@gnu.org Nils Gillmann (2016-02-15 21:13 +0300) wrote: > This patch adds emacs-popup. Hi, only nitpicks from my side, so I'm going to commit this patch (no need to resend an updated version) in several days, if there will be no other comments. > From 66abaf9cfcb566e2027acf145b06963c6e52a99c Mon Sep 17 00:00:00 2001 > From: Nils Gillmann > Date: Mon, 15 Feb 2016 19:06:16 +0100 > Subject: [PATCH] gnu: add emacs-popup Add emacs-popup. typos: =E2=86=91 =E2=86=91 > * gnu/packages/emacs.scm (emacs-popup): New variable. > --- > gnu/packages/emacs.scm | 27 +++++++++++++++++++++++++++ > 1 file changed, 27 insertions(+) > > > diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm > index 48417e6..78a6af0 100644 > --- a/gnu/packages/emacs.scm > +++ b/gnu/packages/emacs.scm > @@ -5,6 +5,7 @@ > ;;; Copyright =C2=A9 2014, 2015, 2016 Alex Kost > ;;; Copyright =C2=A9 2015 Federico Beffa > ;;; Copyright =C2=A9 2015 Ricardo Wurmus > +;;; Copyright =C2=A9 2016 Nils Gillmann > ;;; > ;;; This file is part of GNU Guix. > ;;; > @@ -1452,3 +1453,29 @@ supports editing Lisp source files, @{slime-mode} = adds support for > interacting with a running Common Lisp process for compilation, > debugging, documentation lookup, and so on.") > (license license:gpl2+))) > + > +(define-public emacs-popup > + (package > + (name "emacs-popup") > + (version "0.5.3") > + (source > + (origin > + (method url-fetch) > + (uri (string-append > + "https://github.com/auto-complete/popup-el/archive/v" > + version > + ".tar.gz")) > + (file-name (string-append name "-" version ".tar.gz")) > + (sha256 > + (base32 > + "1yrgfj8y69xmcb6kwgplhq68ndm9410qwh7sd2knnd1gchpphdc0")))) > + (build-system emacs-build-system) > + (native-inputs > + `(("emacs" ,emacs-no-x))) > + (home-page "https://github.com/auto-complete/popup-el") > + (synopsis "Visual Popup User Interface for Emacs") > + (description > + "Popup.el is a visual popup user interface library for Emacs. > + This provides a basic API and common UI widgets such as popup =E2=86=91=E2=86=91 Redundant spaces. > +tooltips and popup menus.") > + (license license:gpl3+))) --=20 Alex