/[packages]/cauldron/rust/current/SOURCES/rustc-1.63.0-disable-http2.patch
ViewVC logotype

Contents of /cauldron/rust/current/SOURCES/rustc-1.63.0-disable-http2.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1789601 - (show annotations) (download)
Mon Mar 7 21:34:21 2022 UTC (2 years, 1 month ago) by akien
Original Path: cauldron/rust/current/SOURCES/rustc-1.59.0-disable-http2.patch
File size: 2515 byte(s)
- Tue Mar 01 2022 Josh Stone <jistone@redhat.com> - 1.59.0-2
  o Update to 1.59.0.

1 --- rustc-1.59.0-src/Cargo.lock.orig 2022-02-22 10:19:00.330367749 -0800
2 +++ rustc-1.59.0-src/Cargo.lock 2022-02-22 10:19:00.332367706 -0800
3 @@ -909,7 +909,6 @@
4 dependencies = [
5 "cc",
6 "libc",
7 - "libnghttp2-sys",
8 "libz-sys",
9 "openssl-sys",
10 "pkg-config",
11 @@ -1957,16 +1956,6 @@
12 checksum = "7fc7aa29613bd6a620df431842069224d8bc9011086b1db4c0e0cd47fa03ec9a"
13
14 [[package]]
15 -name = "libnghttp2-sys"
16 -version = "0.1.4+1.41.0"
17 -source = "registry+https://github.com/rust-lang/crates.io-index"
18 -checksum = "03624ec6df166e79e139a2310ca213283d6b3c30810c54844f307086d4488df1"
19 -dependencies = [
20 - "cc",
21 - "libc",
22 -]
23 -
24 -[[package]]
25 name = "libz-sys"
26 version = "1.1.3"
27 source = "registry+https://github.com/rust-lang/crates.io-index"
28 --- rustc-1.59.0-src/src/tools/cargo/Cargo.toml.orig 2022-02-22 10:19:00.332367706 -0800
29 +++ rustc-1.59.0-src/src/tools/cargo/Cargo.toml 2022-02-22 10:19:54.029231795 -0800
30 @@ -22,7 +22,7 @@
31 cargo-util = { path = "crates/cargo-util", version = "0.1.2" }
32 crates-io = { path = "crates/crates-io", version = "0.33.1" }
33 crossbeam-utils = "0.8"
34 -curl = { version = "0.4.41", features = ["http2"] }
35 +curl = { version = "0.4.41", features = [] }
36 curl-sys = "0.4.50"
37 env_logger = "0.9.0"
38 pretty_env_logger = { version = "0.4", optional = true }
39 --- rustc-1.59.0-src/src/tools/cargo/src/cargo/core/package.rs.orig 2022-02-21 18:48:53.000000000 -0800
40 +++ rustc-1.59.0-src/src/tools/cargo/src/cargo/core/package.rs 2022-02-22 10:19:00.332367706 -0800
41 @@ -419,14 +419,8 @@
42 // Also note that pipelining is disabled as curl authors have indicated
43 // that it's buggy, and we've empirically seen that it's buggy with HTTP
44 // proxies.
45 - let mut multi = Multi::new();
46 - let multiplexing = config.http_config()?.multiplexing.unwrap_or(true);
47 - multi
48 - .pipelining(false, multiplexing)
49 - .with_context(|| "failed to enable multiplexing/pipelining in curl")?;
50 -
51 - // let's not flood crates.io with connections
52 - multi.set_max_host_connections(2)?;
53 + let multi = Multi::new();
54 + let multiplexing = false;
55
56 Ok(PackageSet {
57 packages: package_ids
58 @@ -655,7 +649,7 @@
59 macro_rules! try_old_curl {
60 ($e:expr, $msg:expr) => {
61 let result = $e;
62 - if cfg!(target_os = "macos") {
63 + if cfg!(any(target_os = "linux", target_os = "macos")) {
64 if let Err(e) = result {
65 warn!("ignoring libcurl {} error: {}", $msg, e);
66 }

  ViewVC Help
Powered by ViewVC 1.1.30