commit dea7792a67e5c7d82a366dddc4b1bc8d92e85cc2 Author: MSVSphere Packaging Team Date: Fri Dec 20 16:01:15 2024 +0300 import rust-imagequant-4.3.3-1.el10 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2af7d93 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/imagequant-4.3.3.crate diff --git a/.rust-imagequant.metadata b/.rust-imagequant.metadata new file mode 100644 index 0000000..6ff3c23 --- /dev/null +++ b/.rust-imagequant.metadata @@ -0,0 +1 @@ +2bc3484ec55080a89f210d1c3db5c0f5af8ec183 SOURCES/imagequant-4.3.3.crate diff --git a/SOURCES/README.md b/SOURCES/README.md new file mode 100644 index 0000000..cd438c3 --- /dev/null +++ b/SOURCES/README.md @@ -0,0 +1,3 @@ +# rust-imagequant + +The rust-imagequant package diff --git a/SOURCES/imagequant-fix-metadata.diff b/SOURCES/imagequant-fix-metadata.diff new file mode 100644 index 0000000..20c68bc --- /dev/null +++ b/SOURCES/imagequant-fix-metadata.diff @@ -0,0 +1,12 @@ +--- imagequant-4.3.1/Cargo.toml 1970-01-01T00:00:01+00:00 ++++ imagequant-4.3.1/Cargo.toml 2024-05-01T20:09:54.680125+00:00 +@@ -71,9 +71,6 @@ + version = "1.1.8" + optional = true + +-[dev-dependencies.lodepng] +-version = "3.10.0" +- + [features] + _internal_c_ffi = [] + default = ["threads"] diff --git a/SOURCES/rust2rpm.toml b/SOURCES/rust2rpm.toml new file mode 100644 index 0000000..2835cac --- /dev/null +++ b/SOURCES/rust2rpm.toml @@ -0,0 +1,10 @@ +[requires] +build = ["tomcli"] + +[scripts.prep] +pre = [ +""" +# Remove benchmark-only dependency +tomcli-set Cargo.toml del 'dev-dependencies.lodepng' +""" +] diff --git a/SPECS/rust-imagequant.spec b/SPECS/rust-imagequant.spec new file mode 100644 index 0000000..f9ff9c8 --- /dev/null +++ b/SPECS/rust-imagequant.spec @@ -0,0 +1,153 @@ +## START: Set by rpmautospec +## (rpmautospec version 0.7.3) +## RPMAUTOSPEC: autorelease, autochangelog +%define autorelease(e:s:pb:n) %{?-p:0.}%{lua: + release_number = 1; + 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 debug_package %{nil} + +%global crate imagequant + +Name: rust-imagequant +Version: 4.3.3 +Release: %autorelease +Summary: Convert 24/32-bit images to 8-bit palette with alpha channel + +License: GPL-3.0-or-later +URL: https://crates.io/crates/imagequant +Source: %{crates_source} + +BuildRequires: cargo-rpm-macros >= 24 +BuildRequires: tomcli + +%global _description %{expand: +Convert 24/32-bit images to 8-bit palette with alpha channel. For lossy +PNG compression and high-quality GIF images Dual-licensed like pngquant. +See https://pngquant.org for details.} + +%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}/COPYRIGHT +%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}+_internal_c_ffi-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+_internal_c_ffi-devel %{_description} + +This package contains library source intended for building other packages which +use the "_internal_c_ffi" feature of the "%{crate}" crate. + +%files -n %{name}+_internal_c_ffi-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+large_palettes-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+large_palettes-devel %{_description} + +This package contains library source intended for building other packages which +use the "large_palettes" feature of the "%{crate}" crate. + +%files -n %{name}+large_palettes-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+threads-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+threads-devel %{_description} + +This package contains library source intended for building other packages which +use the "threads" feature of the "%{crate}" crate. + +%files -n %{name}+threads-devel +%ghost %{crate_instdir}/Cargo.toml + +%prep +%autosetup -n %{crate}-%{version} -p1 +# Remove benchmark-only dependency +tomcli-set Cargo.toml del 'dev-dependencies.lodepng' + +%cargo_prep + +%generate_buildrequires +%cargo_generate_buildrequires + +%build +%cargo_build + +%install +%cargo_install + +%if %{with check} +%check +%cargo_test +%endif + +%changelog +* Fri Dec 20 2024 MSVSphere Packaging Team - 4.3.3-1 +- Rebuilt for MSVSphere 10 + +## START: Generated by rpmautospec +* Sat Aug 10 2024 blinxen - 4.3.3-1 +- Update to version 4.3.3 (rhbz#2302752) + +* Fri Jul 19 2024 Fedora Release Engineering - 4.3.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Wed May 01 2024 blinxen - 4.3.1-1 +- Update to version 4.3.1 (rhbz#2277527) + +* Thu Jan 25 2024 blinxen - 4.3.0-1 +- Update to version 4.3.0 (rhbz#2259755) + +* Tue Oct 17 2023 blinxen - 4.2.2-1 +- Update to version 4.2.2 (rhbz#2243883) + +* Mon Sep 18 2023 blinxen - 4.2.1-1 +- Update to version 4.2.1 (rhbz#2238258) + +* Fri Jul 21 2023 Fedora Release Engineering - 4.2.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Tue May 02 2023 blinxen - 4.2.0-1 +- Update to version 4.2.0 + +* Fri Mar 10 2023 blinxen - 4.1.1-1 +- Update to version 4.1.1 + +* Thu Feb 23 2023 blinxen - 4.1.0-1 +- Initial package +## END: Generated by rpmautospec