Codebase list rust-serde-xml-rs / d672478
fd-find: new upstream release Sylvestre Ledru 1 year, 11 months ago
8 changed file(s) with 36 addition(s) and 37 deletion(s). Raw diff Collapse all Expand all
0 rust-fd-find (8.3.2-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Package fd-find 8.3.2 from crates.io using debcargo 2.5.0
3
4 -- Sylvestre Ledru <sylvestre@debian.org> Fri, 13 May 2022 19:00:16 +0200
5
06 rust-fd-find (8.3.1-1) unstable; urgency=medium
17
28 * Package fd-find 8.3.1 from crates.io using debcargo 2.5.0
00 target/*/release/build/fd-find-*/out/*.bash /usr/share/bash-completion/completions
11 target/*/release/build/fd-find-*/out/*.fish /usr/share/fish/completions
2 target/*/release/build/fd-find-*/out/_fdfind /usr/share/zsh/vendor-completions
3 contrib/completion/_fd /usr/share/zsh/vendor-completions
11 ===================================================================
22 --- fd-find.orig/build.rs
33 +++ fd-find/build.rs
4 @@ -27,4 +27,8 @@ fn main() {
5 app.gen_completions("fd", Shell::Bash, &outdir);
6 app.gen_completions("fd", Shell::Fish, &outdir);
7 app.gen_completions("fd", Shell::PowerShell, &outdir);
8 + app.gen_completions("fdfind", Shell::Bash, &outdir);
9 + app.gen_completions("fdfind", Shell::Fish, &outdir);
10 + app.gen_completions("fdfind", Shell::Zsh, &outdir);
11 + app.gen_completions("fdfind", Shell::PowerShell, &outdir);
4 @@ -28,6 +28,6 @@ fn main() {
5 let mut app = build_app();
6 // NOTE: zsh completions are hand written in contrib/completion/_fd
7 for shell in [Bash, PowerShell, Fish, Elvish] {
8 - generate_to(shell, &mut app, "fd", &outdir).unwrap();
9 + generate_to(shell, &mut app, "fdfind", &outdir).unwrap();
10 }
1211 }
11 ===================================================================
22 --- fd-find.orig/Cargo.toml
33 +++ fd-find/Cargo.toml
4 @@ -95,12 +95,12 @@ version = "2.34.0"
4 @@ -113,13 +113,13 @@ version = "3.0"
55 [build-dependencies.version_check]
66 version = "0.9"
77
88 -[features]
99 -default = ["use-jemalloc"]
1010 -use-jemalloc = ["jemallocator"]
11 +#[features]
12 +#default = ["use-jemalloc"]
13 +#use-jemalloc = ["jemallocator"]
14
1115 -[target."cfg(all(not(windows), not(target_os = \"android\"), not(target_os = \"macos\"), not(target_os = \"freebsd\"), not(target_env = \"musl\"), not(target_arch = \"riscv64\")))".dependencies.jemallocator]
1216 -version = "0.3.0"
1317 -optional = true
14 +#[features]
15 +#default = ["use-jemalloc"]
16 +#use-jemalloc = ["jemallocator"]
1718 +#[target."cfg(all(not(windows), not(target_os = \"android\"), not(target_os = \"macos\"), not(target_os = \"freebsd\"), not(target_env = \"musl\"), not(target_arch = \"riscv64\")))".dependencies.jemallocator]
1819 +#version = "0.3.0"
1920 +#optional = true
21
2022 [target."cfg(all(unix, not(target_os = \"redox\")))".dependencies.libc]
2123 version = "0.2"
22 [target."cfg(unix)".dependencies.nix]
2324 Index: fd-find/src/main.rs
2425 ===================================================================
2526 --- fd-find.orig/src/main.rs
0 Index: fd-find/Cargo.toml
1 ===================================================================
2 --- fd-find.orig/Cargo.toml
3 +++ fd-find/Cargo.toml
4 @@ -43,7 +43,7 @@ version = "0.2"
5 version = "0.4"
6
7 [dependencies.clap]
8 -version = "2.34.0"
9 +version = "2"
10 features = ["suggestions", "color", "wrap_help"]
11
12 [dependencies.ctrlc]
13 @@ -90,7 +90,7 @@ version = "0.3"
14 [dev-dependencies.test-case]
15 version = "1.2"
16 [build-dependencies.clap]
17 -version = "2.34.0"
18 +version = "2"
19
20 [build-dependencies.version_check]
21 version = "0.9"
0 Index: fd-find/Cargo.toml
1 ===================================================================
2 --- fd-find.orig/Cargo.toml
3 +++ fd-find/Cargo.toml
4 @@ -78,7 +78,7 @@ version = "0.4.3"
5 version = "0.8"
6
7 [dependencies.normpath]
8 -version = "0.3.2"
9 +version = "0.3"
10
11 [dependencies.num_cpus]
12 version = "1.13"
00 disable-jemallocator.diff
11 completion-fdfind.diff
22 relax-clap.diff
3 relax-normpath.diff
99 override_dh_install:
1010 dh_install
1111 set -e; for i in debian/fd-find/usr/share/bash-completion/completions/*.bash; do mv "$$i" "$${i%.bash}"; done
12 mkdir -p debian/fd-find/usr/share/zsh/vendor-completions
13 cp contrib/completion/_fd debian/fd-find/usr/share/zsh/vendor-completions
14 cd debian/fd-find/usr/share/zsh/vendor-completions && ln -s _fd _fdfind && cd -
1215 dh_missing
1316
1417 override_dh_dwz: