GNU bug report logs -
#67450
[PATCH] gnu: grep: Fix pcre matching in grep.
Previous Next
Reported by: spacecadet <spacecadet <at> purge.sh>
Date: Sun, 26 Nov 2023 03:13:02 UTC
Severity: normal
Tags: patch
Done: Tobias Geerinckx-Rice <me <at> tobias.gr>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 67450 in the body.
You can then email your comments to 67450 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#67450
; Package
guix-patches
.
(Sun, 26 Nov 2023 03:13:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
spacecadet <spacecadet <at> purge.sh>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Sun, 26 Nov 2023 03:13:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
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
Reply sent
to
Tobias Geerinckx-Rice <me <at> tobias.gr>
:
You have taken responsibility.
(Sun, 26 Nov 2023 14:07:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
spacecadet <spacecadet <at> purge.sh>
:
bug acknowledged by developer.
(Sun, 26 Nov 2023 14:07:02 GMT)
Full text and
rfc822 format available.
Message #10 received at 67450-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
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
[signature.asc (application/pgp-signature, inline)]
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Mon, 25 Dec 2023 12:24:09 GMT)
Full text and
rfc822 format available.
This bug report was last modified 1 year and 136 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.