Codebase list rust-libslirp / 215edbd
uucore: new release + rebase of the patch Sylvestre Ledru 3 years ago
5 changed file(s) with 30 addition(s) and 16 deletion(s). Raw diff Collapse all Expand all
0 rust-uucore (0.0.2-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
0 rust-uucore (0.0.4-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
11
2 * Package uucore 0.0.2 from crates.io using debcargo 2.4.2
2 * Package uucore 0.0.4 from crates.io using debcargo 2.4.2
33
4 -- Sylvestre Ledru <sylvestre@debian.org> Wed, 22 Apr 2020 12:10:49 +0200
4 -- Sylvestre Ledru <sylvestre@debian.org> Mon, 01 Jun 2020 10:56:31 +0200
11 ===================================================================
22 --- uucore.orig/Cargo.toml
33 +++ uucore/Cargo.toml
4 @@ -28,9 +28,6 @@ version = ">= 0.3.3, <= 0.3.30"
4 @@ -32,9 +32,6 @@ version = ">= 0.3.3, <= 0.3.30"
55 version = "~2.1"
66 optional = true
77
1111 [dependencies.failure]
1212 version = "<= 0.1.1"
1313 optional = true
14 Index: uucore/src/fs.rs
14 Index: uucore/src/lib/features/fs.rs
1515 ===================================================================
16 --- uucore.orig/src/fs.rs
17 +++ uucore/src/fs.rs
16 --- uucore.orig/src/lib/features/fs.rs
17 +++ uucore/src/lib/features/fs.rs
1818 @@ -6,8 +6,6 @@
1919 // For the full copyright and license information, please view the LICENSE
2020 // file that was distributed with this source code.
2424 #[cfg(target_os = "redox")]
2525 extern crate termion;
2626
27 @@ -102,9 +100,10 @@ pub fn canonicalize<P: AsRef<Path>>(orig
27 @@ -102,11 +100,11 @@ pub fn canonicalize<P: AsRef<Path>>(orig
2828 let original = original.as_ref();
2929 let original = if original.is_absolute() {
3030 original.to_path_buf()
3131 - } else {
32 - dunce::canonicalize(env::current_dir().unwrap()).unwrap().join(original)
32 + }; /*else {
33 dunce::canonicalize(env::current_dir().unwrap())
34 .unwrap()
35 .join(original)
3336 - };
34 + } // windows specific
35 + // else {
36 + // dunce::canonicalize(env::current_dir().unwrap()).unwrap().join(original)
37 + //};
37 + };*/
3838
3939 let mut result = PathBuf::new();
4040 let mut parts = vec![];
0 Index: uucore/Cargo.toml
1 ===================================================================
2 --- uucore.orig/Cargo.toml
3 +++ uucore/Cargo.toml
4 @@ -67,7 +67,7 @@ version = "<= 0.1.42"
5 optional = true
6
7 [dependencies.wild]
8 -version = "2.0.0, < 2.0.2"
9 +version = "2.0"
10
11 [features]
12 default = []
00 disable-dunce.diff
1 disable-lower-wild-dep.diff
12 update-dep.diff
11 ===================================================================
22 --- uucore.orig/Cargo.toml
33 +++ uucore/Cargo.toml
4 @@ -22,7 +22,7 @@ categories = ["os"]
5 license = "MIT"
6 repository = "https://github.com/uutils/uucore"
4 @@ -26,7 +26,7 @@ repository = "https://github.com/uutils/
5 [lib]
6 path = "src/lib/lib.rs"
77 [dependencies.backtrace]
88 -version = ">= 0.3.3, <= 0.3.30"
99 +version = ">= 0.3.3"