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

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

bug#67450: closed ([PATCH] gnu: grep: Fix pcre matching in grep.)


From: GNU bug Tracking System
Subject: bug#67450: closed ([PATCH] gnu: grep: Fix pcre matching in grep.)
Date: Sun, 26 Nov 2023 14:07:02 +0000

Your message dated Sun, 26 Nov 2023 14:59:07 +0100
with message-id <87zfz0lid0.fsf@nckx>
and subject line Re: [bug#67450] [PATCH] gnu: grep: Fix pcre matching in grep.
has caused the debbugs.gnu.org bug report #67450,
regarding [PATCH] gnu: grep: Fix pcre matching in grep.
to be marked as done.

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


-- 
67450: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=67450
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: grep: Fix pcre matching in grep. Date: Sun, 26 Nov 2023 03:12:08 +0000 User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.15.0
Fix grep not building with -P (perl regexp) support.

* gnu/packages/base.scm: Replace grep's pcre input with pcre2.
* gnu/packages/base.scm: Add "--enable-perl-regexp" configure flag to grep.
---
 gnu/packages/base.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index 41aff0ca97..feb5ca5746 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -120,9 +120,11 @@ (define-public grep
             (patches (search-patches "grep-timing-sensitive-test.patch"))))
    (build-system gnu-build-system)
    (native-inputs (list perl))                   ;some of the tests require it
-   (inputs (list pcre))
+   (inputs (list pcre2))
    (arguments
-    `(#:phases
+    `(#:configure-flags
+      (list "--enable-perl-regexp")
+      #:phases
       (modify-phases %standard-phases
         (add-after 'install 'fix-egrep-and-fgrep
           ;; Patch 'egrep' and 'fgrep' to execute 'grep' via its

base-commit: 13bc0633e77c73389e530a4c45e2de5a823f106b
--
2.41.0



--- End Message ---
--- Begin Message --- Subject: Re: [bug#67450] [PATCH] gnu: grep: Fix pcre matching in grep. Date: Sun, 26 Nov 2023 14:59:07 +0100
Hi!

(Please don't hesitate to submit bug fixes upstream, especially when the breakage is so clearly unintentional :-)

I changed the changelog to better follow our standards

   gnu: grep: Fix PCRE matches (grep -P).

   {{{No blurb here if it only rephrases the title.}}}

* gnu/packages/base.scm (grep)[inputs]: Replace pcre with pcre2. [arguments]: Add "--enable-perl-regexp" to #:configure-flags to
   detect broken PCRE in future.

and pushed this to core-updates as 5b0cea02358044f0cc695bacc3f44db1e220239b.

Thanks,

T G-R

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

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