Codebase list rust-libslirp / d96afe0
Update ignore package Ximin Luo 5 years ago
4 changed file(s) with 8 addition(s) and 44 deletion(s). Raw diff Collapse all Expand all
0 rust-ignore (0.4.6-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Package ignore 0.4.6 from crates.io using debcargo 2.2.10
3
4 -- Ximin Luo <infinity0@debian.org> Tue, 5 Feb 2019 19:00:06 -0800
5
06 rust-ignore (0.4.4-1) unstable; urgency=medium
17
28 * Team upload.
2020
2121 Files: debian/*
2222 Copyright:
23 2018 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
24 2018 Ximin Luo <infinity0@debian.org>
23 2018-2019 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
24 2018-2019 Ximin Luo <infinity0@debian.org>
2525 License: Unlicense or MIT
2626
2727 License: MIT
+0
-41
src/ignore/debian/patches/relax-crossbeam-channel-dep.diff less more
0 Index: rust-ignore-0.4.4/Cargo.toml
1 ===================================================================
2 --- rust-ignore-0.4.4.orig/Cargo.toml
3 +++ rust-ignore-0.4.4/Cargo.toml
4 @@ -26,7 +26,7 @@ repository = "https://github.com/BurntSu
5 name = "ignore"
6 bench = false
7 [dependencies.crossbeam-channel]
8 -version = "0.2.4"
9 +version = "0.3.2"
10
11 [dependencies.globset]
12 version = "0.4.2"
13 Index: rust-ignore-0.4.4/src/walk.rs
14 ===================================================================
15 --- rust-ignore-0.4.4.orig/src/walk.rs
16 +++ rust-ignore-0.4.4/src/walk.rs
17 @@ -1446,12 +1446,12 @@ impl Worker {
18 return None;
19 }
20 match self.rx.try_recv() {
21 - Some(Message::Work(work)) => {
22 + Ok(Message::Work(work)) => {
23 self.waiting(false);
24 self.quitting(false);
25 return Some(work);
26 }
27 - Some(Message::Quit) => {
28 + Ok(Message::Quit) => {
29 // We can't just quit because a Message::Quit could be
30 // spurious. For example, it's possible to observe that
31 // all workers are waiting even if there's more work to
32 @@ -1482,7 +1482,7 @@ impl Worker {
33 // Otherwise, spin.
34 }
35 }
36 - None => {
37 + Err(_) => {
38 self.waiting(true);
39 self.quitting(false);
40 if self.num_waiting() == self.threads {
+0
-1
src/ignore/debian/patches/series less more
0 relax-crossbeam-channel-dep.diff