guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit de2abaa74303aeb864eefdcc5f39d55cb1d9b807
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Mon Jun 2 09:00:17 2025 +0900
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 <[email protected]>
---
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 edde2d0ffe..bb2c73b66c 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)))