Skip to content

Commit

Permalink
ripgrep: update to 14.1.0.
Browse files Browse the repository at this point in the history
14.1.0
======
This is a minor release with a few small new features and bug fixes. This
release contains a bug fix for unbounded memory growth while walking a
directory tree. This release also includes improvements to the completions for
the `fish` shell, and release binaries for several additional ARM targets.

Bug fixes:

* [BUG #2664](BurntSushi/ripgrep#2690):
  Fix unbounded memory growth in the `ignore` crate.

Feature enhancements:

* Added or improved file type filtering for Lean and Meson.
* [FEATURE #2684](BurntSushi/ripgrep#2684):
  Improve completions for the `fish` shell.
* [FEATURE #2702](BurntSushi/ripgrep#2702):
  Add release binaries for `armv7-unknown-linux-gnueabihf`,
  `armv7-unknown-linux-musleabihf` and `armv7-unknown-linux-musleabi`.
  • Loading branch information
0-wiz-0 committed Jan 7, 2024
1 parent 176c289 commit c2e575c
Show file tree
Hide file tree
Showing 3 changed files with 83 additions and 91 deletions.
4 changes: 2 additions & 2 deletions textproc/ripgrep/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.21 2023/11/29 13:43:22 pin Exp $
# $NetBSD: Makefile,v 1.22 2024/01/07 16:11:36 wiz Exp $

DISTNAME= ripgrep-14.0.3
DISTNAME= ripgrep-14.1.0
CATEGORIES= textproc
MASTER_SITES= ${MASTER_SITE_GITHUB:=BurntSushi/}

Expand Down
42 changes: 20 additions & 22 deletions textproc/ripgrep/cargo-depends.mk
Original file line number Diff line number Diff line change
@@ -1,46 +1,44 @@
# $NetBSD: cargo-depends.mk,v 1.3 2023/11/28 10:12:28 pin Exp $
# $NetBSD: cargo-depends.mk,v 1.4 2024/01/07 16:11:36 wiz Exp $

CARGO_CRATE_DEPENDS+= aho-corasick-1.1.2
CARGO_CRATE_DEPENDS+= anyhow-1.0.75
CARGO_CRATE_DEPENDS+= anyhow-1.0.79
CARGO_CRATE_DEPENDS+= autocfg-1.1.0
CARGO_CRATE_DEPENDS+= bstr-1.8.0
CARGO_CRATE_DEPENDS+= bstr-1.9.0
CARGO_CRATE_DEPENDS+= cc-1.0.83
CARGO_CRATE_DEPENDS+= cfg-if-1.0.0
CARGO_CRATE_DEPENDS+= crossbeam-channel-0.5.8
CARGO_CRATE_DEPENDS+= crossbeam-deque-0.8.3
CARGO_CRATE_DEPENDS+= crossbeam-epoch-0.9.15
CARGO_CRATE_DEPENDS+= crossbeam-utils-0.8.16
CARGO_CRATE_DEPENDS+= crossbeam-channel-0.5.10
CARGO_CRATE_DEPENDS+= crossbeam-deque-0.8.4
CARGO_CRATE_DEPENDS+= crossbeam-epoch-0.9.17
CARGO_CRATE_DEPENDS+= crossbeam-utils-0.8.18
CARGO_CRATE_DEPENDS+= encoding_rs-0.8.33
CARGO_CRATE_DEPENDS+= encoding_rs_io-0.1.7
CARGO_CRATE_DEPENDS+= glob-0.3.1
CARGO_CRATE_DEPENDS+= itoa-1.0.9
CARGO_CRATE_DEPENDS+= itoa-1.0.10
CARGO_CRATE_DEPENDS+= jemalloc-sys-0.5.4+5.3.0-patched
CARGO_CRATE_DEPENDS+= jemallocator-0.5.4
CARGO_CRATE_DEPENDS+= jobserver-0.1.27
CARGO_CRATE_DEPENDS+= lexopt-0.3.0
CARGO_CRATE_DEPENDS+= libc-0.2.150
CARGO_CRATE_DEPENDS+= libc-0.2.151
CARGO_CRATE_DEPENDS+= libm-0.2.8
CARGO_CRATE_DEPENDS+= log-0.4.20
CARGO_CRATE_DEPENDS+= memchr-2.6.4
CARGO_CRATE_DEPENDS+= memmap2-0.9.0
CARGO_CRATE_DEPENDS+= memoffset-0.9.0
CARGO_CRATE_DEPENDS+= memchr-2.7.1
CARGO_CRATE_DEPENDS+= memmap2-0.9.3
CARGO_CRATE_DEPENDS+= num-traits-0.2.17
CARGO_CRATE_DEPENDS+= packed_simd-0.3.9
CARGO_CRATE_DEPENDS+= pcre2-0.2.6
CARGO_CRATE_DEPENDS+= pcre2-sys-0.2.7
CARGO_CRATE_DEPENDS+= pkg-config-0.3.27
CARGO_CRATE_DEPENDS+= proc-macro2-1.0.70
CARGO_CRATE_DEPENDS+= quote-1.0.33
CARGO_CRATE_DEPENDS+= pcre2-sys-0.2.8
CARGO_CRATE_DEPENDS+= pkg-config-0.3.28
CARGO_CRATE_DEPENDS+= proc-macro2-1.0.76
CARGO_CRATE_DEPENDS+= quote-1.0.35
CARGO_CRATE_DEPENDS+= regex-1.10.2
CARGO_CRATE_DEPENDS+= regex-automata-0.4.3
CARGO_CRATE_DEPENDS+= regex-syntax-0.8.2
CARGO_CRATE_DEPENDS+= ryu-1.0.15
CARGO_CRATE_DEPENDS+= ryu-1.0.16
CARGO_CRATE_DEPENDS+= same-file-1.0.6
CARGO_CRATE_DEPENDS+= scopeguard-1.2.0
CARGO_CRATE_DEPENDS+= serde-1.0.193
CARGO_CRATE_DEPENDS+= serde_derive-1.0.193
CARGO_CRATE_DEPENDS+= serde_json-1.0.108
CARGO_CRATE_DEPENDS+= syn-2.0.39
CARGO_CRATE_DEPENDS+= serde-1.0.195
CARGO_CRATE_DEPENDS+= serde_derive-1.0.195
CARGO_CRATE_DEPENDS+= serde_json-1.0.111
CARGO_CRATE_DEPENDS+= syn-2.0.48
CARGO_CRATE_DEPENDS+= termcolor-1.4.0
CARGO_CRATE_DEPENDS+= textwrap-0.16.0
CARGO_CRATE_DEPENDS+= unicode-ident-1.0.12
Expand Down
Loading

0 comments on commit c2e575c

Please sign in to comment.