From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: Re: [PATCH 08/42] gnu: Add ghc-regex-tdfa. Date: Wed, 21 Sep 2016 08:16:31 +0000 Message-ID: <87eg4dfz1c.fsf@we.make.ritual.n0.is> References: <20160918161022.26135-1-ng0@we.make.ritual.n0.is> <20160918161022.26135-8-ng0@we.make.ritual.n0.is> <20160921011108.GB26508@jasmine> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46809) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bmci9-00046R-Jd for guix-devel@gnu.org; Wed, 21 Sep 2016 04:16:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bmci4-0000w4-IL for guix-devel@gnu.org; Wed, 21 Sep 2016 04:16:56 -0400 Received: from aibo.runbox.com ([91.220.196.211]:55217) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bmci4-0000sa-CO for guix-devel@gnu.org; Wed, 21 Sep 2016 04:16:52 -0400 In-Reply-To: <20160921011108.GB26508@jasmine> 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: Leo Famulari Cc: guix-devel@gnu.org Leo Famulari writes: > On Sun, Sep 18, 2016 at 04:09:48PM +0000, ng0 wrote: >> * gnu/packages/haskell.scm (ghc-regex-tdfa): New variable. > From 1fefd08e258b197b73a92145f3ab9dff0964bd0d Mon Sep 17 00:00:00 2001 > From: Leo Famulari > Date: Tue, 20 Sep 2016 20:43:46 -0400 > Subject: [PATCH 2/8] ghc-regex-tdfa synopsis description fix > > --- > gnu/packages/haskell.scm | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm > index 694fff1..eb103d1 100644 > --- a/gnu/packages/haskell.scm > +++ b/gnu/packages/haskell.scm > @@ -6611,9 +6611,11 @@ regular expressions. Parsers can be built using Applicative interface.") > ("ghc-parsec" ,ghc-parsec) > ("ghc-regex-base" ,ghc-regex-base))) > (home-page "https://github.com/ChrisKuklewicz/regex-tdfa") > - (synopsis "Replaces/Enhances Text.Regex") > + (synopsis "POSIX extended regular expressions in Haskell.") > (description > - "A new all Haskell \"tagged\" DFA regex engine, inspired by libtre") > + "Regex-tdfa is a pure Haskell regular expression library implementing POSIX > +extended regular expressions. It is a \"tagged\" DFA regex engine. It is > +inspired by libtre") There should be a "." at the end. > (license license:bsd-3))) > > (define-public ghc-regex-compat-tdfa > -- > 2.10.0 > -- ng0