commit 44e9009418582ab692304927ada4b47e34122b53 Author: MSVSphere Packaging Team Date: Fri Dec 20 16:47:03 2024 +0300 import rust-qoi-0.4.1-3.el10 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1541704 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/qoi-0.4.1.crate diff --git a/.rust-qoi.metadata b/.rust-qoi.metadata new file mode 100644 index 0000000..3ca2c87 --- /dev/null +++ b/.rust-qoi.metadata @@ -0,0 +1 @@ +36de37a5608c0d1e67fc17ab7fdac1d7d1184a5c SOURCES/qoi-0.4.1.crate diff --git a/SOURCES/README.md b/SOURCES/README.md new file mode 100644 index 0000000..4c00149 --- /dev/null +++ b/SOURCES/README.md @@ -0,0 +1,3 @@ +# rust-qoi + +The rust-qoi package diff --git a/SPECS/rust-qoi.spec b/SPECS/rust-qoi.spec new file mode 100644 index 0000000..ca05a65 --- /dev/null +++ b/SPECS/rust-qoi.spec @@ -0,0 +1,138 @@ +## START: Set by rpmautospec +## (rpmautospec version 0.7.2) +## RPMAUTOSPEC: autorelease, autochangelog +%define autorelease(e:s:pb:n) %{?-p:0.}%{lua: + release_number = 3; + 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 24 +%bcond_without check +%global debug_package %{nil} + +%global crate qoi + +Name: rust-qoi +Version: 0.4.1 +Release: %autorelease +Summary: VERY fast encoder/decoder for QOI (Quite Okay Image) format + +# Upstream license specification: MIT/Apache-2.0 +License: MIT OR Apache-2.0 +URL: https://crates.io/crates/qoi +Source: %{crates_source} + +BuildRequires: rust-packaging >= 21 + +%global _description %{expand: +VERY fast encoder/decoder for QOI (Quite Okay Image) format.} + +%description %{_description} + +%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}/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}+reference-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+reference-devel %{_description} + +This package contains library source intended for building other packages which +use the "reference" feature of the "%{crate}" crate. + +%files -n %{name}+reference-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 +# Remove bundled C library (used in libqoi workspace member that is not +# included in published crates) +rm -rf ext +# Remove test that references libqoi workspace member (not included in +# published crates) +rm tests/test_gen.rs +%cargo_prep + +%generate_buildrequires +%cargo_generate_buildrequires + +%build +%cargo_build + +%install +%cargo_install + +%if %{with check} +# https://github.com/aldanor/qoi-rust/issues/6 +%ifnarch s390x +%check +# Skip tests with missing test files (not included in published crates) +%cargo_test -- -- --skip test_reference_images +%endif +%endif + +%changelog +* Fri Dec 20 2024 MSVSphere Packaging Team - 0.4.1-3 +- Rebuilt for MSVSphere 10 + +## START: Generated by rpmautospec +* Sat Jul 20 2024 Fedora Release Engineering - 0.4.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Fri Jan 26 2024 Fedora Release Engineering - 0.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Wed Aug 23 2023 Kalev Lember - 0.4.1-1 +- Initial Fedora packaging (rhbz#2233787) +## END: Generated by rpmautospec