Codebase list rust-libslirp / 8987dbd
update backtrace, core-foundation, jobserver Ximin Luo 4 years ago
12 changed file(s) with 29 addition(s) and 56 deletion(s). Raw diff Collapse all Expand all
0 rust-backtrace (0.3.26-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Team upload.
3 * Package backtrace 0.3.26 from crates.io using debcargo 2.2.10
4
5 -- Ximin Luo <infinity0@debian.org> Thu, 30 May 2019 22:37:36 -0700
6
07 rust-backtrace (0.3.13-1) unstable; urgency=medium
18
29 * Team upload.
7373
7474 Files: debian/*
7575 Copyright:
76 2018 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
77 2018 kpcyrd <git@rxv.cc>
76 2018-2019 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
77 2018-2019 kpcyrd <git@rxv.cc>
7878 License: MIT or Apache-2.0
7979
8080 License: Apache-2.0
+0
-1
src/backtrace/debian/patches/series less more
0 update-dep-object.patch
+0
-11
src/backtrace/debian/patches/update-dep-object.patch less more
0 --- a/Cargo.toml
1 +++ b/Cargo.toml
2 @@ -67,7 +67,7 @@
3 optional = true
4
5 [dependencies.object]
6 -version = "0.9.0"
7 +version = "0.11"
8 optional = true
9
10 [dependencies.rustc-demangle]
0 rust-core-foundation (0.6.4-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Package core-foundation 0.6.4 from crates.io using debcargo 2.2.10
3
4 -- Ximin Luo <infinity0@debian.org> Thu, 30 May 2019 22:45:05 -0700
5
06 rust-core-foundation (0.6.3-2) unstable; urgency=medium
17
28 * Package core-foundation 0.6.3 from crates.io using debcargo 2.2.9
153153
154154 Files: debian/*
155155 Copyright:
156 2018 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
157 2018 Ximin Luo <infinity0@debian.org>
158 2018 Wolfgang Silbermayr <wolfgang@silbermayr.at>
156 2018-2019 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
157 2018-2019 Ximin Luo <infinity0@debian.org>
158 2018-2019 Wolfgang Silbermayr <wolfgang@silbermayr.at>
159159 License: MIT or Apache-2.0
160160
161161 License: Apache-2.0
+0
-34
src/core-foundation/debian/patches/0001-Use-libc-c_char-instead-of-i8-for-libc-calls.patch less more
0 From 2cffc810d382f83b7ac5073fa9c57dc7d208803c Mon Sep 17 00:00:00 2001
1 From: Wolfgang Silbermayr <wolfgang@silbermayr.at>
2 Date: Fri, 7 Dec 2018 06:11:50 +0100
3 Subject: [PATCH] Use libc c_char instead of i8 for libc calls
4
5 ---
6 src/url.rs | 4 ++--
7 1 file changed, 2 insertions(+), 2 deletions(-)
8
9 diff --git a/src/url.rs b/src/url.rs
10 index edf1de8..199ad2e 100644
11 --- a/src/url.rs
12 +++ b/src/url.rs
13 @@ -20,7 +20,7 @@ use std::ptr;
14 use std::path::{Path, PathBuf};
15 use std::mem;
16
17 -use libc::{strlen, PATH_MAX};
18 +use libc::{c_char, strlen, PATH_MAX};
19
20 #[cfg(unix)]
21 use std::os::unix::ffi::OsStrExt;
22 @@ -83,7 +83,7 @@ impl CFURL {
23 if result == false as Boolean {
24 return None;
25 }
26 - let len = strlen(buf.as_ptr() as *const i8);
27 + let len = strlen(buf.as_ptr() as *const c_char);
28 let path = OsStr::from_bytes(&buf[0..len]);
29 Some(PathBuf::from(path))
30 }
31 --
32 2.20.0.rc2
33
0 0001-Use-libc-c_char-instead-of-i8-for-libc-calls.patch
10 update-dep-uuid-version.patch
0 rust-jobserver (0.1.13-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Package jobserver 0.1.13 from crates.io using debcargo 2.2.10
3
4 -- Ximin Luo <infinity0@debian.org> Thu, 30 May 2019 22:50:48 -0700
5
06 rust-jobserver (0.1.11-1) unstable; urgency=medium
17
28 * Package jobserver 0.1.11 from crates.io using debcargo 2.2.5
2020
2121 Files: debian/*
2222 Copyright:
23 2018 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
24 2018 FIXME (overlay) Your Name <Your Email>
23 2018-2019 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
24 2018-2019 Ximin Luo <infinity0@debian.org>
2525 License: MIT or Apache-2.0
2626
2727 License: Apache-2.0
00 overlay = "."
1 uploaders = ["Ximin Luo <infinity0@debian.org>"]
33 [target."cfg(unix)".dependencies.libc]
44 version = "0.2"
55 [target."cfg(windows)".dependencies.rand]
6 -version = "0.4"
7 +version = "< 0.6, >= 0.4"
6 -version = "0.6"
7 +version = "< 0.7, >= 0.4"