Codebase list rust-stfu8 / dcc25fa
fd-find: new upstream release Sylvestre Ledru 3 years ago
6 changed file(s) with 34 addition(s) and 25 deletion(s). Raw diff Collapse all Expand all
0 rust-fd-find (8.2.1-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Package fd-find 8.2.1 from crates.io using debcargo 2.4.3
3
4 -- Sylvestre Ledru <sylvestre@debian.org> Fri, 11 Dec 2020 10:17:34 +0100
5
06 rust-fd-find (8.1.1-2) unstable; urgency=medium
17
28 * Package fd-find 8.1.1 from crates.io using debcargo 2.4.3
3232 FIXME (overlay): These notices are extracted from files. Please review them
3333 before uploading to the archive.
3434
35 Files: ./contrib/completion/_fd
36 Copyright: 2011 Github zsh-users - http://github.com/zsh-users
37 License: UNKNOWN-LICENSE; FIXME (overlay)
38 Comment:
39 FIXME (overlay): These notices are extracted from files. Please review them
40 before uploading to the archive.
41
3542 Files: debian/*
3643 Copyright:
3744 2018-2020 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
11 ===================================================================
22 --- fd-find.orig/build.rs
33 +++ fd-find/build.rs
4 @@ -28,4 +28,8 @@ fn main() {
4 @@ -27,4 +27,8 @@ fn main() {
5 app.gen_completions("fd", Shell::Bash, &outdir);
56 app.gen_completions("fd", Shell::Fish, &outdir);
6 app.gen_completions("fd", Shell::Zsh, &outdir);
77 app.gen_completions("fd", Shell::PowerShell, &outdir);
88 + app.gen_completions("fdfind", Shell::Bash, &outdir);
99 + app.gen_completions("fdfind", Shell::Fish, &outdir);
55
66 [build-dependencies.version_check]
77 version = "0.9"
8 -[target."cfg(all(not(windows), not(target_os = \"macos\"), not(target_env = \"musl\")))".dependencies.jemallocator]
8 -[target."cfg(all(not(windows), not(target_os = \"android\"), not(target_os = \"macos\"), not(target_env = \"musl\")))".dependencies.jemallocator]
99 -version = "0.3.0"
10 +#[target."cfg(all(not(windows), not(target_os = \"macos\"), not(target_env = \"musl\")))".dependencies.jemallocator]
10 +#[target."cfg(all(not(windows), not(target_os = \"android\"), not(target_os = \"macos\"), not(target_env = \"musl\")))".dependencies.jemallocator]
1111 +#version = "0.3.0"
1212 [target."cfg(all(unix, not(target_os = \"redox\")))".dependencies.libc]
1313 version = "0.2"
1616 ===================================================================
1717 --- fd-find.orig/src/main.rs
1818 +++ fd-find/src/main.rs
19 @@ -34,9 +34,9 @@ use crate::regex_helper::pattern_has_upp
19 @@ -34,14 +34,14 @@ use crate::regex_helper::{pattern_has_up
2020
2121 // We use jemalloc for performance reasons, see https://github.com/sharkdp/fd/pull/481
2222 // FIXME: re-enable jemalloc on macOS, see comment in Cargo.toml file for more infos
23 -#[cfg(all(not(windows), not(target_os = "macos"), not(target_env = "musl")))]
23 -#[cfg(all(
24 - not(windows),
25 - not(target_os = "android"),
26 - not(target_os = "macos"),
27 - not(target_env = "musl")
28 -))]
2429 -#[global_allocator]
2530 -static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
26 +//#[cfg(all(not(windows), not(target_os = "macos"), not(target_env = "musl")))]
27 +//#[global_allocator]
28 +//static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
31 +// #[cfg(all(
32 +// not(windows),
33 +// not(target_os = "android"),
34 +// not(target_os = "macos"),
35 +// not(target_env = "musl")
36 +// ))]
37 +// #[global_allocator]
38 +// static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
2939
30 fn run() -> Result<ExitCode> {
31 let matches = app::build_app().get_matches_from(env::args_os());
40 // vivid --color-mode 8-bit generate molokai
41 const DEFAULT_LS_COLORS: &str = "
00 disable-jemallocator.diff
11 completion-fdfind.diff
2 update-dirs.diff
+0
-13
src/fd-find/debian/patches/update-dirs.diff less more
0 Index: fd-find/Cargo.toml
1 ===================================================================
2 --- fd-find.orig/Cargo.toml
3 +++ fd-find/Cargo.toml
4 @@ -48,7 +48,7 @@ features = ["suggestions", "color", "wra
5 version = "3.1"
6
7 [dependencies.dirs]
8 -version = "2.0"
9 +version = "3.0"
10
11 [dependencies.globset]
12 version = "0.4"