Compare commits
No commits in common. 'epel9' and 'i10ce' have entirely different histories.
@ -1,9 +1 @@
|
||||
/results_*/
|
||||
/*.src.rpm
|
||||
|
||||
/weezl-0.1.0.crate
|
||||
/weezl-0.1.2.crate
|
||||
/weezl-0.1.3.crate
|
||||
/weezl-0.1.4.crate
|
||||
/weezl-0.1.5.crate
|
||||
/weezl-0.1.7.crate
|
||||
SOURCES/weezl-0.1.8.crate
|
||||
|
@ -0,0 +1 @@
|
||||
0bbd125cee850fb4197467d7623b37ab471d9a12 SOURCES/weezl-0.1.8.crate
|
@ -0,0 +1,4 @@
|
||||
[tests]
|
||||
run = ["doc"]
|
||||
comments = ["files needed for encode/decode tests are not included in published crates"]
|
||||
|
@ -0,0 +1,31 @@
|
||||
--- 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"
|
||||
@@ -87,7 +79,7 @@
|
||||
default-features = false
|
||||
|
||||
[dev-dependencies.tokio-util]
|
||||
-version = "0.6.2"
|
||||
+version = "0.7.7"
|
||||
features = ["compat"]
|
||||
default-features = false
|
||||
|
@ -0,0 +1,220 @@
|
||||
## START: Set by rpmautospec
|
||||
## (rpmautospec version 0.7.2)
|
||||
## RPMAUTOSPEC: autorelease, autochangelog
|
||||
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
|
||||
release_number = 4;
|
||||
base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}"));
|
||||
print(release_number + base_release_number - 1);
|
||||
}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}}
|
||||
## END: Set by rpmautospec
|
||||
|
||||
# Generated by rust2rpm 26
|
||||
%bcond_without check
|
||||
|
||||
%global crate weezl
|
||||
|
||||
Name: rust-weezl
|
||||
Version: 0.1.8
|
||||
Release: %autorelease
|
||||
Summary: Fast LZW compression and decompression
|
||||
|
||||
License: MIT OR Apache-2.0
|
||||
URL: https://crates.io/crates/weezl
|
||||
Source: %{crates_source}
|
||||
# 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
|
||||
|
||||
BuildRequires: cargo-rpm-macros >= 24
|
||||
|
||||
%global _description %{expand:
|
||||
Fast LZW compression and decompression.}
|
||||
|
||||
%description %{_description}
|
||||
|
||||
%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
|
||||
|
||||
%package devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages which
|
||||
use the "%{crate}" crate.
|
||||
|
||||
%files devel
|
||||
%license %{crate_instdir}/LICENSE-APACHE
|
||||
%license %{crate_instdir}/LICENSE-MIT
|
||||
%doc %{crate_instdir}/Changes.md
|
||||
%doc %{crate_instdir}/README.md
|
||||
%{crate_instdir}/
|
||||
|
||||
%package -n %{name}+default-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+default-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages which
|
||||
use the "default" feature of the "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+default-devel
|
||||
%ghost %{crate_instdir}/Cargo.toml
|
||||
|
||||
%package -n %{name}+alloc-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+alloc-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages which
|
||||
use the "alloc" feature of the "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+alloc-devel
|
||||
%ghost %{crate_instdir}/Cargo.toml
|
||||
|
||||
%package -n %{name}+async-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+async-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages which
|
||||
use the "async" feature of the "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+async-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}+std-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+std-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages which
|
||||
use the "std" feature of the "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+std-devel
|
||||
%ghost %{crate_instdir}/Cargo.toml
|
||||
|
||||
%prep
|
||||
%autosetup -n %{crate}-%{version} -p1
|
||||
%cargo_prep
|
||||
|
||||
%generate_buildrequires
|
||||
%cargo_generate_buildrequires
|
||||
|
||||
%build
|
||||
%cargo_build
|
||||
%{cargo_license_summary}
|
||||
%{cargo_license} > LICENSE.dependencies
|
||||
|
||||
%install
|
||||
%cargo_install
|
||||
|
||||
%if %{with check}
|
||||
%check
|
||||
# * files needed for encode/decode tests are not included in published crates
|
||||
%cargo_test -- --doc
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Fri Dec 20 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 0.1.8-4
|
||||
- Rebuilt for MSVSphere 10
|
||||
|
||||
## START: Generated by rpmautospec
|
||||
* Sun Sep 15 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 0.1.8-4
|
||||
- Update the tokio-util dev-dependency to 0.7.x
|
||||
|
||||
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.8-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Thu May 23 2024 Fabio Valentini <decathorpe@gmail.com> - 0.1.8-2
|
||||
- Rebuild with Rust 1.78 to fix incomplete debuginfo and backtraces
|
||||
|
||||
* Tue Jan 30 2024 Fabio Valentini <decathorpe@gmail.com> - 0.1.8-1
|
||||
- Update to version 0.1.8; Fixes RHBZ#2259502
|
||||
|
||||
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.7-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Mon Aug 07 2023 Fabio Valentini <decathorpe@gmail.com> - 0.1.7-6
|
||||
- Regenerate with rust2rpm v24
|
||||
|
||||
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.7-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Sun Feb 05 2023 Fabio Valentini <decathorpe@gmail.com> - 0.1.7-4
|
||||
- Rebuild for fixed frame pointer compiler flags in Rust RPM macros
|
||||
|
||||
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.7-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.7-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Mon Jul 18 2022 Fabio Valentini <decathorpe@gmail.com> - 0.1.7-1
|
||||
- Update to version 0.1.7; Fixes RHBZ#2077517
|
||||
|
||||
* Tue Feb 15 2022 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.1.5-5
|
||||
- Rebuild with package notes
|
||||
|
||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.5-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Sat Aug 07 2021 Fabio Valentini <decathorpe@gmail.com> - 0.1.5-3
|
||||
- Rebuild with crossbeam-deque 0.8.1 / 0.7.4 for CVE-2021-32810
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Wed Apr 21 2021 Fabio Valentini <decathorpe@gmail.com> - 0.1.5-1
|
||||
- Update to version 0.1.5.
|
||||
- Fixes RHBZ#1950696
|
||||
|
||||
* Thu Mar 04 2021 Fabio Valentini <decathorpe@gmail.com> - 0.1.4-1
|
||||
- Update to version 0.1.4.
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Wed Nov 11 2020 Fabio Valentini <decathorpe@gmail.com> - 0.1.3-1
|
||||
- Update to version 0.1.3.
|
||||
- Fixes RHBZ#1896510
|
||||
|
||||
* Fri Oct 23 2020 Fabio Valentini <decathorpe@gmail.com> - 0.1.2-1
|
||||
- Update to version 0.1.2.
|
||||
|
||||
* Thu Oct 01 2020 Fabio Valentini <decathorpe@gmail.com> - 0.1.0-1
|
||||
- Initial package
|
||||
|
||||
## END: Generated by rpmautospec
|
@ -1,31 +0,0 @@
|
||||
* Tue Feb 15 2022 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.1.5-5
|
||||
- Rebuild with package notes
|
||||
|
||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.5-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Sat Aug 07 2021 Fabio Valentini <decathorpe@gmail.com> - 0.1.5-3
|
||||
- Rebuild with crossbeam-deque 0.8.1 / 0.7.4 for CVE-2021-32810
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Wed Apr 21 2021 Fabio Valentini <decathorpe@gmail.com> - 0.1.5-1
|
||||
- Update to version 0.1.5.
|
||||
- Fixes RHBZ#1950696
|
||||
|
||||
* Thu Mar 04 2021 Fabio Valentini <decathorpe@gmail.com> - 0.1.4-1
|
||||
- Update to version 0.1.4.
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Wed Nov 11 2020 Fabio Valentini <decathorpe@gmail.com> - 0.1.3-1
|
||||
- Update to version 0.1.3.
|
||||
- Fixes RHBZ#1896510
|
||||
|
||||
* Fri Oct 23 2020 Fabio Valentini <decathorpe@gmail.com> - 0.1.2-1
|
||||
- Update to version 0.1.2.
|
||||
|
||||
* Thu Oct 01 2020 Fabio Valentini <decathorpe@gmail.com> - 0.1.0-1
|
||||
- Initial package
|
@ -1,136 +0,0 @@
|
||||
# Generated by rust2rpm 21
|
||||
%bcond_without check
|
||||
|
||||
%global crate weezl
|
||||
|
||||
Name: rust-%{crate}
|
||||
Version: 0.1.7
|
||||
Release: %autorelease
|
||||
Summary: Fast LZW compression and decompression
|
||||
|
||||
# Upstream license specification: MIT OR Apache-2.0
|
||||
License: MIT or ASL 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
|
||||
|
||||
ExclusiveArch: %{rust_arches}
|
||||
|
||||
BuildRequires: rust-packaging >= 21
|
||||
|
||||
%global _description %{expand:
|
||||
Fast LZW compression and decompression.}
|
||||
|
||||
%description %{_description}
|
||||
|
||||
%package -n %{crate}
|
||||
Summary: %{summary}
|
||||
|
||||
%description -n %{crate} %{_description}
|
||||
|
||||
%files -n %{crate}
|
||||
%license LICENSE-APACHE
|
||||
%license LICENSE-MIT
|
||||
%doc Changes.md
|
||||
%doc README.md
|
||||
%{_bindir}/lzw
|
||||
|
||||
%package devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages which
|
||||
use the "%{crate}" crate.
|
||||
|
||||
%files devel
|
||||
%license %{crate_instdir}/LICENSE-APACHE
|
||||
%license %{crate_instdir}/LICENSE-MIT
|
||||
%doc %{crate_instdir}/Changes.md
|
||||
%doc %{crate_instdir}/README.md
|
||||
%{crate_instdir}/
|
||||
|
||||
%package -n %{name}+default-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+default-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages which
|
||||
use the "default" feature of the "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+default-devel
|
||||
%ghost %{crate_instdir}/Cargo.toml
|
||||
|
||||
%package -n %{name}+alloc-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+alloc-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages which
|
||||
use the "alloc" feature of the "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+alloc-devel
|
||||
%ghost %{crate_instdir}/Cargo.toml
|
||||
|
||||
%package -n %{name}+async-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+async-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages which
|
||||
use the "async" feature of the "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+async-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}+std-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+std-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages which
|
||||
use the "std" feature of the "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+std-devel
|
||||
%ghost %{crate_instdir}/Cargo.toml
|
||||
|
||||
%prep
|
||||
%autosetup -n %{crate}-%{version_no_tilde} -p1
|
||||
%cargo_prep
|
||||
|
||||
%generate_buildrequires
|
||||
%cargo_generate_buildrequires
|
||||
|
||||
%build
|
||||
%cargo_build
|
||||
|
||||
%install
|
||||
%cargo_install
|
||||
|
||||
%if %{with check}
|
||||
%check
|
||||
# * files needed for encode/decode tests are not included in published crates
|
||||
%cargo_test -- --doc
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
%autochangelog
|
@ -1 +0,0 @@
|
||||
SHA512 (weezl-0.1.7.crate) = 3fd8cb01dde494371df57001c97be90418b642ba88b0945cd98f973a4498743b83d383bcdfc8884db1da75271aeef4ce3b418e425f23690f12a5cc645c418e90
|
@ -1,12 +0,0 @@
|
||||
--- 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 @@
|
||||
optional = true
|
||||
default-features = false
|
||||
|
||||
-[dev-dependencies.criterion]
|
||||
-version = "0.3.1"
|
||||
-
|
||||
[dev-dependencies.tokio]
|
||||
version = "1"
|
||||
features = [
|
Loading…
Reference in new issue