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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1753622 - (show annotations) (download)
Mon Nov 1 21:46:26 2021 UTC (2 years, 5 months ago) by akien
Original Path: cauldron/rust/current/SOURCES/rustc-1.56.0-disable-http2.patch
File size: 2515 byte(s)
- Sync with Fedora: Mon Nov 01 2021 Josh Stone <jistone@redhat.com> - 1.56.1-1
  o Update to 1.56.1.

1 --- rustc-1.56.0-src/Cargo.lock.orig 2021-10-19 18:03:53.928187581 -0700
2 +++ rustc-1.56.0-src/Cargo.lock 2021-10-19 18:05:41.443522980 -0700
3 @@ -877,7 +877,6 @@
4 dependencies = [
5 "cc",
6 "libc",
7 - "libnghttp2-sys",
8 "libz-sys",
9 "openssl-sys",
10 "pkg-config",
11 @@ -1907,16 +1906,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.56.0-src/src/tools/cargo/Cargo.toml.orig 2021-10-19 18:03:53.930187532 -0700
29 +++ rustc-1.56.0-src/src/tools/cargo/Cargo.toml 2021-10-19 18:05:13.663211469 -0700
30 @@ -25,7 +25,7 @@
31 cargo-util = { path = "crates/cargo-util", version = "0.1.1" }
32 crates-io = { path = "crates/crates-io", version = "0.33.0" }
33 crossbeam-utils = "0.8"
34 -curl = { version = "0.4.38", features = ["http2"] }
35 +curl = { version = "0.4.38", features = [] }
36 curl-sys = "0.4.48"
37 env_logger = "0.9.0"
38 pretty_env_logger = { version = "0.4", optional = true }
39 --- rustc-1.56.0-src/src/tools/cargo/src/cargo/core/package.rs.orig 2021-10-18 02:52:56.000000000 -0700
40 +++ rustc-1.56.0-src/src/tools/cargo/src/cargo/core/package.rs 2021-10-19 18:03:53.931187507 -0700
41 @@ -417,14 +417,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 @@ -653,7 +647,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