From unknown Sun Jun 22 19:07:44 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#42584] [PATCH] gnu: bison: Mention yacc in the description. Resent-From: Jakub =?UTF-8?Q?K=C4=85dzio=C5=82ka?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 28 Jul 2020 16:26:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 42584 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 42584@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.159595352218494 (code B ref -1); Tue, 28 Jul 2020 16:26:02 +0000 Received: (at submit) by debbugs.gnu.org; 28 Jul 2020 16:25:22 +0000 Received: from localhost ([127.0.0.1]:58919 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k0SPl-0004o5-SF for submit@debbugs.gnu.org; Tue, 28 Jul 2020 12:25:21 -0400 Received: from lists.gnu.org ([209.51.188.17]:42732) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k0SPk-0004ny-4c for submit@debbugs.gnu.org; Tue, 28 Jul 2020 12:25:16 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:36554) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1k0SPj-0005qd-UT for guix-patches@gnu.org; Tue, 28 Jul 2020 12:25:15 -0400 Received: from pat.zlotemysli.pl ([37.59.186.212]:39134) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1k0SPh-000305-NQ for guix-patches@gnu.org; Tue, 28 Jul 2020 12:25:15 -0400 Received: (qmail 17274 invoked by uid 1009); 28 Jul 2020 18:25:04 +0200 Received: from user-5-173-112-145.play-internet.pl (kuba@kadziolka.net@user-5-173-112-145.play-internet.pl) by pat.zlotemysli.pl (envelope-from , uid 1002) with qmail-scanner-2.08st (clamdscan: 0.98.6/25886. spamassassin: 3.4.0. perlscan: 2.08st. Clear:RC:1(5.173.112.145):. Processed in 0.03889 secs); 28 Jul 2020 16:25:04 -0000 Received: from user-5-173-112-145.play-internet.pl (HELO localhost.localdomain) (kuba@kadziolka.net@5.173.112.145) by pat.zlotemysli.pl with AES256-SHA encrypted SMTP; 28 Jul 2020 18:25:04 +0200 From: Jakub =?UTF-8?Q?K=C4=85dzio=C5=82ka?= Date: Tue, 28 Jul 2020 18:25:01 +0200 Message-Id: <20200728162501.30030-1-kuba@kadziolka.net> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=37.59.186.212; envelope-from=kuba@kadziolka.net; helo=pat.zlotemysli.pl X-detected-operating-system: by eggs.gnu.org: First seen = 2020/07/28 12:25:04 X-ACL-Warn: Detected OS = Linux 3.11 and newer X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_NONE=0.001, UNPARSEABLE_RELAY=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) 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 ;;; Copyright © 2019 Efraim Flashner ;;; Copyright © 2020 B. Wilson +;;; Copyright © 2020 Jakub Kądziołka ;;; ;;; 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 From unknown Sun Jun 22 19:07:44 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#42584] [PATCH] gnu: bison: Mention yacc in the description. Resent-From: Tobias Geerinckx-Rice Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 28 Jul 2020 16:46:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 42584 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Jakub =?UTF-8?Q?K=C4=85dzio=C5=82ka?= Cc: 42584@debbugs.gnu.org Received: via spool by 42584-submit@debbugs.gnu.org id=B42584.159595475920590 (code B ref 42584); Tue, 28 Jul 2020 16:46:02 +0000 Received: (at 42584) by debbugs.gnu.org; 28 Jul 2020 16:45:59 +0000 Received: from localhost ([127.0.0.1]:58954 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k0Sjn-0005M1-2X for submit@debbugs.gnu.org; Tue, 28 Jul 2020 12:45:59 -0400 Received: from tobias.gr ([80.241.217.52]:54380) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k0Sjl-0005Lt-71 for 42584@debbugs.gnu.org; Tue, 28 Jul 2020 12:45:57 -0400 Received: by tobias.gr (OpenSMTPD) with ESMTP id 33cad357; Tue, 28 Jul 2020 16:46:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=tobias.gr; h=from:to:cc :subject:references:in-reply-to:date:message-id:mime-version :content-type; s=2018; i=me@tobias.gr; bh=8AbmXbWNJJSbeY8nW4LedP UtQz9dJUjxgFFJlHUsMQE=; b=D0/xtog/uCfOPGUxnmVYnKPh+nsgEEQ1ma7CtC qIbU2cJQyecCwTOFqdf3Mb2EInMRK7zVfoN04svRiDErl0szycENf/HBUrGL5zNH 4bHclnuxrNZw1QYYSwEuglAy3drE9OcQozs37GzuGK0P0+puR6SVvgwwq0Tl//QB R47k2r/EYIRoI55zlzb4+iweIyhC/2a5xALL7v+g6eoezfPQV9KJ1TjtuRP6WYY3 9DYDC0O122RV8Hd1g8QG5O5hCuDSDKyxL2o3WCPHy9fCZmzDEQWtKPf89qkXVi9c CihcbzbafdOUsuG5KGM35uAQPurTPe79nTi0V2cR+BDaUN2g== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 36dccd10 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Tue, 28 Jul 2020 16:46:12 +0000 (UTC) BIMI-Selector: v=BIMI1; s=default; From: Tobias Geerinckx-Rice References: <20200728162501.30030-1-kuba@kadziolka.net> In-reply-to: <20200728162501.30030-1-kuba@kadziolka.net> Date: Tue, 28 Jul 2020 18:45:57 +0200 Message-ID: <87ime7ziyi.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Jakub, Jakub K=C4=85dzio=C5=82ka =E5=86=99=E9=81=93=EF=BC=9A > - (synopsis "Parser generator") > + (synopsis "Yacc-compatible parser generator") Sounds good to me. > +Bison also provides an implementation of Yacc, as specified by=20 > POSIX.") Maybe use @command{yacc} here since that's what triggers =E2=80=98POSIX=20 mode=E2=80=99, but I can go either way. Thanks! T G-R --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEARYKAB0WIQT12iAyS4c9C3o4dnINsP+IT1VteQUCXyBWRQAKCRANsP+IT1Vt edMUAQCS92LNFDgsQczjXGRnHKdfppa53SW34F39szDy3fbI/gD9Ev/Ewuo+ODaU wOrVhHt/oRyeBEoB+PCAJ4coHfks3wM= =59az -----END PGP SIGNATURE----- --=-=-=-- From unknown Sun Jun 22 19:07:44 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#42584] [PATCH] gnu: bison: Mention yacc in the description. Resent-From: Jakub =?UTF-8?Q?K=C4=85dzio=C5=82ka?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 30 Jul 2020 00:33:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 42584 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Tobias Geerinckx-Rice Cc: 42584@debbugs.gnu.org Received: via spool by 42584-submit@debbugs.gnu.org id=B42584.159606916816923 (code B ref 42584); Thu, 30 Jul 2020 00:33:01 +0000 Received: (at 42584) by debbugs.gnu.org; 30 Jul 2020 00:32:48 +0000 Received: from localhost ([127.0.0.1]:34035 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k0wV5-0004Ot-SB for submit@debbugs.gnu.org; Wed, 29 Jul 2020 20:32:48 -0400 Received: from pat.zlotemysli.pl ([37.59.186.212]:58602) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k0wV4-0004Ok-Ey for 42584@debbugs.gnu.org; Wed, 29 Jul 2020 20:32:46 -0400 Received: (qmail 17369 invoked by uid 1009); 30 Jul 2020 02:32:44 +0200 Received: from 188.123.215.55 (kuba@kadziolka.net@188.123.215.55) by pat.zlotemysli.pl (envelope-from , uid 1002) with qmail-scanner-2.08st (clamdscan: 0.98.6/25887. spamassassin: 3.4.0. perlscan: 2.08st. Clear:RC:1(188.123.215.55):. Processed in 0.053761 secs); 30 Jul 2020 00:32:44 -0000 Received: from unknown (HELO gravity) (kuba@kadziolka.net@188.123.215.55) by pat.zlotemysli.pl with SMTP; 30 Jul 2020 02:32:44 +0200 Date: Thu, 30 Jul 2020 02:32:42 +0200 From: Jakub =?UTF-8?Q?K=C4=85dzio=C5=82ka?= Message-ID: <20200730003242.gthjl5h5oayskqpe@gravity> References: <20200728162501.30030-1-kuba@kadziolka.net> <87ime7ziyi.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="4ernuubovqh2yokl" Content-Disposition: inline In-Reply-To: <87ime7ziyi.fsf@nckx> X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --4ernuubovqh2yokl Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jul 28, 2020 at 06:45:57PM +0200, Tobias Geerinckx-Rice wrote: > Jakub, >=20 > Jakub K=C4=85dzio=C5=82ka =E5=86=99=E9=81=93=EF=BC=9A > > - (synopsis "Parser generator") > > + (synopsis "Yacc-compatible parser generator") >=20 > Sounds good to me. >=20 > > +Bison also provides an implementation of Yacc, as specified by POSIX.") >=20 > Maybe use @command{yacc} here since that's what triggers =E2=80=98POSIX m= ode=E2=80=99, 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=C4=85dzio=C5=82ka --4ernuubovqh2yokl Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEE5Xa/ss9usT31cTO54xWnWEYTFWQFAl8iFSoACgkQ4xWnWEYT FWTEKhAA2VtImt/UaI127wZifZOzcb6WktTsOo2m36gTlIja6KzXQUIQwhzZOLur Ct1VqnyzgCSPQssSjkEE2vsaq+Zi+AyrbwplxKzYUU9qFcAomU2ZghjHIMWer/w7 F6TUebxeZrBvA/igLJcSmeexEOTLkGN5j3ypjhyYMbl9hM87TAqd+Pw9YHLMUiUF cz1HPoffh6ql5U6M2WG/w891HAdmKbzXp2aFiB62dRwZyMXACSrBvOOlke9nrLwc H4u8hKJB1+3vJQZjxFvTH8bN8r1Ww4HLRApncmShGbPe5akxslK98c5nhXPbMAko 9tB1Y/oifcdOK+9ids76XR7zDL37k00BfskBaBWoZJhoGoOVcUaHsyvDNW9ofcig rEoaEFjZ3Ihc8nFy9HXmOB4KOtAoVdh9PSbOPcT/5Ees1QggC5hALfu5r1L0c/lf acW3aJesJO8rW1dq0zZa8z2vpTsRYYV7Z7T3Fy/Egd4y7c98yX+5F5Zw+YBJR9YR 2L2L2W1/4oHeelmT1a3vB7ODVl529dzzFqug6NyU2yQySu8TcpafYQ9jETfc3XzL lVgzSEWHvzccbQSyRPZhPjWKokQPf4VntVXhHrtE61JN2kGsEHt/ujLcSiC+kSYc l4OtivArwpR8eNRM6hJbF45BLPZSpoUvzMfJg74dF4Kn9vmClOA= =HYIl -----END PGP SIGNATURE----- --4ernuubovqh2yokl-- From unknown Sun Jun 22 19:07:44 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Jakub =?UTF-8?Q?K=C4=85dzio=C5=82ka?= Subject: bug#42584: closed (Re: [bug#42584] [PATCH] gnu: bison: Mention yacc in the description.) Message-ID: References: <20200730005507.qd2kcbc4yprotplr@gravity> <20200728162501.30030-1-kuba@kadziolka.net> X-Gnu-PR-Message: they-closed 42584 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 42584@debbugs.gnu.org Date: Thu, 30 Jul 2020 00:56:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1596070562-19106-1" This is a multi-part message in MIME format... ------------=_1596070562-19106-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #42584: [PATCH] gnu: bison: Mention yacc in the description. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 42584@debbugs.gnu.org. --=20 42584: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D42584 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1596070562-19106-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 42584-done) by debbugs.gnu.org; 30 Jul 2020 00:55:15 +0000 Received: from localhost ([127.0.0.1]:34050 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k0wqp-0004x7-AD for submit@debbugs.gnu.org; Wed, 29 Jul 2020 20:55:15 -0400 Received: from pat.zlotemysli.pl ([37.59.186.212]:40020) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k0wqn-0004ww-4O for 42584-done@debbugs.gnu.org; Wed, 29 Jul 2020 20:55:13 -0400 Received: (qmail 25652 invoked by uid 1009); 30 Jul 2020 02:55:09 +0200 Received: from 188.123.215.55 (kuba@kadziolka.net@188.123.215.55) by pat.zlotemysli.pl (envelope-from , uid 1002) with qmail-scanner-2.08st (clamdscan: 0.98.6/25887. spamassassin: 3.4.0. perlscan: 2.08st. Clear:RC:1(188.123.215.55):. Processed in 0.051929 secs); 30 Jul 2020 00:55:09 -0000 Received: from unknown (HELO gravity) (kuba@kadziolka.net@188.123.215.55) by pat.zlotemysli.pl with SMTP; 30 Jul 2020 02:55:09 +0200 Date: Thu, 30 Jul 2020 02:55:07 +0200 From: Jakub =?utf-8?B?S8SFZHppb8WCa2E=?= To: Tobias Geerinckx-Rice Subject: Re: [bug#42584] [PATCH] gnu: bison: Mention yacc in the description. Message-ID: <20200730005507.qd2kcbc4yprotplr@gravity> References: <20200728162501.30030-1-kuba@kadziolka.net> <87ime7ziyi.fsf@nckx> <20200730003242.gthjl5h5oayskqpe@gravity> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="btxl7hbhqmgji2b3" Content-Disposition: inline In-Reply-To: <20200730003242.gthjl5h5oayskqpe@gravity> X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 42584-done Cc: 42584-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --btxl7hbhqmgji2b3 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jul 30, 2020 at 02:32:44AM +0200, Jakub K=C4=85dzio=C5=82ka wrote: > On Tue, Jul 28, 2020 at 06:45:57PM +0200, Tobias Geerinckx-Rice wrote: > > Jakub, > >=20 > > Jakub K=C4=85dzio=C5=82ka =E5=86=99=E9=81=93=EF=BC=9A > > > - (synopsis "Parser generator") > > > + (synopsis "Yacc-compatible parser generator") > >=20 > > Sounds good to me. > >=20 > > > +Bison also provides an implementation of Yacc, as specified by POSIX= =2E") > >=20 > > Maybe use @command{yacc} here since that's what triggers =E2=80=98POSIX= mode=E2=80=99, but I > > can go either way. >=20 > Are you suggesting >=20 > | Bison also provides an implementation of @command{yacc}, as specified b= y POSIX.") >=20 > or some more elaborate re-wording? ;) Thanks for your response on IRC, patch pushed :D Regards, Jakub K=C4=85dzio=C5=82ka --btxl7hbhqmgji2b3 Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEE5Xa/ss9usT31cTO54xWnWEYTFWQFAl8iGmsACgkQ4xWnWEYT FWQP4g//TDb175hONm7WRrvdvj0Q2QVOf0xVFnMkkJ5cqDYlThSYtmvjdfK0IbMW xw0ufJGF1ze+6EDwNlFkxb1wxDj3v+3saZj2zaukHgivLVkKVdPMizLSjrhuYYaF Zh84Hq/3pdf/f+qQs8woJI2CLjqqhCrcEAOUjPgXRHk4C1zbfrRQF6qKk40D5YU3 J6lIr9FEWL4W3/V0q3oNOK6xZdX08yLhfnQZP+VYl+U+f1KGBJ5Gq1BE3yzV+av8 Xver9ysj7oLgU8XRdjiLsvjQV61BuO9h6T7Qb3JBDWa6VErfjN2nf8qLsekkiBXE BS327crcZoZnwavhdNMvEpmX1lH9uHqmX/FizsCznQaX45R1hOu9vhNAd2A3Ycx9 KfvA+pw7/JXlUEeRtO+LFm8+krNQ094JOhPOiM1/8CAEsKXpgYCtIqSe/uKiRHoi 0scN0XkY+S510dYJVJnYHgtVtVcZsc7Zf8sRm/aljCtRhWwFpL6yraSr5BNCdmlT tssEFBx1ZEreZHXQuoyWLkh3ot9IZNmulum8fjwiDThDHDRNqlULrXf+9RnXFQpS Jii1PN+rxEIV8JSA/eUXnJ2ay3KX7KRA7Ue0Ni6cSHh2ouWePvZPHXbuP1UN8n37 tLvOIFa02ONXn0eHodIkZhAffXsUAgGbcKEX/E1DAUirwQfp9Zs= =kwGI -----END PGP SIGNATURE----- --btxl7hbhqmgji2b3-- ------------=_1596070562-19106-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 28 Jul 2020 16:25:22 +0000 Received: from localhost ([127.0.0.1]:58919 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k0SPl-0004o5-SF for submit@debbugs.gnu.org; Tue, 28 Jul 2020 12:25:21 -0400 Received: from lists.gnu.org ([209.51.188.17]:42732) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k0SPk-0004ny-4c for submit@debbugs.gnu.org; Tue, 28 Jul 2020 12:25:16 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:36554) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1k0SPj-0005qd-UT for guix-patches@gnu.org; Tue, 28 Jul 2020 12:25:15 -0400 Received: from pat.zlotemysli.pl ([37.59.186.212]:39134) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1k0SPh-000305-NQ for guix-patches@gnu.org; Tue, 28 Jul 2020 12:25:15 -0400 Received: (qmail 17274 invoked by uid 1009); 28 Jul 2020 18:25:04 +0200 Received: from user-5-173-112-145.play-internet.pl (kuba@kadziolka.net@user-5-173-112-145.play-internet.pl) by pat.zlotemysli.pl (envelope-from , uid 1002) with qmail-scanner-2.08st (clamdscan: 0.98.6/25886. spamassassin: 3.4.0. perlscan: 2.08st. Clear:RC:1(5.173.112.145):. Processed in 0.03889 secs); 28 Jul 2020 16:25:04 -0000 Received: from user-5-173-112-145.play-internet.pl (HELO localhost.localdomain) (kuba@kadziolka.net@5.173.112.145) by pat.zlotemysli.pl with AES256-SHA encrypted SMTP; 28 Jul 2020 18:25:04 +0200 From: =?UTF-8?q?Jakub=20K=C4=85dzio=C5=82ka?= To: guix-patches@gnu.org Subject: [PATCH] gnu: bison: Mention yacc in the description. Date: Tue, 28 Jul 2020 18:25:01 +0200 Message-Id: <20200728162501.30030-1-kuba@kadziolka.net> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=37.59.186.212; envelope-from=kuba@kadziolka.net; helo=pat.zlotemysli.pl X-detected-operating-system: by eggs.gnu.org: First seen = 2020/07/28 12:25:04 X-ACL-Warn: Detected OS = Linux 3.11 and newer X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_NONE=0.001, UNPARSEABLE_RELAY=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) 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 ;;; Copyright © 2019 Efraim Flashner ;;; Copyright © 2020 B. Wilson +;;; Copyright © 2020 Jakub Kądziołka ;;; ;;; 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 ------------=_1596070562-19106-1--