GNU bug report logs - #39500
[PATCH 0/8] Update ripgrep to 11.0.2.

Previous Next

Package: guix-patches;

Reported by: Jakub Kądziołka <kuba <at> kadziolka.net>

Date: Fri, 7 Feb 2020 21:31:02 UTC

Severity: normal

Tags: patch

Merged with 39492, 39493, 39494, 39495, 39496, 39497, 39498, 39499

Done: Efraim Flashner <efraim <at> flashner.co.il>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Jakub Kądziołka <kuba <at> kadziolka.net>
Subject: bug#39498: closed (Re: [bug#39500] [PATCH 0/8] Update ripgrep to
 11.0.2.)
Date: Sat, 08 Feb 2020 20:54:04 +0000
[Message part 1 (text/plain, inline)]
Your bug report

#39500: [PATCH 7/8] gnu: ripgrep: Update to 11.0.2.

which was filed against the guix-patches package, has been closed.

The explanation is attached below, along with your original report.
If you require more details, please reply to 39498 <at> debbugs.gnu.org.

-- 
39500: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=39500
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Efraim Flashner <efraim <at> flashner.co.il>
To: Jakub Kądziołka <kuba <at> kadziolka.net>
Cc: 39500-done <at> debbugs.gnu.org
Subject: Re: [bug#39500] [PATCH 0/8] Update ripgrep to 11.0.2.
Date: Sat, 8 Feb 2020 22:52:57 +0200
[Message part 3 (text/plain, inline)]
On Fri, Feb 07, 2020 at 10:23:15PM +0100, Jakub Kądziołka wrote:
> This patchstack updates ripgrep and its closely-tied dependencies to the
> newest versions. #:skip-build? arguments are removed on the modified
> packages.
> 
> Fun fact: rust-regex* and rust-aho-corasick had mentioned some bugfixes
> in their changelog that could potentially be observed by the user.
> 
> All modified packages build after the commits that modify them, moreover
> everything in rust-apps.scm builds properly after the patchstack is
> applied.
> 
> Jakub Kądziołka (8):
>   gnu: rust-regex-syntax: Update to 0.6.14.
>   gnu: rust-regex: Update to 1.3.4.
>   gnu: rust-aho-corasick: Update to 0.7.8.
>   gnu: rust-grep-matcher: Update to 0.1.3.
>   gnu: rust-grep-regex: Update to 0.1.4.
>   gnu: rust-ignore: Update to 0.4.9.
>   gnu: ripgrep: Update to 11.0.2.
>   gnu: Remove rust-bstr-0.1.
> 
>  gnu/packages/crates-io.scm | 59 ++++++++++++--------------------------
>  gnu/packages/rust-apps.scm | 12 ++++----
>  2 files changed, 25 insertions(+), 46 deletions(-)

Thanks! I ended up skipping the commit to remove rust-bstr-0.1. It may
be that another package in the future wants it.

-- 
Efraim Flashner   <efraim <at> flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[signature.asc (application/pgp-signature, inline)]
[Message part 5 (message/rfc822, inline)]
From: Jakub Kądziołka <kuba <at> kadziolka.net>
To: guix-patches <at> gnu.org
Subject: [PATCH 7/8] gnu: ripgrep: Update to 11.0.2.
Date: Fri,  7 Feb 2020 22:23:22 +0100
* gnu/packages/rust-apps.scm (ripgrep): Update to 11.0.2.
  [arguments]: Use rust-bstr-0.2 instead of rust-bstr-0.1. Add
  rust-jemallocator-0.3 to inputs. Remove unnecessary
  development-inputs.
---
 gnu/packages/rust-apps.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm
index 5b61cdc542..9e55db567b 100644
--- a/gnu/packages/rust-apps.scm
+++ b/gnu/packages/rust-apps.scm
@@ -1,6 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2019, 2020 John Soo <jsoo1 <at> asu.edu>
 ;;; Copyright © 2019, 2020 Efraim Flashner <efraim <at> flashner.co.il>
+;;; Copyright © 2020 Jakub Kądziołka <kuba <at> kadziolka.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -128,7 +129,7 @@ also knows about symlinks, extended attributes, and Git.")
 (define-public ripgrep
   (package
     (name "ripgrep")
-    (version "11.0.1")
+    (version "11.0.2")
     (source
      (origin
        (method url-fetch)
@@ -137,14 +138,15 @@ also knows about symlinks, extended attributes, and Git.")
         (string-append name "-" version ".tar.gz"))
        (sha256
         (base32
-         "0bn40lz9n08llq615p4qqqbi24zbkf0appfx3zgxg34a86ga9zds"))))
+         "0vqjr96s2rs45715hzf0g0wjahig4zjyiqfijmzzg4jyh9ni80yr"))))
     (build-system cargo-build-system)
     (arguments
      `(#:cargo-inputs
-       (("rust-bstr" ,rust-bstr-0.1)
+       (("rust-bstr" ,rust-bstr-0.2)
         ("rust-clap" ,rust-clap-2)
         ("rust-grep" ,rust-grep-0.2)
         ("rust-ignore" ,rust-ignore-0.4)
+        ("rust-jemallocator" ,rust-jemallocator-0.3)
         ("rust-lazy-static" ,rust-lazy-static-1.3)
         ("rust-log" ,rust-log-0.4)
         ("rust-num-cpus" ,rust-num-cpus-1.10)
@@ -152,9 +154,7 @@ also knows about symlinks, extended attributes, and Git.")
         ("rust-serde-json" ,rust-serde-json-1.0)
         ("rust-termcolor" ,rust-termcolor-1.0))
        #:cargo-development-inputs
-       (("rust-clap" ,rust-clap-2)
-        ("rust-lazy-static" ,rust-lazy-static-1.3)
-        ("rust-serde" ,rust-serde-1.0)
+       (("rust-serde" ,rust-serde-1.0)
         ("rust-serde-derive" ,rust-serde-derive-1.0))))
     (home-page "https://github.com/BurntSushi/ripgrep")
     (synopsis "Line-oriented search tool")
-- 
2.25.0




This bug report was last modified 5 years and 142 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.