guix_mirror_bot pushed a commit to branch master
in repository guix.

commit c6789aa29d0818b2219bc0e99e5ec426f1e2f5a3
Author: Steve George <[email protected]>
AuthorDate: Thu May 8 21:20:18 2025 +0100

    gnu: Update re2c.
    
    * gnu/packages/re2c.scm (re2c): Update to 4.2.
    
    Change-Id: I6867fbead378ec3e1c3c5337030c71a78ace7578
    Signed-off-by: Steve George <[email protected]>
---
 gnu/packages/re2c.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/re2c.scm b/gnu/packages/re2c.scm
index eb9daf4622..7ff0dd9e4b 100644
--- a/gnu/packages/re2c.scm
+++ b/gnu/packages/re2c.scm
@@ -28,7 +28,7 @@
 (define-public re2c
   (package
     (name "re2c")
-    (version "2.2")
+    (version "4.2")
     (source (origin
              (method url-fetch)
              (uri (string-append "https://github.com/skvadrik/"; name
@@ -36,7 +36,7 @@
                                  name "-" version ".tar.xz"))
              (sha256
               (base32
-               "1nkbv3bxz1kwwql1pdlnj3lxy5h2vsaif393ivb5b9d8610mxi0g"))))
+                "07ysqgdm0h566a8lwnpdgycp93vz7zskzihsgah3bla0ycj2pp69"))))
     (build-system gnu-build-system)
     (home-page "https://re2c.org/";)
     (native-inputs
@@ -44,9 +44,9 @@
     (synopsis "Lexer generator for C/C++")
     (description
      "@code{re2c} generates minimalistic hard-coded state machine (as opposed
-to full-featured table-based lexers).  Flexible API allows generated code
-to be wired into virtually any environment.  Instead of exposing traditional
+to full-featured table-based lexers).  A flexible API allows generated code
+to be wired into virtually any environment.  Instead of exposing a traditional
 @code{yylex()} style API, re2c exposes its internals.  Be sure to take a look
-at examples, they cover a lot of real-world cases and shed some light on dark
-corners of re2c API.")
+at the examples, as they cover a lot of real-world cases and shed some light on
+dark corners of the re2c API.")
     (license public-domain)))

Reply via email to