Compare commits
No commits in common. 'i10ce' and 'epel9' have entirely different histories.
@ -1 +1,7 @@
|
|||||||
SOURCES/async-std-1.13.0.crate
|
/results_*/
|
||||||
|
/*.src.rpm
|
||||||
|
|
||||||
|
/async-std-1.9.0.crate
|
||||||
|
/async-std-1.10.0.crate
|
||||||
|
/async-std-1.11.0.crate
|
||||||
|
/async-std-1.12.0.crate
|
||||||
|
@ -1 +0,0 @@
|
|||||||
b32c6669b3d429cfae13e527be3e4ae3b5644545 SOURCES/async-std-1.13.0.crate
|
|
@ -1,25 +0,0 @@
|
|||||||
From 464572d9eaafc802657529706ebf4872e33e83ad Mon Sep 17 00:00:00 2001
|
|
||||||
From: Fabio Valentini <decathorpe@gmail.com>
|
|
||||||
Date: Tue, 21 May 2024 16:25:06 +0200
|
|
||||||
Subject: [PATCH 1/2] drop deny(warnings) from doctests
|
|
||||||
|
|
||||||
---
|
|
||||||
src/lib.rs | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/src/lib.rs b/src/lib.rs
|
|
||||||
index 86786e8..51d71ed 100644
|
|
||||||
--- a/src/lib.rs
|
|
||||||
+++ b/src/lib.rs
|
|
||||||
@@ -280,7 +280,7 @@
|
|
||||||
#![cfg_attr(feature = "docs", feature(doc_cfg))]
|
|
||||||
#![warn(missing_docs, missing_debug_implementations, rust_2018_idioms)]
|
|
||||||
#![allow(clippy::mutex_atomic, clippy::module_inception)]
|
|
||||||
-#![doc(test(attr(deny(rust_2018_idioms, warnings))))]
|
|
||||||
+#![doc(test(attr(deny(rust_2018_idioms))))]
|
|
||||||
#![doc(test(attr(allow(unused_extern_crates, unused_variables))))]
|
|
||||||
#![doc(html_logo_url = "https://async.rs/images/logo--hero.svg")]
|
|
||||||
|
|
||||||
--
|
|
||||||
2.46.0
|
|
||||||
|
|
@ -1,92 +0,0 @@
|
|||||||
From 8d9167b880dac3e4cafac486189e8b534f6b10d8 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Fabio Valentini <decathorpe@gmail.com>
|
|
||||||
Date: Wed, 28 Aug 2024 10:18:33 +0200
|
|
||||||
Subject: [PATCH 2/2] Drop tracing-level log statements that depend on
|
|
||||||
kv-log-macro
|
|
||||||
|
|
||||||
---
|
|
||||||
src/task/builder.rs | 40 ++++++++++++++++++++--------------------
|
|
||||||
1 file changed, 20 insertions(+), 20 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/src/task/builder.rs b/src/task/builder.rs
|
|
||||||
index aba0d61..40c31ab 100644
|
|
||||||
--- a/src/task/builder.rs
|
|
||||||
+++ b/src/task/builder.rs
|
|
||||||
@@ -54,10 +54,10 @@ impl Builder {
|
|
||||||
{
|
|
||||||
let wrapped = self.build(future);
|
|
||||||
|
|
||||||
- kv_log_macro::trace!("spawn", {
|
|
||||||
- task_id: wrapped.tag.id().0,
|
|
||||||
- parent_task_id: TaskLocalsWrapper::get_current(|t| t.id().0).unwrap_or(0),
|
|
||||||
- });
|
|
||||||
+ //kv_log_macro::trace!("spawn", {
|
|
||||||
+ // task_id: wrapped.tag.id().0,
|
|
||||||
+ // parent_task_id: TaskLocalsWrapper::get_current(|t| t.id().0).unwrap_or(0),
|
|
||||||
+ //});
|
|
||||||
|
|
||||||
let task = wrapped.tag.task().clone();
|
|
||||||
let handle = async_global_executor::spawn(wrapped);
|
|
||||||
@@ -74,10 +74,10 @@ impl Builder {
|
|
||||||
{
|
|
||||||
let wrapped = self.build(future);
|
|
||||||
|
|
||||||
- kv_log_macro::trace!("spawn_local", {
|
|
||||||
- task_id: wrapped.tag.id().0,
|
|
||||||
- parent_task_id: TaskLocalsWrapper::get_current(|t| t.id().0).unwrap_or(0),
|
|
||||||
- });
|
|
||||||
+ //kv_log_macro::trace!("spawn_local", {
|
|
||||||
+ // task_id: wrapped.tag.id().0,
|
|
||||||
+ // parent_task_id: TaskLocalsWrapper::get_current(|t| t.id().0).unwrap_or(0),
|
|
||||||
+ //});
|
|
||||||
|
|
||||||
let task = wrapped.tag.task().clone();
|
|
||||||
let handle = async_global_executor::spawn_local(wrapped);
|
|
||||||
@@ -99,10 +99,10 @@ impl Builder {
|
|
||||||
let res = future.await;
|
|
||||||
let _ = sender.send(res);
|
|
||||||
});
|
|
||||||
- kv_log_macro::trace!("spawn_local", {
|
|
||||||
- task_id: wrapped.tag.id().0,
|
|
||||||
- parent_task_id: TaskLocalsWrapper::get_current(|t| t.id().0).unwrap_or(0),
|
|
||||||
- });
|
|
||||||
+ //kv_log_macro::trace!("spawn_local", {
|
|
||||||
+ // task_id: wrapped.tag.id().0,
|
|
||||||
+ // parent_task_id: TaskLocalsWrapper::get_current(|t| t.id().0).unwrap_or(0),
|
|
||||||
+ //});
|
|
||||||
|
|
||||||
let task = wrapped.tag.task().clone();
|
|
||||||
wasm_bindgen_futures::spawn_local(wrapped);
|
|
||||||
@@ -125,10 +125,10 @@ impl Builder {
|
|
||||||
let _ = sender.send(res);
|
|
||||||
});
|
|
||||||
|
|
||||||
- kv_log_macro::trace!("spawn_local", {
|
|
||||||
- task_id: wrapped.tag.id().0,
|
|
||||||
- parent_task_id: TaskLocalsWrapper::get_current(|t| t.id().0).unwrap_or(0),
|
|
||||||
- });
|
|
||||||
+ //kv_log_macro::trace!("spawn_local", {
|
|
||||||
+ // task_id: wrapped.tag.id().0,
|
|
||||||
+ // parent_task_id: TaskLocalsWrapper::get_current(|t| t.id().0).unwrap_or(0),
|
|
||||||
+ //});
|
|
||||||
|
|
||||||
let task = wrapped.tag.task().clone();
|
|
||||||
wasm_bindgen_futures::spawn_local(wrapped);
|
|
||||||
@@ -147,10 +147,10 @@ impl Builder {
|
|
||||||
let wrapped = self.build(future);
|
|
||||||
|
|
||||||
// Log this `block_on` operation.
|
|
||||||
- kv_log_macro::trace!("block_on", {
|
|
||||||
- task_id: wrapped.tag.id().0,
|
|
||||||
- parent_task_id: TaskLocalsWrapper::get_current(|t| t.id().0).unwrap_or(0),
|
|
||||||
- });
|
|
||||||
+ //kv_log_macro::trace!("block_on", {
|
|
||||||
+ // task_id: wrapped.tag.id().0,
|
|
||||||
+ // parent_task_id: TaskLocalsWrapper::get_current(|t| t.id().0).unwrap_or(0),
|
|
||||||
+ //});
|
|
||||||
|
|
||||||
thread_local! {
|
|
||||||
/// Tracks the number of nested block_on calls.
|
|
||||||
--
|
|
||||||
2.46.0
|
|
||||||
|
|
@ -1,42 +0,0 @@
|
|||||||
--- async-std-1.13.0/Cargo.toml 1970-01-01T00:00:01+00:00
|
|
||||||
+++ async-std-1.13.0/Cargo.toml 2024-09-15T15:47:53.182471+00:00
|
|
||||||
@@ -291,7 +291,6 @@
|
|
||||||
"kv-log-macro",
|
|
||||||
"log",
|
|
||||||
"pin-project-lite",
|
|
||||||
- "gloo-timers",
|
|
||||||
]
|
|
||||||
docs = [
|
|
||||||
"attributes",
|
|
||||||
@@ -308,8 +307,6 @@
|
|
||||||
"once_cell",
|
|
||||||
"pin-utils",
|
|
||||||
"slab",
|
|
||||||
- "wasm-bindgen-futures",
|
|
||||||
- "futures-channel",
|
|
||||||
"async-channel",
|
|
||||||
"async-lock",
|
|
||||||
]
|
|
||||||
@@ -339,22 +336,3 @@
|
|
||||||
version = "2.0.0"
|
|
||||||
optional = true
|
|
||||||
|
|
||||||
-[target.'cfg(target_arch = "wasm32")'.dependencies.futures-channel]
|
|
||||||
-version = "0.3.4"
|
|
||||||
-optional = true
|
|
||||||
-
|
|
||||||
-[target.'cfg(target_arch = "wasm32")'.dependencies.gloo-timers]
|
|
||||||
-version = "0.3.0"
|
|
||||||
-features = ["futures"]
|
|
||||||
-optional = true
|
|
||||||
-
|
|
||||||
-[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen-futures]
|
|
||||||
-version = "0.4.10"
|
|
||||||
-optional = true
|
|
||||||
-
|
|
||||||
-[target.'cfg(target_arch = "wasm32")'.dev-dependencies.getrandom]
|
|
||||||
-version = "0.2.0"
|
|
||||||
-features = ["js"]
|
|
||||||
-
|
|
||||||
-[target.'cfg(target_arch = "wasm32")'.dev-dependencies.wasm-bindgen-test]
|
|
||||||
-version = "0.3.10"
|
|
@ -1,79 +0,0 @@
|
|||||||
--- async-std-1.13.0/Cargo.toml 1970-01-01T00:00:01+00:00
|
|
||||||
+++ async-std-1.13.0/Cargo.toml 2024-09-15T15:49:39.901950+00:00
|
|
||||||
@@ -70,10 +70,6 @@
|
|
||||||
path = "examples/list-dir.rs"
|
|
||||||
|
|
||||||
[[example]]
|
|
||||||
-name = "logging"
|
|
||||||
-path = "examples/logging.rs"
|
|
||||||
-
|
|
||||||
-[[example]]
|
|
||||||
name = "print-file"
|
|
||||||
path = "examples/print-file.rs"
|
|
||||||
|
|
||||||
@@ -88,11 +84,6 @@
|
|
||||||
[[example]]
|
|
||||||
name = "stdin-timeout"
|
|
||||||
path = "examples/stdin-timeout.rs"
|
|
||||||
-
|
|
||||||
-[[example]]
|
|
||||||
-name = "surf-web"
|
|
||||||
-path = "examples/surf-web.rs"
|
|
||||||
-required-features = ["surf"]
|
|
||||||
|
|
||||||
[[example]]
|
|
||||||
name = "task-local"
|
|
||||||
@@ -209,7 +200,7 @@
|
|
||||||
optional = true
|
|
||||||
|
|
||||||
[dependencies.async-channel]
|
|
||||||
-version = "1.8.0"
|
|
||||||
+version = "2.2.0"
|
|
||||||
optional = true
|
|
||||||
|
|
||||||
[dependencies.async-lock]
|
|
||||||
@@ -229,13 +220,8 @@
|
|
||||||
version = "0.3.4"
|
|
||||||
optional = true
|
|
||||||
|
|
||||||
-[dependencies.kv-log-macro]
|
|
||||||
-version = "1.0.6"
|
|
||||||
-optional = true
|
|
||||||
-
|
|
||||||
[dependencies.log]
|
|
||||||
version = "0.4.8"
|
|
||||||
-features = ["kv_unstable"]
|
|
||||||
optional = true
|
|
||||||
|
|
||||||
[dependencies.memchr]
|
|
||||||
@@ -257,13 +243,6 @@
|
|
||||||
[dependencies.slab]
|
|
||||||
version = "0.4.2"
|
|
||||||
optional = true
|
|
||||||
-
|
|
||||||
-[dependencies.surf]
|
|
||||||
-version = "2.0.0"
|
|
||||||
-optional = true
|
|
||||||
-
|
|
||||||
-[dev-dependencies.femme]
|
|
||||||
-version = "2.1.1"
|
|
||||||
|
|
||||||
[dev-dependencies.futures]
|
|
||||||
version = "0.3.4"
|
|
||||||
@@ -288,7 +267,6 @@
|
|
||||||
"async-global-executor",
|
|
||||||
"async-io",
|
|
||||||
"futures-lite",
|
|
||||||
- "kv-log-macro",
|
|
||||||
"log",
|
|
||||||
"pin-project-lite",
|
|
||||||
]
|
|
||||||
@@ -310,8 +288,6 @@
|
|
||||||
"async-channel",
|
|
||||||
"async-lock",
|
|
||||||
]
|
|
||||||
-tokio02 = ["async-global-executor/tokio02"]
|
|
||||||
-tokio03 = ["async-global-executor/tokio03"]
|
|
||||||
tokio1 = ["async-global-executor/tokio"]
|
|
||||||
unstable = [
|
|
||||||
"std",
|
|
@ -1,20 +0,0 @@
|
|||||||
[package]
|
|
||||||
cargo-toml-patch-comments = [
|
|
||||||
"drop tokio v0.2 and v0.3 features",
|
|
||||||
"drop optional surf dependency",
|
|
||||||
"drop additional dependencies for tracing-level log statements",
|
|
||||||
"Use the current major version of async-channel (https://github.com/async-rs/async-std/pull/1092)",
|
|
||||||
]
|
|
||||||
|
|
||||||
[scripts]
|
|
||||||
prep.post = [
|
|
||||||
"# * remove example that depends on the removed femme dev-dependency",
|
|
||||||
"rm examples/logging.rs",
|
|
||||||
"# remove example that depends on the removed optional surf dependency",
|
|
||||||
"rm examples/surf-web.rs",
|
|
||||||
]
|
|
||||||
|
|
||||||
[tests]
|
|
||||||
skip = ["io_timeout_timedout"]
|
|
||||||
comments = ["skip one failing test (probably related to mock environment)"]
|
|
||||||
|
|
@ -0,0 +1,70 @@
|
|||||||
|
--- async-std-1.12.0/Cargo.toml 1970-01-01T00:00:01+00:00
|
||||||
|
+++ async-std-1.12.0/Cargo.toml 2022-07-16T10:34:51.714357+00:00
|
||||||
|
@@ -46,10 +46,6 @@
|
||||||
|
[[example]]
|
||||||
|
name = "tcp-ipv4-and-6-echo"
|
||||||
|
required-features = ["unstable"]
|
||||||
|
-
|
||||||
|
-[[example]]
|
||||||
|
-name = "surf-web"
|
||||||
|
-required-features = ["surf"]
|
||||||
|
|
||||||
|
[[test]]
|
||||||
|
name = "stream"
|
||||||
|
@@ -109,10 +105,6 @@
|
||||||
|
version = "0.4.2"
|
||||||
|
optional = true
|
||||||
|
|
||||||
|
-[dependencies.surf]
|
||||||
|
-version = "2.0.0"
|
||||||
|
-optional = true
|
||||||
|
-
|
||||||
|
[dev-dependencies.femme]
|
||||||
|
version = "2.1.1"
|
||||||
|
|
||||||
|
@@ -142,7 +134,6 @@
|
||||||
|
"kv-log-macro",
|
||||||
|
"log",
|
||||||
|
"pin-project-lite",
|
||||||
|
- "gloo-timers",
|
||||||
|
]
|
||||||
|
docs = [
|
||||||
|
"attributes",
|
||||||
|
@@ -158,13 +149,10 @@
|
||||||
|
"once_cell",
|
||||||
|
"pin-utils",
|
||||||
|
"slab",
|
||||||
|
- "wasm-bindgen-futures",
|
||||||
|
- "futures-channel",
|
||||||
|
"async-channel",
|
||||||
|
"async-lock",
|
||||||
|
]
|
||||||
|
tokio02 = ["async-global-executor/tokio02"]
|
||||||
|
-tokio03 = ["async-global-executor/tokio03"]
|
||||||
|
tokio1 = ["async-global-executor/tokio"]
|
||||||
|
unstable = [
|
||||||
|
"std",
|
||||||
|
@@ -188,23 +176,3 @@
|
||||||
|
[target."cfg(not(target_os = \"unknown\"))".dependencies.futures-lite]
|
||||||
|
version = "1.0.0"
|
||||||
|
optional = true
|
||||||
|
-
|
||||||
|
-[target."cfg(target_arch = \"wasm32\")".dependencies.futures-channel]
|
||||||
|
-version = "0.3.4"
|
||||||
|
-optional = true
|
||||||
|
-
|
||||||
|
-[target."cfg(target_arch = \"wasm32\")".dependencies.gloo-timers]
|
||||||
|
-version = "0.2.1"
|
||||||
|
-features = ["futures"]
|
||||||
|
-optional = true
|
||||||
|
-
|
||||||
|
-[target."cfg(target_arch = \"wasm32\")".dependencies.wasm-bindgen-futures]
|
||||||
|
-version = "0.4.10"
|
||||||
|
-optional = true
|
||||||
|
-
|
||||||
|
-[target."cfg(target_arch = \"wasm32\")".dev-dependencies.getrandom]
|
||||||
|
-version = "0.2.0"
|
||||||
|
-features = ["js"]
|
||||||
|
-
|
||||||
|
-[target."cfg(target_arch = \"wasm32\")".dev-dependencies.wasm-bindgen-test]
|
||||||
|
-version = "0.3.10"
|
@ -0,0 +1,5 @@
|
|||||||
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri May 28 2021 Fabio Valentini <decathorpe@gmail.com> - 1.9.0-1
|
||||||
|
- Initial package
|
Loading…
Reference in new issue