Codebase list rust-libslirp / 47cb9c1
package fsevents, as it's needed by notify that's needed by ripasso Alexander Kjäll 3 years ago
6 changed file(s) with 140 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 rust-fsevent (2.0.1-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Package fsevent 2.0.1 from crates.io using debcargo 2.4.2
3
4 -- Alexander Kjäll <alexander.kjall@gmail.com> Sun, 31 May 2020 13:56:06 +0200
0 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: fsevent
2 Upstream-Contact: Pierre Baillet <pierre@baillet.name>
3 Source: https://github.com/octplane/fsevent-rust
4
5 Files: *
6 Copyright: FIXME (overlay) UNKNOWN-YEARS Pierre Baillet <pierre@baillet.name>
7 License: MIT
8 Comment:
9 FIXME (overlay): Since upstream copyright years are not available in
10 Cargo.toml, they were extracted from the upstream Git repository. This may not
11 be correct information so you should review and fix this before uploading to
12 the archive.
13
14 Files: debian/*
15 Copyright:
16 2020 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
17 2020 Alexander Kjäll <alexander.kjall@gmail.com>
18 License: MIT
19
20 License: MIT
21 Permission is hereby granted, free of charge, to any person obtaining a copy
22 of this software and associated documentation files (the "Software"), to deal
23 in the Software without restriction, including without limitation the rights
24 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25 copies of the Software, and to permit persons to whom the Software is
26 furnished to do so, subject to the following conditions:
27 .
28 The above copyright notice and this permission notice shall be included in all
29 copies or substantial portions of the Software.
30 .
31 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
32 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
33 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
34 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
35 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
36 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
37 SOFTWARE.
0 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: fsevent
2 Upstream-Contact: Pierre Baillet <pierre@baillet.name>
3 Source: https://github.com/octplane/fsevent-rust
4
5 Files: *
6 Copyright: FIXME (overlay) UNKNOWN-YEARS Pierre Baillet <pierre@baillet.name>
7 License: MIT
8 Comment:
9 FIXME (overlay): Since upstream copyright years are not available in
10 Cargo.toml, they were extracted from the upstream Git repository. This may not
11 be correct information so you should review and fix this before uploading to
12 the archive.
13
14 Files: ./LICENSE
15 Copyright: 2015 Pierre Baillet
16 License: UNKNOWN-LICENSE; FIXME (overlay)
17 Comment:
18 FIXME (overlay): These notices are extracted from files. Please review them
19 before uploading to the archive.
20
21 Files: debian/*
22 Copyright:
23 2020 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
24 2020 Alexander Kjäll <alexander.kjall@gmail.com>
25 License: MIT
26
27 License: MIT
28 Permission is hereby granted, free of charge, to any person obtaining a copy
29 of this software and associated documentation files (the "Software"), to deal
30 in the Software without restriction, including without limitation the rights
31 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
32 copies of the Software, and to permit persons to whom the Software is
33 furnished to do so, subject to the following conditions:
34 .
35 The above copyright notice and this permission notice shall be included in all
36 copies or substantial portions of the Software.
37 .
38 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
39 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
40 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
41 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
42 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
43 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
44 SOFTWARE.
0 overlay = "."
1 uploaders = ["Alexander Kjäll <alexander.kjall@gmail.com>"]
2 test_is_broken = true
0 diff --git a/examples/fsevent-async-demo.rs b/examples/fsevent-async-demo.rs
1 index 9d12bc4..1158ad4 100644
2 --- a/examples/fsevent-async-demo.rs
3 +++ b/examples/fsevent-async-demo.rs
4 @@ -3,6 +3,10 @@ extern crate fsevent;
5 use std::sync::mpsc::channel;
6 use std::thread;
7
8 +#[cfg(not(target_arch = "macOS"))]
9 +fn main() {}
10 +
11 +#[cfg(target_arch = "macOS")]
12 fn main() {
13 let (sender, receiver) = channel();
14
15 diff --git a/examples/fsevent-demo.rs b/examples/fsevent-demo.rs
16 index 3900a73..ae54c96 100644
17 --- a/examples/fsevent-demo.rs
18 +++ b/examples/fsevent-demo.rs
19 @@ -2,6 +2,10 @@ extern crate fsevent;
20 use std::sync::mpsc::channel;
21 use std::thread;
22
23 +#[cfg(not(target_arch = "macOS"))]
24 +fn main() {}
25 +
26 +#[cfg(target_arch = "macOS")]
27 fn main() {
28 let (sender, receiver) = channel();
29
30 diff --git a/src/lib.rs b/src/lib.rs
31 index 628e751..dd99b9b 100644
32 --- a/src/lib.rs
33 +++ b/src/lib.rs
34 @@ -1,3 +1,4 @@
35 +#![cfg(target_arch = "macOS")]
36 #![deny(trivial_numeric_casts, unstable_features, unused_import_braces, unused_qualifications)]
37 #![cfg_attr(feature = "cargo-clippy", allow(unreadable_literal))]
38
39 diff --git a/tests/fsevent.rs b/tests/fsevent.rs
40 index 42eb537..374508d 100644
41 --- a/tests/fsevent.rs
42 +++ b/tests/fsevent.rs
43 @@ -1,3 +1,4 @@
44 +#![cfg(target_arch = "macOS")]
45 extern crate fsevent;
46 extern crate tempfile;
47 extern crate time;
0 build-fsevent-on-non-macos.patch