gnu: quilt: Patch for newer grep.

* gnu/packages/patchutils.scm (quilt)[source]: Add patch to work with
newer versions of grep.
* gnu/packages/patches/quilt-grep-compat.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.
This commit is contained in:
Efraim Flashner 2023-05-02 15:06:15 +03:00
parent 45c6abaef5
commit 3988a81c10
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351
3 changed files with 149 additions and 1 deletions

View file

@ -6,6 +6,7 @@
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
;;; Copyright © 2022 jgart <jgart@dismail.de>
;;; Copyright © 2023 Andy Tai <atai@atai.org>
;;; Copyright © 2023 Efraim Flashner <efraim@flashner.co.il>
;;;
;;; This file is part of GNU Guix.
;;;
@ -117,7 +118,8 @@ listing the files modified by a patch.")
(uri (string-append "mirror://savannah/quilt/"
"quilt-" version ".tar.gz"))
(sha256
(base32 "01vfvk4pqigahx82fhaaffg921ivd3k7rylz1yfvy4zbdyd32jri"))))
(base32 "01vfvk4pqigahx82fhaaffg921ivd3k7rylz1yfvy4zbdyd32jri"))
(patches (search-patches "quilt-grep-compat.patch"))))
(build-system gnu-build-system)
(native-inputs
`(("gettext" ,gettext-minimal)))