[bug#71349] gnu: ugrep: Update to 6.1.0.
Commit Message
From: Ashish SHUKLA <ashish.is@lostca.se>
* gnu/packages/search.scm (ugrep): Update to 6.1.0.
[source] also delete shipped linux binaries.
Change-Id: I13aa90578d8f618a0a9c2c67c59c41e8e219660f
---
gnu/packages/search.scm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
base-commit: 2f56845b3332d4aeff7badd64989bea75d20b403
Comments
"ashish.is--- via Guix-patches" via <guix-patches@gnu.org> writes:
> From: Ashish SHUKLA <ashish.is@lostca.se>
>
> * gnu/packages/search.scm (ugrep): Update to 6.1.0.
> [source] also delete shipped linux binaries.
>
> Change-Id: I13aa90578d8f618a0a9c2c67c59c41e8e219660f
> ---
> gnu/packages/search.scm | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
Thanks for the patch, I've pushed this to master as
6eb07c78a909be30c4643a794ec0df6e9b56daeb.
Chris
@@ -737,20 +737,22 @@ (define-public xapers
(define-public ugrep
(package
(name "ugrep")
- (version "6.0.0")
+ (version "6.1.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Genivia/ugrep")
(commit (string-append "v" version))))
(sha256
- (base32 "07lqjvyvda11d8xk1cmwwyx41w6l423jghcf21fnp4hrkrcsd5cd"))
+ (base32 "01zgvwhawz1sv3sib31jgbs5q27yc4kqmhz3v9l1zbqkkhwxsvqy"))
(file-name (git-file-name name version))
(modules '((guix build utils)))
(snippet
#~(begin
(delete-file-recursively "bin/win32") ; pre-built
(delete-file-recursively "bin/win64") ; pre-built
+ (delete-file-recursively "bin/linux_amd64") ; pre-built
+ (delete-file-recursively "bin/linux_arm64") ; pre-built
(for-each (lambda (regexp)
(for-each delete-file
(find-files "tests" regexp)))