Commit 150d2d6c authored by Casey Strouse's avatar Casey Strouse Committed by GitHub

Update ripgrep from 12.0.1 to 12.1.0 (#4092)

parent 9242a212
...@@ -3,9 +3,9 @@ require 'package' ...@@ -3,9 +3,9 @@ require 'package'
class Ripgrep < Package class Ripgrep < Package
description 'ripgrep recursively searches directories for a regex pattern' description 'ripgrep recursively searches directories for a regex pattern'
homepage 'https://github.com/BurntSushi/ripgrep' homepage 'https://github.com/BurntSushi/ripgrep'
version '12.0.1' version '12.1.0'
source_url 'https://github.com/BurntSushi/ripgrep/archive/12.0.1.tar.gz' source_url 'https://github.com/BurntSushi/ripgrep/archive/12.1.0.tar.gz'
source_sha256 '5be34aa77a36ac9d8f1297a0d97069e4653e03f61c67d192cee32944cd2b6329' source_sha256 'ca2d11dd7b7346734d47ad8073468e9c409fbe85842a608d372b8d4fb36be291'
binary_url ({ binary_url ({
}) })
...@@ -16,12 +16,9 @@ class Ripgrep < Package ...@@ -16,12 +16,9 @@ class Ripgrep < Package
def self.build def self.build
case ARCH case ARCH
when 'aarch64' when 'aarch64', 'armv7l'
system 'rustup toolchain install 1.25.0-aarch64-unknown-linux-gnu' system 'rustup toolchain install 1.43.1-armv7-unknown-linux-gnueabihf'
system 'rustup default 1.25.0-aarch64-unknown-linux-gnu' system 'rustup default 1.43.1-armv7-unknown-linux-gnueabihf'
when 'armv7l'
system 'rustup toolchain install 1.25.0-armv7-unknown-linux-gnueabihf'
system 'rustup default 1.25.0-armv7-unknown-linux-gnueabihf'
else else
system 'rustup toolchain install stable' system 'rustup toolchain install stable'
system 'rustup default stable' system 'rustup default stable'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment