unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#42584] [PATCH] gnu: bison: Mention yacc in the description.
@ 2020-07-28 16:25 Jakub Kądziołka
  2020-07-28 16:45 ` Tobias Geerinckx-Rice via Guix-patches via
  0 siblings, 1 reply; 4+ messages in thread
From: Jakub Kądziołka @ 2020-07-28 16:25 UTC (permalink / raw)
  To: 42584

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.
---

Inspired #42474. Sending to the mailinglist for feedback, since I'm not
quite sure of the wording here.

 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 725f38263f..95a3ff5a23 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 Yacc, as specified by POSIX.")
     (license gpl3+)))
 
 (define-public bison-3.6
-- 
2.27.0





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#42584] [PATCH] gnu: bison: Mention yacc in the description.
  2020-07-28 16:25 [bug#42584] [PATCH] gnu: bison: Mention yacc in the description Jakub Kądziołka
@ 2020-07-28 16:45 ` Tobias Geerinckx-Rice via Guix-patches via
  2020-07-30  0:32   ` Jakub Kądziołka
  0 siblings, 1 reply; 4+ messages in thread
From: Tobias Geerinckx-Rice via Guix-patches via @ 2020-07-28 16:45 UTC (permalink / raw)
  To: Jakub Kądziołka; +Cc: 42584

[-- Attachment #1: Type: text/plain, Size: 360 bytes --]

Jakub,

Jakub Kądziołka 写道:
> -    (synopsis "Parser generator")
> +    (synopsis "Yacc-compatible parser generator")

Sounds good to me.

> +Bison also provides an implementation of Yacc, as specified by 
> POSIX.")

Maybe use @command{yacc} here since that's what triggers ‘POSIX 
mode’, but I can go either way.

Thanks!

T G-R

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#42584] [PATCH] gnu: bison: Mention yacc in the description.
  2020-07-28 16:45 ` Tobias Geerinckx-Rice via Guix-patches via
@ 2020-07-30  0:32   ` Jakub Kądziołka
  2020-07-30  0:55     ` bug#42584: " Jakub Kądziołka
  0 siblings, 1 reply; 4+ messages in thread
From: Jakub Kądziołka @ 2020-07-30  0:32 UTC (permalink / raw)
  To: Tobias Geerinckx-Rice; +Cc: 42584

[-- Attachment #1: Type: text/plain, Size: 612 bytes --]

On Tue, Jul 28, 2020 at 06:45:57PM +0200, Tobias Geerinckx-Rice wrote:
> Jakub,
> 
> Jakub Kądziołka 写道:
> > -    (synopsis "Parser generator")
> > +    (synopsis "Yacc-compatible parser generator")
> 
> Sounds good to me.
> 
> > +Bison also provides an implementation of Yacc, as specified by POSIX.")
> 
> Maybe use @command{yacc} here since that's what triggers ‘POSIX mode’, but I
> can go either way.

Are you suggesting

| Bison also provides an implementation of @command{yacc}, as specified by POSIX.")

or some more elaborate re-wording? ;)

Regards,
Jakub Kądziołka

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#42584: [PATCH] gnu: bison: Mention yacc in the description.
  2020-07-30  0:32   ` Jakub Kądziołka
@ 2020-07-30  0:55     ` Jakub Kądziołka
  0 siblings, 0 replies; 4+ messages in thread
From: Jakub Kądziołka @ 2020-07-30  0:55 UTC (permalink / raw)
  To: Tobias Geerinckx-Rice; +Cc: 42584-done

[-- Attachment #1: Type: text/plain, Size: 770 bytes --]

On Thu, Jul 30, 2020 at 02:32:44AM +0200, Jakub Kądziołka wrote:
> On Tue, Jul 28, 2020 at 06:45:57PM +0200, Tobias Geerinckx-Rice wrote:
> > Jakub,
> > 
> > Jakub Kądziołka 写道:
> > > -    (synopsis "Parser generator")
> > > +    (synopsis "Yacc-compatible parser generator")
> > 
> > Sounds good to me.
> > 
> > > +Bison also provides an implementation of Yacc, as specified by POSIX.")
> > 
> > Maybe use @command{yacc} here since that's what triggers ‘POSIX mode’, but I
> > can go either way.
> 
> Are you suggesting
> 
> | Bison also provides an implementation of @command{yacc}, as specified by POSIX.")
> 
> or some more elaborate re-wording? ;)

Thanks for your response on IRC, patch pushed :D

Regards,
Jakub Kądziołka

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-07-30  0:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-28 16:25 [bug#42584] [PATCH] gnu: bison: Mention yacc in the description Jakub Kądziołka
2020-07-28 16:45 ` Tobias Geerinckx-Rice via Guix-patches via
2020-07-30  0:32   ` Jakub Kądziołka
2020-07-30  0:55     ` bug#42584: " Jakub Kądziołka

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).