unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* bug#26921: [PATCH] gnu: Add Nyacc.
@ 2017-05-14 10:35 Jan Nieuwenhuizen
  2017-05-14 13:47 ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: Jan Nieuwenhuizen @ 2017-05-14 10:35 UTC (permalink / raw)
  To: 26921; +Cc: Matt Wette

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

Hi!

In close cooperation with Matt Wette [cc] I have packaged Nyacc so that
it can be unbundled from Mes.

Once the Mes release check passes [now running], a Mes 0.6 update with
Nyacc unbundled will follow.

Greetings,
janneke


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-Nyacc.patch --]
[-- Type: text/x-patch, Size: 1650 bytes --]

From 5fd06907655cdf11859bc3281333e3f4512b50fc Mon Sep 17 00:00:00 2001
From: Jan Nieuwenhuizen <janneke@gnu.org>
Date: Sun, 14 May 2017 11:35:05 +0200
Subject: [PATCH] gnu: Add Nyacc.

* gnu/packages/mes.scm (nyacc): New variable.
---
 gnu/packages/mes.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/mes.scm b/gnu/packages/mes.scm
index aaa00f78a..f14d58d5a 100644
--- a/gnu/packages/mes.scm
+++ b/gnu/packages/mes.scm
@@ -26,10 +26,32 @@
   #:use-module (gnu packages package-management)
   #:use-module (gnu packages perl)
   #:use-module (guix build-system gnu)
+  #:use-module (guix download)
   #:use-module (guix git-download)
   #:use-module (guix licenses)
   #:use-module (guix packages))
 
+(define-public nyacc
+  (package
+    (name "nyacc")
+    (version "0.78.3")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://download.savannah.gnu.org/releases/nyacc/"
+                    name "-" version ".tar.gz"))
+              (sha256
+               (base32 "0xrnl2hl9rpl50n8cihvclcd951zj640fj5kpi3d6ihwcqjcdi0a"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("guile" ,guile-2.2)))
+    (synopsis "LALR(1) Parser Generator in Guile")
+    (description
+     "NYACC is a LALR(1) Parser Generator Implemented in Guile.
+The syntax and nomenclature should be considered not stable.")
+    (home-page "https://savannah.nongnu.org/projects/nyacc")
+    (license (list gpl3+ lgpl3+))))
+
 (define-public mes
   (let ((commit   "a437c173b9da1949ad966fd50dd4f26e522a910a")
         (revision "0")
-- 
2.12.2


[-- Attachment #3: Type: text/plain, Size: 154 bytes --]


-- 
Jan Nieuwenhuizen <janneke@gnu.org> | GNU LilyPond http://lilypond.org
Freelance IT http://JoyofSource.com | Avatar®  http://AvatarAcademy.nl  

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

* bug#26921: [PATCH] gnu: Add Nyacc.
  2017-05-14 10:35 bug#26921: [PATCH] gnu: Add Nyacc Jan Nieuwenhuizen
@ 2017-05-14 13:47 ` Ludovic Courtès
  2017-05-14 19:22   ` Matt Wette
  0 siblings, 1 reply; 4+ messages in thread
From: Ludovic Courtès @ 2017-05-14 13:47 UTC (permalink / raw)
  To: Jan Nieuwenhuizen; +Cc: Matt Wette, 26921-done

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

Hello!

Jan Nieuwenhuizen <janneke@gnu.org> skribis:

> From 5fd06907655cdf11859bc3281333e3f4512b50fc Mon Sep 17 00:00:00 2001
> From: Jan Nieuwenhuizen <janneke@gnu.org>
> Date: Sun, 14 May 2017 11:35:05 +0200
> Subject: [PATCH] gnu: Add Nyacc.
>
> * gnu/packages/mes.scm (nyacc): New variable.

Awesome!  I committed it with the changes below.

It would be nice if “make install” would install the Info manuals too.

Thank you!

Ludo’.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Type: text/x-patch, Size: 1294 bytes --]

diff --git a/gnu/packages/mes.scm b/gnu/packages/mes.scm
index f14d58d5a..84d6f8ff7 100644
--- a/gnu/packages/mes.scm
+++ b/gnu/packages/mes.scm
@@ -37,18 +37,19 @@
     (version "0.78.3")
     (source (origin
               (method url-fetch)
-              (uri (string-append
-                    "https://download.savannah.gnu.org/releases/nyacc/"
+              (uri (string-append "mirror://savannah/nyacc/"
                                   name "-" version ".tar.gz"))
               (sha256
-               (base32 "0xrnl2hl9rpl50n8cihvclcd951zj640fj5kpi3d6ihwcqjcdi0a"))))
+               (base32
+                "0xrnl2hl9rpl50n8cihvclcd951zj640fj5kpi3d6ihwcqjcdi0a"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("guile" ,guile-2.2)))
     (synopsis "LALR(1) Parser Generator in Guile")
     (description
-     "NYACC is a LALR(1) Parser Generator Implemented in Guile.
-The syntax and nomenclature should be considered not stable.")
+     "NYACC is an LALR(1) parser generator implemented in Guile.
+The syntax and nomenclature should be considered not stable.  It comes with
+extensive examples, including parsers for the Javascript and C99 languages.")
     (home-page "https://savannah.nongnu.org/projects/nyacc")
     (license (list gpl3+ lgpl3+))))
 

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

* bug#26921: [PATCH] gnu: Add Nyacc.
  2017-05-14 13:47 ` Ludovic Courtès
@ 2017-05-14 19:22   ` Matt Wette
  2017-05-14 20:03     ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: Matt Wette @ 2017-05-14 19:22 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 26921-done

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

The info files are not in good shape yet.  I will try to work them in the
near future.

On May 14, 2017 6:47 AM, "Ludovic Courtès" <ludo@gnu.org> wrote:

> Hello!
>
> Jan Nieuwenhuizen <janneke@gnu.org> skribis:
>
> > From 5fd06907655cdf11859bc3281333e3f4512b50fc Mon Sep 17 00:00:00 2001
> > From: Jan Nieuwenhuizen <janneke@gnu.org>
> > Date: Sun, 14 May 2017 11:35:05 +0200
> > Subject: [PATCH] gnu: Add Nyacc.
> >
> > * gnu/packages/mes.scm (nyacc): New variable.
>
> Awesome!  I committed it with the changes below.
>
> It would be nice if “make install” would install the Info manuals too.
>
> Thank you!
>
> Ludo’.
>
>

[-- Attachment #2: Type: text/html, Size: 1080 bytes --]

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

* bug#26921: [PATCH] gnu: Add Nyacc.
  2017-05-14 19:22   ` Matt Wette
@ 2017-05-14 20:03     ` Ludovic Courtès
  0 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2017-05-14 20:03 UTC (permalink / raw)
  To: Matt Wette; +Cc: 26921-done

Matt Wette <matt.wette@gmail.com> skribis:

> The info files are not in good shape yet.  I will try to work them in the
> near future.

Great.  Thanks Matt for the great piece of software!

Ludo’.

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

end of thread, other threads:[~2017-05-14 20:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-14 10:35 bug#26921: [PATCH] gnu: Add Nyacc Jan Nieuwenhuizen
2017-05-14 13:47 ` Ludovic Courtès
2017-05-14 19:22   ` Matt Wette
2017-05-14 20:03     ` Ludovic Courtès

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