diff --git a/.gitignore b/.gitignore index 4054430..b1294e3 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /tokio-executor-0.1.0.crate +/tokio-executor-0.1.1.crate diff --git a/rust-tokio-executor.spec b/rust-tokio-executor.spec index f9dd8b7..6cf76d6 100644 --- a/rust-tokio-executor.spec +++ b/rust-tokio-executor.spec @@ -5,20 +5,22 @@ %global crate tokio-executor Name: rust-%{crate} -Version: 0.1.0 +Version: 0.1.1 Release: 1%{?dist} Summary: Future execution primitives -# https://github.com/tokio-rs/tokio/issues/202 -License: MIT or ASL 2.0 +License: MIT URL: https://crates.io/crates/tokio-executor Source0: https://crates.io/api/v1/crates/%{crate}/%{version}/download#/%{crate}-%{version}.crate +# Initial patched metadata +# * remove the unstable-futures feature and futures2 dependency -> pre-release futures 0.2.0 beta +Patch0: tokio-executor-0.1.1-fix-metadata.diff ExclusiveArch: %{rust_arches} BuildRequires: rust-packaging # [dependencies] -BuildRequires: (crate(futures) >= 0.1.18 with crate(futures) < 0.2.0) +BuildRequires: (crate(futures) >= 0.1.19 with crate(futures) < 0.2.0) %description %{summary}. @@ -49,9 +51,13 @@ which use %{crate} from crates.io. %endif %files devel +%license LICENSE %doc CHANGELOG.md README.md %{cargo_registry}/%{crate}-%{version}/ %changelog +* Fri Mar 23 2018 Josh Stone - 0.1.1-1 +- Update to 0.1.1 + * Fri Mar 09 2018 Igor Gnatenko - 0.1.0-1 - Initial package diff --git a/sources b/sources index 856aa86..094a8f8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (tokio-executor-0.1.0.crate) = 30103b4881e76949291063b0c623ff0e7c04d1fe49ab60c1b0cc4d4b08eb4c3cd5df5e240be4cb9745d82ccf16dddefb068afcbdd45ad5a2ceb5526b10081c96 +SHA512 (tokio-executor-0.1.1.crate) = f5a4d427ec78888703ed462a51e13ce68c87382ced152818a15c29b8c18b6538ca6281d4fe399fcdb5639ddf845bfc6bc73082f200852cda7ba829cb118d08d3 diff --git a/tokio-executor-0.1.1-fix-metadata.diff b/tokio-executor-0.1.1-fix-metadata.diff new file mode 100644 index 0000000..85d5de7 --- /dev/null +++ b/tokio-executor-0.1.1-fix-metadata.diff @@ -0,0 +1,13 @@ +--- tokio-executor-0.1.1/Cargo.toml 1969-12-31T16:00:00-08:00 ++++ tokio-executor-0.1.1/Cargo.toml 2018-03-23T13:05:28.893595-07:00 +@@ -24,10 +24,5 @@ + [dependencies.futures] + version = "0.1.19" + +-[dependencies.futures2] +-version = "0.1.0" +-optional = true +- + [features] + default = [] +-unstable-futures = ["futures2"]