homebrew-core/Formula/fd.rb
2019-11-02 15:23:46 -04:00

65 lines
2.2 KiB
Ruby

class Fd < Formula
desc "Simple, fast and user-friendly alternative to find"
homepage "https://github.com/sharkdp/fd"
url "https://github.com/sharkdp/fd/archive/v7.4.0.tar.gz"
sha256 "33570ba65e7f8b438746cb92bb9bc4a6030b482a0d50db37c830c4e315877537"
head "https://github.com/sharkdp/fd.git"
bottle do
cellar :any_skip_relocation
rebuild 2
sha256 "4dd2425c04940bc5eb68f21fe3bb0ff71fffeed73f593fccd76adccb31599b44" => :catalina
sha256 "2170c093e261e0e859e60af3b319404624410eecd15205443d126b1a648bdb8f" => :mojave
sha256 "9e14e7a58466daaaf876c4f6ab84ec3c4c1635a41bd1017f1cc73fdf91350b27" => :high_sierra
end
depends_on "rust" => :build
# Work around issue with rust/jemalloc on Catalina
# https://github.com/sharkdp/fd/issues/498
patch :DATA
def install
ENV["SHELL_COMPLETIONS_DIR"] = buildpath
system "cargo", "install", "--locked", "--root", prefix, "--path", "."
man1.install "doc/fd.1"
bash_completion.install "fd.bash"
fish_completion.install "fd.fish"
zsh_completion.install "_fd"
end
test do
touch "foo_file"
touch "test_file"
assert_equal "test_file", shell_output("#{bin}/fd test").chomp
end
end
__END__
diff -pur a/Cargo.toml b/Cargo.toml
--- a/Cargo.toml 2019-09-15 19:29:15.000000000 +0200
+++ b/Cargo.toml 2019-10-19 10:14:25.000000000 +0200
@@ -52,9 +52,6 @@ features = ["suggestions", "color", "wra
[target.'cfg(all(unix, not(target_os = "redox")))'.dependencies]
libc = "0.2"
-[target.'cfg(all(not(windows), not(target_env = "musl")))'.dependencies]
-jemallocator = "0.3.0"
-
[dev-dependencies]
diff = "0.1"
tempdir = "0.3"
diff -pur a/src/main.rs b/src/main.rs
--- a/src/main.rs 2019-09-15 19:29:15.000000000 +0200
+++ b/src/main.rs 2019-10-19 10:14:39.000000000 +0200
@@ -35,11 +35,6 @@ use crate::internal::{
pattern_has_uppercase_char, transform_args_with_exec, FileTypes,
};
-// We use jemalloc for performance reasons, see https://github.com/sharkdp/fd/pull/481
-#[cfg(all(not(windows), not(target_env = "musl")))]
-#[global_allocator]
-static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
-
fn main() {
let checked_args = transform_args_with_exec(env::args_os());
let matches = app::build_app().get_matches_from(checked_args);