guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: bison: Mention yacc in the description.


From: guix-commits
Subject: branch master updated: gnu: bison: Mention yacc in the description.
Date: Wed, 29 Jul 2020 20:53:58 -0400

This is an automated email from the git hooks/post-receive script.

niedzejkob pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 8206a28  gnu: bison: Mention yacc in the description.
8206a28 is described below

commit 8206a282b157fcf2d7435850587bf3ae29319698
Author: Jakub Kądziołka <kuba@kadziolka.net>
AuthorDate: Tue Jul 28 18:20:37 2020 +0200

    gnu: bison: Mention yacc in the description.
    
    This should help the user find the package if the goal is to satisfy a
    dependency on yacc.
    
    * gnu/packages/bison.scm (bison)[synopsis, description]: Explain
      compatibility with Yacc.
---
 gnu/packages/bison.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/bison.scm b/gnu/packages/bison.scm
index 725f382..4c6da7d 100644
--- a/gnu/packages/bison.scm
+++ b/gnu/packages/bison.scm
@@ -3,6 +3,7 @@
 ;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2019 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2020 B. Wilson <elaexuotee@wilsonb.com>
+;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -57,12 +58,14 @@
     (inputs `(("flex" ,flex)))
     (propagated-inputs `(("m4" ,m4)))
     (home-page "https://www.gnu.org/software/bison/";)
-    (synopsis "Parser generator")
+    (synopsis "Yacc-compatible parser generator")
     (description
      "GNU Bison is a general-purpose parser generator.  It can build a
 deterministic or generalized LR parser from an annotated, context-free
 grammar.  It is versatile enough to have many applications, from parsers for
-simple tools through complex programming languages.")
+simple tools through complex programming languages.
+
+Bison also provides an implementation of @command{yacc}, as specified by 
POSIX.")
     (license gpl3+)))
 
 (define-public bison-3.6



reply via email to

[Prev in Thread] Current Thread [Next in Thread]