[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/04: gnu: ugrep: Update to 6.0.0.
From: |
guix-commits |
Subject: |
04/04: gnu: ugrep: Update to 6.0.0. |
Date: |
Mon, 27 May 2024 03:22:08 -0400 (EDT) |
iyzsong pushed a commit to branch master
in repository guix.
commit a3e5caa222d86c15f00b639c376bb5a866e269e8
Author: kiasoc5 <kiasoc5@disroot.org>
AuthorDate: Wed May 8 16:51:10 2024 -0400
gnu: ugrep: Update to 6.0.0.
* gnu/packages/search.scm (ugrep): Update to 6.0.0.
[source]: Adjust snippet to avoid deleting ug+ and ugrep+ shell scripts.
Change-Id: I9beb1415fe8bfbe12a1e9d22d1606b1fc92ef16b
Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
---
gnu/packages/search.scm | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/search.scm b/gnu/packages/search.scm
index 8d21a082cb..e8caf803cd 100644
--- a/gnu/packages/search.scm
+++ b/gnu/packages/search.scm
@@ -737,19 +737,20 @@ bibliographic data and simple document and bibtex
retrieval.")
(define-public ugrep
(package
(name "ugrep")
- (version "3.11.2")
+ (version "6.0.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Genivia/ugrep")
(commit (string-append "v" version))))
(sha256
- (base32 "0k0dzdyif9lpk0avjk02xkd6bjg9km4spr3p4hzls88y9hwgcc9l"))
+ (base32 "07lqjvyvda11d8xk1cmwwyx41w6l423jghcf21fnp4hrkrcsd5cd"))
(file-name (git-file-name name version))
(modules '((guix build utils)))
(snippet
#~(begin
- (delete-file-recursively "bin") ; pre-built executables
+ (delete-file-recursively "bin/win32") ; pre-built
+ (delete-file-recursively "bin/win64") ; pre-built
(for-each (lambda (regexp)
(for-each delete-file
(find-files "tests" regexp)))