Compare commits

...

9 Commits

Author SHA1 Message Date
Benjamin A. Beasley 0ce1cef703 Update the tokio-util dev-dependency to 0.7.x
5 months ago
Fedora Release Engineering d2a4811867 Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
7 months ago
Fabio Valentini ce2d2422ed
Rebuild with Rust 1.78 to fix incomplete debuginfo and backtraces
9 months ago
Fabio Valentini da70ef8792
Update to version 0.1.8; Fixes RHBZ#2259502
1 year ago
Fedora Release Engineering 828d8e2dab Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
1 year ago
Fabio Valentini adb6c8ab29
Regenerate with rust2rpm v24
2 years ago
Fedora Release Engineering d476cb4c0a Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
2 years ago
Fabio Valentini edea2e6ff6
Rebuild for fixed frame pointer compiler flags in Rust RPM macros
2 years ago
Fedora Release Engineering e26be82d01 Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
2 years ago

1
.gitignore vendored

@ -7,3 +7,4 @@
/weezl-0.1.4.crate
/weezl-0.1.5.crate
/weezl-0.1.7.crate
/weezl-0.1.8.crate

@ -1,24 +1,23 @@
# Generated by rust2rpm 21
# Generated by rust2rpm 26
%bcond_without check
%global crate weezl
Name: rust-%{crate}
Version: 0.1.7
Name: rust-weezl
Version: 0.1.8
Release: %autorelease
Summary: Fast LZW compression and decompression
# Upstream license specification: MIT OR Apache-2.0
License: MIT or ASL 2.0
License: MIT OR Apache-2.0
URL: https://crates.io/crates/weezl
Source: %{crates_source}
# Initial patched metadata
# * drop unused, benchmark-only criterion dev-dependency to speed up builds
Patch0: weezl-fix-metadata.diff
# Manually created patch for downstream crate metadata changes
# * drop unused, benchmark-only criterion dev-dependency
# * Update the tokio-util dev-dependency to 0.7.x
# (https://github.com/image-rs/weezl/pull/44)
Patch: weezl-fix-metadata.diff
ExclusiveArch: %{rust_arches}
BuildRequires: rust-packaging >= 21
BuildRequires: cargo-rpm-macros >= 24
%global _description %{expand:
Fast LZW compression and decompression.}
@ -27,12 +26,16 @@ Fast LZW compression and decompression.}
%package -n %{crate}
Summary: %{summary}
# MIT OR Apache-2.0
License: MIT OR Apache-2.0
# LICENSE.dependencies contains a full license breakdown
%description -n %{crate} %{_description}
%files -n %{crate}
%license LICENSE-APACHE
%license LICENSE-MIT
%license LICENSE.dependencies
%doc Changes.md
%doc README.md
%{_bindir}/lzw
@ -114,7 +117,7 @@ use the "std" feature of the "%{crate}" crate.
%ghost %{crate_instdir}/Cargo.toml
%prep
%autosetup -n %{crate}-%{version_no_tilde} -p1
%autosetup -n %{crate}-%{version} -p1
%cargo_prep
%generate_buildrequires
@ -122,6 +125,8 @@ use the "std" feature of the "%{crate}" crate.
%build
%cargo_build
%{cargo_license_summary}
%{cargo_license} > LICENSE.dependencies
%install
%cargo_install

@ -0,0 +1,4 @@
[tests]
run = ["doc"]
comments = ["files needed for encode/decode tests are not included in published crates"]

@ -1 +1 @@
SHA512 (weezl-0.1.7.crate) = 3fd8cb01dde494371df57001c97be90418b642ba88b0945cd98f973a4498743b83d383bcdfc8884db1da75271aeef4ce3b418e425f23690f12a5cc645c418e90
SHA512 (weezl-0.1.8.crate) = 6012de47d6bb5177820be9794e70ce6354577247750b8a125dad1d3e093d96cacba62471d8f67f056a72447bb6bf7fffabc6254ae96d93014a5200c71d571c97

@ -1,12 +1,31 @@
--- weezl-0.1.7/Cargo.toml 1970-01-01T00:00:01+00:00
+++ weezl-0.1.7/Cargo.toml 2022-07-18T08:34:15.942522+00:00
@@ -72,9 +72,6 @@
--- weezl-0.1.8/Cargo.toml 1970-01-01T00:00:01+00:00
+++ weezl-0.1.8/Cargo.toml 2024-09-15T05:35:19.687052+00:00
@@ -61,19 +61,11 @@
name = "implicit_reset"
required-features = ["std"]
-[[bench]]
-name = "msb8"
-harness = false
-required-features = ["std"]
-
[dependencies.futures]
version = "0.3.12"
features = ["std"]
optional = true
default-features = false
-
-[dev-dependencies.criterion]
-version = "0.3.1"
-
[dev-dependencies.tokio]
version = "1"
features = [
@@ -87,7 +79,7 @@
default-features = false
[dev-dependencies.tokio-util]
-version = "0.6.2"
+version = "0.7.7"
features = ["compat"]
default-features = false

Loading…
Cancel
Save