Compare commits

..

No commits in common. 'epel10' and 'epel9' have entirely different histories.

@ -0,0 +1,3 @@
# rust-xz2
The rust-xz2 package

@ -1,29 +1,29 @@
# Generated by rust2rpm 26 # Generated by rust2rpm 21
# * outdated dev-dependencies: tokio v0.1 %bcond_without check
%bcond_with check
%global debug_package %{nil} %global debug_package %{nil}
%global crate xz2 %global crate xz2
Name: rust-xz2 Name: rust-%{crate}
Version: 0.1.7 Version: 0.1.7
Release: %autorelease Release: %autorelease
Summary: Rust bindings to liblzma Summary: Rust bindings to liblzma
# Upstream license specification: MIT/Apache-2.0 # Upstream license specification: MIT/Apache-2.0
License: MIT OR Apache-2.0 License: MIT or ASL 2.0
URL: https://crates.io/crates/xz2 URL: https://crates.io/crates/xz2
Source: %{crates_source} Source: %{crates_source}
# Manually created patch for downstream crate metadata changes # Initial patched metadata
# * drop unused support for tokio v0.1
# * drop feature for statically linking liblzma # * drop feature for statically linking liblzma
Patch: xz2-fix-metadata.diff Patch0: xz2-fix-metadata.diff
BuildRequires: cargo-rpm-macros >= 24 ExclusiveArch: %{rust_arches}
BuildRequires: rust-packaging >= 21
%global _description %{expand: %global _description %{expand:
Rust bindings to liblzma providing Read/Write streams as well as low- Rust bindings to liblzma providing Read/Write streams as well as low-level in-
level in-memory encoding/decoding.} memory encoding/decoding.}
%description %{_description} %description %{_description}
@ -54,8 +54,44 @@ use the "default" feature of the "%{crate}" crate.
%files -n %{name}+default-devel %files -n %{name}+default-devel
%ghost %{crate_instdir}/Cargo.toml %ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+futures-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+futures-devel %{_description}
This package contains library source intended for building other packages which
use the "futures" feature of the "%{crate}" crate.
%files -n %{name}+futures-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+tokio-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+tokio-devel %{_description}
This package contains library source intended for building other packages which
use the "tokio" feature of the "%{crate}" crate.
%files -n %{name}+tokio-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+tokio-io-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+tokio-io-devel %{_description}
This package contains library source intended for building other packages which
use the "tokio-io" feature of the "%{crate}" crate.
%files -n %{name}+tokio-io-devel
%ghost %{crate_instdir}/Cargo.toml
%prep %prep
%autosetup -n %{crate}-%{version} -p1 %autosetup -n %{crate}-%{version_no_tilde} -p1
%cargo_prep %cargo_prep
%generate_buildrequires %generate_buildrequires
@ -69,7 +105,8 @@ use the "default" feature of the "%{crate}" crate.
%if %{with check} %if %{with check}
%check %check
%cargo_test # * skip a test that relies on files which are not included in published crates
%cargo_test -- -- --skip standard_files
%endif %endif
%changelog %changelog

@ -1,11 +0,0 @@
[package]
summary = "Rust bindings to liblzma"
cargo-toml-patch-comments = [
"drop unused support for tokio v0.1",
"drop feature for statically linking liblzma",
]
[tests]
run = ["none"]
comments = ["outdated dev-dependencies: tokio v0.1"]

@ -1,29 +1,10 @@
--- xz2-0.1.7/Cargo.toml 1970-01-01T00:00:01+00:00 --- xz2-0.1.7/Cargo.toml 1970-01-01T00:00:01+00:00
+++ xz2-0.1.7/Cargo.toml 2024-09-21T23:12:17.487893+00:00 +++ xz2-0.1.7/Cargo.toml 2022-07-16T12:16:30.646078+00:00
@@ -39,16 +39,8 @@ @@ -60,7 +60,6 @@
"futures",
]
-[dependencies.futures]
-version = "0.1.26"
-optional = true
-
[dependencies.lzma-sys]
version = "0.1.18"
-
-[dependencies.tokio-io]
-version = "0.1.12"
-optional = true
[dev-dependencies.quickcheck]
version = "1.0.1"
@@ -59,9 +51,3 @@
[dev-dependencies.tokio-core]
version = "0.1.17" version = "0.1.17"
-[features] [features]
-static = ["lzma-sys/static"] -static = ["lzma-sys/static"]
-tokio = [ tokio = [
- "tokio-io", "tokio-io",
- "futures", "futures",
-]

Loading…
Cancel
Save