From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Kost Subject: Re: [PATCH 13/17] gnu: Add emacs-undercover. Date: Fri, 15 Jul 2016 17:40:21 +0300 Message-ID: <87inw7x8ve.fsf@gmail.com> References: <20160712210514.21310-1-rekado@elephly.net> <20160712210514.21310-14-rekado@elephly.net> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48070) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bO4Hx-0000dL-Ko for guix-devel@gnu.org; Fri, 15 Jul 2016 10:40:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bO4Hs-0000gO-JX for guix-devel@gnu.org; Fri, 15 Jul 2016 10:40:24 -0400 Received: from mail-lf0-x243.google.com ([2a00:1450:4010:c07::243]:35585) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bO4Hs-0000gE-BV for guix-devel@gnu.org; Fri, 15 Jul 2016 10:40:20 -0400 Received: by mail-lf0-x243.google.com with SMTP id l89so7154308lfi.2 for ; Fri, 15 Jul 2016 07:40:20 -0700 (PDT) In-Reply-To: <20160712210514.21310-14-rekado@elephly.net> (Ricardo Wurmus's message of "Tue, 12 Jul 2016 23:05:10 +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: Ricardo Wurmus Cc: guix-devel@gnu.org Ricardo Wurmus (2016-07-13 00:05 +0300) wrote: > * gnu/packages/emacs.scm (emacs-undercover): New variable. > --- > gnu/packages/emacs.scm | 25 +++++++++++++++++++++++++ > 1 file changed, 25 insertions(+) > > > diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm > index ed3a1e3..f544721 100644 > --- a/gnu/packages/emacs.scm > +++ b/gnu/packages/emacs.scm > @@ -1418,6 +1418,31 @@ IRC bouncer with ERC.") > Emacs shell script.") > (license license:expat))) > > +(define-public emacs-undercover > + (package > + (name "emacs-undercover") > + (version "0.6.0") > + (source > + (origin > + (method url-fetch) > + (uri (string-append "https://github.com/sviridov/undercover.el/" > + "archive/v" version ".tar.gz")) > + (file-name (string-append name "-" version ".tar.gz")) > + (sha256 > + (base32 > + "0f48fi0xnbsqs382rgh85m9mq1wdnr0yib7as9xhwzvq0hsr5m0a")))) > + (build-system emacs-build-system) > + (propagated-inputs > + `(("emacs-dash" ,emacs-dash) > + ("emacs-s" ,emacs-s) The same comment: "emacs-s" is not needed for the end user, the package will work without it. > + ("emacs-shut-up" ,emacs-shut-up))) > + (home-page "https://github.com/sviridov/undercover.el") > + (synopsis "Test coverage library for Emacs Lisp") > + (description > + "Undercover is a test coverage library for software written in Emacs > +Lisp.") > + (license license:expat))) > + > (define-public emacs-paren-face > (package > (name "emacs-paren-face") -- Alex