From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Kost Subject: Re: [PATCH 2/4] emacs-pkg-info Date: Mon, 30 May 2016 13:13:51 +0300 Message-ID: <874m9f26qo.fsf@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56419) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b7KCk-0002s4-QI for guix-devel@gnu.org; Mon, 30 May 2016 06:13:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b7KCi-0001rC-PG for guix-devel@gnu.org; Mon, 30 May 2016 06:13:49 -0400 Received: from mail-lf0-x241.google.com ([2a00:1450:4010:c07::241]:36164) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b7KCi-0001r4-HS for guix-devel@gnu.org; Mon, 30 May 2016 06:13:48 -0400 Received: by mail-lf0-x241.google.com with SMTP id h68so6419482lfh.3 for ; Mon, 30 May 2016 03:13:48 -0700 (PDT) In-Reply-To: (catonano@gmail.com's message of "Sun, 29 May 2016 17:53:11 +0200") 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: Catonano Cc: guix-devel@gnu.org Catonano (2016-05-29 18:53 +0300) wrote: > From 6b4542d9f52b8f91375d07bd41bcc196a1c0515a Mon Sep 17 00:00:00 2001 > From: humanitiesNerd > Date: Sun, 29 May 2016 10:23:00 +0200 > Subject: gnu: Add emacs-pkg-info. > > * gnu/packages/emacs.scm (emacs-pkg-info). Almost, but not quite ;-) should be: * gnu/packages/emacs.scm (emacs-pkg-info): New variable. > --- > diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm > index 90f55ea..92ad434 100644 > --- a/gnu/packages/emacs.scm > +++ b/gnu/packages/emacs.scm > @@ -1727,3 +1727,25 @@ first-in first-out (FIFO) stack, i.e. elements can be added to the front or > back of the queue, and can be removed from the front. (This type of data > structure is sometimes called an \"output-restricted deque\")") > (license license:gpl3+))) > + > +(define-public emacs-pkg-info > + (package > + (name "emacs-pkg-info") > + (version "0.6") > + (source > + (origin > + (method url-fetch) > + (uri (string-append > + "https://github.com/lunaryorn/pkg-info.el/archive/" > + version ".tar.gz")) > + (file-name (string-append name "-" version ".tar.gz")) > + (sha256 > + (base32 > + "1gy1jks5mmm02gg1c8gcyr4f8a9s5ggzhk56gv33b9mzjqzi5rd5")))) > + (build-system emacs-build-system) > + (propagated-inputs `(("emacs-epl" ,emacs-epl))) > + (home-page "https://github.com/lunaryorn/pkg-info.el") > + (synopsis "Information about packages") I wrote: "Information about Emacs packages". > + (description > + "This library extracts information from installed packages.") and: "This library extracts information from installed Emacs packages." I made similar modifications (to mention "Emacs") in synopses/descriptions for other packages, and committed all your patches, thanks! -- Alex