From 3e8972c427ef098f85241e51e4a8a51a0aeffefa Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Mon, 2 Jun 2025 09:00:17 +0900 Subject: [PATCH] gnu: go-github-com-goccmack-gocc: Update to 1.0.2. * gnu/packages/golang-build.scm (go-github-com-goccmack-gocc): Update to 1.0.2. [source]: Adjust commit reference. [description]: Use two spaces between sentences. Change-Id: I812ecd49037a19a22cfe1654b97134a01c2ae36b Signed-off-by: Sharlatan Hellseher --- gnu/packages/golang-build.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gnu/packages/golang-build.scm b/gnu/packages/golang-build.scm index edde2d0ffe5..bb2c73b66c3 100644 --- a/gnu/packages/golang-build.scm +++ b/gnu/packages/golang-build.scm @@ -62,16 +62,16 @@ (define-public go-github-com-goccmack-gocc (package (name "go-github-com-goccmack-gocc") - (version "0.0.0-20230228185258-2292f9e40198") + (version "1.0.2") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/goccmack/gocc") - (commit (go-version->git-ref version)))) + (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0ah1z1bmn9y9sbh2z1jxsjgsrv1rfrzzzi4c4nq646z2n25c2x8s")))) + (base32 "0rv0v0k13lql0z9s9bffkjsan32a0i0m8405w3xng1y0jk3706mh")))) (build-system go-build-system) (arguments (list @@ -85,8 +85,8 @@ (description "Gocc is a compiler kit for Go written in Go. Gocc generates lexers and parsers or stand-alone DFAs or parsers from a BNF. Lexers are DFAs, which -recognise regular languages. Gocc lexers accept UTF-8 input. Gocc parsers are -PDAs, which recognise LR-1 languages. Optional LR1 conflict handling +recognise regular languages. Gocc lexers accept UTF-8 input. Gocc parsers are +PDAs, which recognise LR-1 languages. Optional LR1 conflict handling automatically resolves shift / reduce and reduce / reduce conflicts.") (license license:asl2.0)))