Compare commits

...

6 Commits

Author SHA1 Message Date
Fabio Valentini 6e0f9b40b8
Disable tests and drop support for tokio v0.1
5 months ago
Fedora Release Engineering 13cf837475 Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
7 months ago
Fedora Release Engineering e1b696d3d4 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
1 year ago
Fabio Valentini ed9dad32d3
Regenerate with rust2rpm v24
2 years ago
Fedora Release Engineering 95b0613410 Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
2 years ago
Fedora Release Engineering 49afabd862 Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
2 years ago

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

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

@ -0,0 +1,11 @@
[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,10 +1,29 @@
--- xz2-0.1.7/Cargo.toml 1970-01-01T00:00:01+00:00
+++ xz2-0.1.7/Cargo.toml 2022-07-16T12:16:30.646078+00:00
@@ -60,7 +60,6 @@
+++ xz2-0.1.7/Cargo.toml 2024-09-21T23:12:17.487893+00:00
@@ -39,16 +39,8 @@
"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"
[features]
-[features]
-static = ["lzma-sys/static"]
tokio = [
"tokio-io",
"futures",
-tokio = [
- "tokio-io",
- "futures",
-]

Loading…
Cancel
Save