diff options
author | Marius Bakke <marius@gnu.org> | 2022-09-05 10:31:29 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-09-08 21:39:59 +0200 |
commit | c527b0ce23c5d9228d29c5f90892aa5f05e77347 (patch) | |
tree | 6e8779f8f11d91fadc588b4e3a76ebea7df91e6b /gnu/packages/base.scm | |
parent | d4485c5af7b6f0412b5d536eff62d0c666a5dbe6 (diff) |
gnu: grep: Update to 3.8.
* gnu/packages/base.scm (grep): Update to 3.8.
* gnu/packages/commencement.scm (grep-mesboot)[native-inputs]: Add
SED-MESBOOT.
* gnu/packages/autotools.scm (libtool)[source](patches): Add patch.
* gnu/packages/patches/libtool-grep-compat.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
Diffstat (limited to 'gnu/packages/base.scm')
-rw-r--r-- | gnu/packages/base.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index cf640aad25..382aa94b90 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -105,14 +105,14 @@ command-line arguments, multiple languages, and so on.") (define-public grep (package (name "grep") - (version "3.7") + (version "3.8") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/grep/grep-" version ".tar.xz")) (sha256 (base32 - "0g42svbc1nq5bamxfj6x7320wli4dlj86padk0hwgbk04hqxl42w")) + "10n3mc9n1xmg85hpxyr4wiqzfp27ffxzwhvkv021j27vnk0pr3a9")) (patches (search-patches "grep-timing-sensitive-test.patch")))) (build-system gnu-build-system) (native-inputs (list perl)) ;some of the tests require it |