guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

12/12: gnu: ripgrep: Update to 13.0.0.


From: guix-commits
Subject: 12/12: gnu: ripgrep: Update to 13.0.0.
Date: Sat, 12 Jun 2021 18:38:58 -0400 (EDT)

ngz pushed a commit to branch master
in repository guix.

commit 992987bf484d1787b55772bcf3265b56c4109ba1
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sun Jun 13 00:24:20 2021 +0200

    gnu: ripgrep: Update to 13.0.0.
    
    * gnu/packages/rust-apps.scm (ripgrep): Update to 13.0.0.
    [arguments]<#:tests?>: Enable tests again.
    <#:cargo-development-inputs>: Add rust-walkdir.
---
 gnu/packages/rust-apps.scm | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm
index 709a75f..8048ccc 100644
--- a/gnu/packages/rust-apps.scm
+++ b/gnu/packages/rust-apps.scm
@@ -379,7 +379,7 @@ characters, ASCII whitespace characters, other ASCII 
characters and non-ASCII.")
 (define-public ripgrep
   (package
     (name "ripgrep")
-    (version "12.1.1")
+    (version "13.0.0")
     (source
      (origin
        (method url-fetch)
@@ -388,13 +388,13 @@ characters, ASCII whitespace characters, other ASCII 
characters and non-ASCII.")
         (string-append name "-" version ".tar.gz"))
        (sha256
         (base32
-         "1grfi0j9zczzipipc21lkdbqmd2lvy2wlqy65fy4sckqvix5amdr"))))
+         "1gv4imhjgxmyxaa996yshcjlakmrjw9pf4rycp90pq675cn9sz7k"))))
     (build-system cargo-build-system)
     (arguments
      ;; XXX: Upgrading rust-bstr-0.2 from 0.2.12 to 0.2.15 introduced 11 test
      ;; failures. Skip tests for now. Check again at next bstr or ripgrep
      ;; upgrade.
-     `(#:tests? #false
+     `(#:tests? #t
        #:cargo-inputs
        (("rust-bstr" ,rust-bstr-0.2)
         ("rust-clap" ,rust-clap-2)
@@ -409,7 +409,8 @@ characters, ASCII whitespace characters, other ASCII 
characters and non-ASCII.")
         ("rust-termcolor" ,rust-termcolor-1))
        #:cargo-development-inputs
        (("rust-serde" ,rust-serde-1)
-        ("rust-serde-derive" ,rust-serde-derive-1))
+        ("rust-serde-derive" ,rust-serde-derive-1)
+        ("rust-walkdir" ,rust-walkdir-2))
        #:modules ((ice-9 match)
                   (guix build cargo-build-system)
                   (guix build utils))
@@ -422,8 +423,8 @@ characters, ASCII whitespace characters, other ASCII 
characters and non-ASCII.")
              (match (find-files "target" "^rg\\.1$")
                ((manpage)
                 (install-file manpage (string-append
-                                        (assoc-ref outputs "out")
-                                        "/share/man/man1"))))
+                                       (assoc-ref outputs "out")
+                                       "/share/man/man1"))))
              #t)))
        #:features '("pcre2")))
     (native-inputs



reply via email to

[Prev in Thread] Current Thread [Next in Thread]