emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#50017: closed ([PATCH] gnu: re2c: Update to 2.2.)


From: GNU bug Tracking System
Subject: bug#50017: closed ([PATCH] gnu: re2c: Update to 2.2.)
Date: Fri, 13 Aug 2021 17:33:02 +0000

Your message dated Fri, 13 Aug 2021 23:02:11 +0530
with message-id <875yw95jz8.fsf@systemreboot.net>
and subject line Re: [bug#50017] [PATCH] gnu: re2c: Update to 2.2.
has caused the debbugs.gnu.org bug report #50017,
regarding [PATCH] gnu: re2c: Update to 2.2.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
50017: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=50017
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: re2c: Update to 2.2. Date: Thu, 12 Aug 2021 00:35:25 +0100
2.2 version started using python as a test driver. Added it as a
dependency to native inputs.

        * gnu/packages/re2c.scm (re2c): Update to 2.2. Added python as a
        native input dependency.

Signed-off-by: Sergei Trofimovich <slyich@gmail.com>
---
 gnu/packages/re2c.scm | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/re2c.scm b/gnu/packages/re2c.scm
index e13d15e97a..9bed166e56 100644
--- a/gnu/packages/re2c.scm
+++ b/gnu/packages/re2c.scm
@@ -1,4 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2021 Sergei Trofimovich <slyich@gmail.com>
 ;;; Copyright © 2017, 2020 Sergei Trofimovich <slyfox@inbox.ru>
 ;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;;
@@ -20,13 +21,14 @@
 (define-module (gnu packages re2c)
   #:use-module (guix licenses)
   #:use-module (guix packages)
+  #:use-module (gnu packages python)
   #:use-module (guix download)
   #:use-module (guix build-system gnu))
 
 (define-public re2c
   (package
     (name "re2c")
-    (version "2.1.1")
+    (version "2.2")
     (source (origin
              (method url-fetch)
              (uri (string-append "https://github.com/skvadrik/"; name
@@ -34,9 +36,11 @@
                                  name "-" version ".tar.xz"))
              (sha256
               (base32
-               "1y0iwxpkdmw5fcqacs209ix49aasfy88hqmx3qa26m7xz9jf4vh3"))))
+               "1nkbv3bxz1kwwql1pdlnj3lxy5h2vsaif393ivb5b9d8610mxi0g"))))
     (build-system gnu-build-system)
     (home-page "https://re2c.org/";)
+    (native-inputs
+       `(("python" ,python)))
     (synopsis "Lexer generator for C/C++")
     (description
      "@code{re2c} generates minimalistic hard-coded state machine (as opposed
-- 
2.32.0




--- End Message ---
--- Begin Message --- Subject: Re: [bug#50017] [PATCH] gnu: re2c: Update to 2.2. Date: Fri, 13 Aug 2021 23:02:11 +0530
Hi Sergei,

Thanks for the patch! I have applied it on master after a few minor
changes.

> 2.2 version started using python as a test driver. Added it as a
> dependency to native inputs.
>
>       * gnu/packages/re2c.scm (re2c): Update to 2.2. Added python as a
>       native input dependency.
>
> Signed-off-by: Sergei Trofimovich <slyich@gmail.com>

I simplified the commit message and moved the comment about python for
the test driver to the package definition itself. That way, it will be
more visible to someone reading the package definition.

>  ;;; GNU Guix --- Functional package management for GNU
> +;;; Copyright © 2021 Sergei Trofimovich <slyich@gmail.com>
>  ;;; Copyright © 2017, 2020 Sergei Trofimovich <slyfox@inbox.ru>

You have specified a new email ID <slyich@gmail.com>. If you will not be
using the <slyfox@inbox.ru> email ID, I do encourage you to submit a
patch updating occurrences of your older email ID.

Thanks again! :-)

Regards,
Arun

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]