|
|
|
@ -1,11 +1,21 @@
|
|
|
|
|
# Generated by rust2rpm 25
|
|
|
|
|
%bcond_without check
|
|
|
|
|
## 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 27
|
|
|
|
|
%bcond check 1
|
|
|
|
|
%global debug_package %{nil}
|
|
|
|
|
|
|
|
|
|
%global crate uuid
|
|
|
|
|
|
|
|
|
|
Name: rust-uuid
|
|
|
|
|
Version: 1.6.1
|
|
|
|
|
Version: 1.13.2
|
|
|
|
|
Release: %autorelease
|
|
|
|
|
Summary: Library to generate and parse UUIDs
|
|
|
|
|
|
|
|
|
@ -16,6 +26,7 @@ Source: %{crates_source}
|
|
|
|
|
Patch: uuid-fix-metadata-auto.diff
|
|
|
|
|
# Manually created patch for downstream crate metadata changes
|
|
|
|
|
# * drop unused optional dependency for borsh support
|
|
|
|
|
# * drop unused optional dependency for zerocopy support
|
|
|
|
|
# * drop WASM-specific features and dependencies
|
|
|
|
|
# * drop internal-only features
|
|
|
|
|
Patch: uuid-fix-metadata.diff
|
|
|
|
@ -37,13 +48,9 @@ This package contains library source intended for building other packages which
|
|
|
|
|
use the "%{crate}" crate.
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
|
%license %{crate_instdir}/COPYRIGHT
|
|
|
|
|
%license %{crate_instdir}/LICENSE-APACHE
|
|
|
|
|
%license %{crate_instdir}/LICENSE-MIT
|
|
|
|
|
%doc %{crate_instdir}/CODE_OF_CONDUCT.md
|
|
|
|
|
%doc %{crate_instdir}/CONTRIBUTING.md
|
|
|
|
|
%doc %{crate_instdir}/README.md
|
|
|
|
|
%doc %{crate_instdir}/SECURITY.md
|
|
|
|
|
%{crate_instdir}/
|
|
|
|
|
|
|
|
|
|
%package -n %{name}+default-devel
|
|
|
|
@ -106,64 +113,52 @@ use the "fast-rng" feature of the "%{crate}" crate.
|
|
|
|
|
%files -n %{name}+fast-rng-devel
|
|
|
|
|
%ghost %{crate_instdir}/Cargo.toml
|
|
|
|
|
|
|
|
|
|
%package -n %{name}+getrandom-devel
|
|
|
|
|
Summary: %{summary}
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
%description -n %{name}+getrandom-devel %{_description}
|
|
|
|
|
|
|
|
|
|
This package contains library source intended for building other packages which
|
|
|
|
|
use the "getrandom" feature of the "%{crate}" crate.
|
|
|
|
|
|
|
|
|
|
%files -n %{name}+getrandom-devel
|
|
|
|
|
%ghost %{crate_instdir}/Cargo.toml
|
|
|
|
|
|
|
|
|
|
%package -n %{name}+md-5-devel
|
|
|
|
|
%package -n %{name}+md5-devel
|
|
|
|
|
Summary: %{summary}
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
%description -n %{name}+md-5-devel %{_description}
|
|
|
|
|
%description -n %{name}+md5-devel %{_description}
|
|
|
|
|
|
|
|
|
|
This package contains library source intended for building other packages which
|
|
|
|
|
use the "md-5" feature of the "%{crate}" crate.
|
|
|
|
|
use the "md5" feature of the "%{crate}" crate.
|
|
|
|
|
|
|
|
|
|
%files -n %{name}+md-5-devel
|
|
|
|
|
%files -n %{name}+md5-devel
|
|
|
|
|
%ghost %{crate_instdir}/Cargo.toml
|
|
|
|
|
|
|
|
|
|
%package -n %{name}+md5-devel
|
|
|
|
|
%package -n %{name}+rng-devel
|
|
|
|
|
Summary: %{summary}
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
%description -n %{name}+md5-devel %{_description}
|
|
|
|
|
%description -n %{name}+rng-devel %{_description}
|
|
|
|
|
|
|
|
|
|
This package contains library source intended for building other packages which
|
|
|
|
|
use the "md5" feature of the "%{crate}" crate.
|
|
|
|
|
use the "rng" feature of the "%{crate}" crate.
|
|
|
|
|
|
|
|
|
|
%files -n %{name}+md5-devel
|
|
|
|
|
%files -n %{name}+rng-devel
|
|
|
|
|
%ghost %{crate_instdir}/Cargo.toml
|
|
|
|
|
|
|
|
|
|
%package -n %{name}+rand-devel
|
|
|
|
|
%package -n %{name}+rng-getrandom-devel
|
|
|
|
|
Summary: %{summary}
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
%description -n %{name}+rand-devel %{_description}
|
|
|
|
|
%description -n %{name}+rng-getrandom-devel %{_description}
|
|
|
|
|
|
|
|
|
|
This package contains library source intended for building other packages which
|
|
|
|
|
use the "rand" feature of the "%{crate}" crate.
|
|
|
|
|
use the "rng-getrandom" feature of the "%{crate}" crate.
|
|
|
|
|
|
|
|
|
|
%files -n %{name}+rand-devel
|
|
|
|
|
%files -n %{name}+rng-getrandom-devel
|
|
|
|
|
%ghost %{crate_instdir}/Cargo.toml
|
|
|
|
|
|
|
|
|
|
%package -n %{name}+rng-devel
|
|
|
|
|
%package -n %{name}+rng-rand-devel
|
|
|
|
|
Summary: %{summary}
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
%description -n %{name}+rng-devel %{_description}
|
|
|
|
|
%description -n %{name}+rng-rand-devel %{_description}
|
|
|
|
|
|
|
|
|
|
This package contains library source intended for building other packages which
|
|
|
|
|
use the "rng" feature of the "%{crate}" crate.
|
|
|
|
|
use the "rng-rand" feature of the "%{crate}" crate.
|
|
|
|
|
|
|
|
|
|
%files -n %{name}+rng-devel
|
|
|
|
|
%files -n %{name}+rng-rand-devel
|
|
|
|
|
%ghost %{crate_instdir}/Cargo.toml
|
|
|
|
|
|
|
|
|
|
%package -n %{name}+serde-devel
|
|
|
|
@ -190,18 +185,6 @@ use the "sha1" feature of the "%{crate}" crate.
|
|
|
|
|
%files -n %{name}+sha1-devel
|
|
|
|
|
%ghost %{crate_instdir}/Cargo.toml
|
|
|
|
|
|
|
|
|
|
%package -n %{name}+sha1_smol-devel
|
|
|
|
|
Summary: %{summary}
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
%description -n %{name}+sha1_smol-devel %{_description}
|
|
|
|
|
|
|
|
|
|
This package contains library source intended for building other packages which
|
|
|
|
|
use the "sha1_smol" feature of the "%{crate}" crate.
|
|
|
|
|
|
|
|
|
|
%files -n %{name}+sha1_smol-devel
|
|
|
|
|
%ghost %{crate_instdir}/Cargo.toml
|
|
|
|
|
|
|
|
|
|
%package -n %{name}+slog-devel
|
|
|
|
|
Summary: %{summary}
|
|
|
|
|
BuildArch: noarch
|
|
|
|
@ -329,4 +312,175 @@ use the "v8" feature of the "%{crate}" crate.
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
%autochangelog
|
|
|
|
|
## START: Generated by rpmautospec
|
|
|
|
|
* Tue Feb 18 2025 Marc-André Lureau <marcandre.lureau@redhat.com> - 1.13.2-1
|
|
|
|
|
- Update to version 1.13.2; Fixes RHBZ#2336864
|
|
|
|
|
|
|
|
|
|
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.0-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Dec 20 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 1.11.0-1
|
|
|
|
|
- Rebuilt for MSVSphere 10
|
|
|
|
|
|
|
|
|
|
* Sun Oct 20 2024 Fabio Valentini <decathorpe@gmail.com> - 1.11.0-1
|
|
|
|
|
- Update to version 1.11.0; Fixes RHBZ#2319073
|
|
|
|
|
|
|
|
|
|
* Wed Jul 31 2024 Michel Lind <salimma@fedoraproject.org> - 1.10.0-1
|
|
|
|
|
- Update to version 1.10.0; Fixes RHBZ#2296419
|
|
|
|
|
|
|
|
|
|
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.1-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Sat Jul 06 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 1.9.1-1
|
|
|
|
|
- Update to 1.9.1 (close RHBZ#2294052)
|
|
|
|
|
|
|
|
|
|
* Mon Jun 24 2024 Fabio Valentini <decathorpe@gmail.com> - 1.9.0-1
|
|
|
|
|
- Update to version 1.9.0; Fixes RHBZ#2293884
|
|
|
|
|
|
|
|
|
|
* Tue Mar 19 2024 Fabio Valentini <decathorpe@gmail.com> - 1.8.0-1
|
|
|
|
|
- Update to version 1.8.0; Fixes RHBZ#2270213
|
|
|
|
|
|
|
|
|
|
* Tue Jan 30 2024 Fabio Valentini <decathorpe@gmail.com> - 1.7.0-1
|
|
|
|
|
- Update to version 1.7.0; Fixes RHBZ#2259067
|
|
|
|
|
|
|
|
|
|
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.1-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Sat Nov 25 2023 Fabio Valentini <decathorpe@gmail.com> - 1.6.1-1
|
|
|
|
|
- Update to version 1.6.1; Fixes RHBZ#2250575
|
|
|
|
|
|
|
|
|
|
* Thu Oct 19 2023 Fabio Valentini <decathorpe@gmail.com> - 1.5.0-1
|
|
|
|
|
- Update to version 1.5.0; Fixes RHBZ#2244855
|
|
|
|
|
|
|
|
|
|
* Sat Jul 29 2023 Fabio Valentini <decathorpe@gmail.com> - 1.4.1-1
|
|
|
|
|
- Update to version 1.4.1; Fixes RHBZ#2223255
|
|
|
|
|
|
|
|
|
|
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Sat Jul 15 2023 Fabio Valentini <decathorpe@gmail.com> - 1.4.0-1
|
|
|
|
|
- Update to version 1.4.0; Fixes RHBZ#2217791
|
|
|
|
|
|
|
|
|
|
* Fri Jun 23 2023 Fabio Valentini <decathorpe@gmail.com> - 1.3.4-1
|
|
|
|
|
- Update to version 1.3.4; Fixes RHBZ#2214494
|
|
|
|
|
|
|
|
|
|
* Wed May 17 2023 Fabio Valentini <decathorpe@gmail.com> - 1.3.3-1
|
|
|
|
|
- Update to version 1.3.3; Fixes RHBZ#2203814
|
|
|
|
|
|
|
|
|
|
* Sun Apr 30 2023 Fabio Valentini <decathorpe@gmail.com> - 1.3.2-1
|
|
|
|
|
- Update to version 1.3.2; Fixes RHBZ#2192075
|
|
|
|
|
|
|
|
|
|
* Fri Apr 14 2023 Fabio Valentini <decathorpe@gmail.com> - 1.3.1-1
|
|
|
|
|
- Update to version 1.3.1; Fixes RHBZ#2185419
|
|
|
|
|
|
|
|
|
|
* Fri Feb 03 2023 Fabio Valentini <decathorpe@gmail.com> - 1.3.0-1
|
|
|
|
|
- Update to version 1.3.0; Fixes RHBZ#2166236
|
|
|
|
|
|
|
|
|
|
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.2-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Sat Dec 10 2022 Fabio Valentini <decathorpe@gmail.com> - 1.2.2-1
|
|
|
|
|
- Update to version 1.2.2; Fixes RHBZ#2142704
|
|
|
|
|
|
|
|
|
|
* Tue Oct 11 2022 Fabio Valentini <decathorpe@gmail.com> - 1.2.1-1
|
|
|
|
|
- Update to version 1.2.1; Fixes RHBZ#2133232
|
|
|
|
|
|
|
|
|
|
* Sat Oct 08 2022 Fabio Valentini <decathorpe@gmail.com> - 1.2.0-1
|
|
|
|
|
- Update to version 1.2.0; Fixes RHBZ#2133131
|
|
|
|
|
|
|
|
|
|
* Mon Aug 08 2022 Fabio Valentini <decathorpe@gmail.com> - 1.1.2-1
|
|
|
|
|
- Update to version 1.1.2; Fixes RHBZ#2095908
|
|
|
|
|
|
|
|
|
|
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Jun 06 2022 Fabio Valentini <decathorpe@gmail.com> - 1.1.1-1
|
|
|
|
|
- Update to version 1.1.1; Fixes RHBZ#2076870
|
|
|
|
|
|
|
|
|
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.2-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.2-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.2-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Jan 11 2021 Fabio Valentini <decathorpe@gmail.com> - 0.8.2-1
|
|
|
|
|
- Update to version 0.8.2.
|
|
|
|
|
- Fixes RHBZ#1914753
|
|
|
|
|
|
|
|
|
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Jan 16 2020 Josh Stone <jistone@redhat.com> - 0.8.1-2
|
|
|
|
|
- Bump to md5 0.7
|
|
|
|
|
|
|
|
|
|
* Thu Jan 16 2020 Josh Stone <jistone@redhat.com> - 0.8.1-1
|
|
|
|
|
- Update to 0.8.1
|
|
|
|
|
|
|
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.4-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Sat Jun 22 10:18:57 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.4-2
|
|
|
|
|
- Regenerate
|
|
|
|
|
|
|
|
|
|
* Fri Mar 29 15:50:41 CET 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.4-1
|
|
|
|
|
- Update to 0.7.4
|
|
|
|
|
|
|
|
|
|
* Mon Mar 25 08:29:16 CET 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.3-1
|
|
|
|
|
- Update to 0.7.3
|
|
|
|
|
|
|
|
|
|
* Sun Mar 10 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.2-3
|
|
|
|
|
- Do not pull optional dependencies
|
|
|
|
|
|
|
|
|
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.2-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Jan 29 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.2-1
|
|
|
|
|
- Update to 0.7.2
|
|
|
|
|
|
|
|
|
|
* Tue Dec 11 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.1-3
|
|
|
|
|
- Bump rand, md5 to 0.6
|
|
|
|
|
|
|
|
|
|
* Sat Dec 08 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.1-2
|
|
|
|
|
- Run tests in infrastructure
|
|
|
|
|
|
|
|
|
|
* Tue Nov 20 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.1-1
|
|
|
|
|
- Update to 0.7.1
|
|
|
|
|
|
|
|
|
|
* Fri Nov 02 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.5-3
|
|
|
|
|
- Adapt to new packaging
|
|
|
|
|
|
|
|
|
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.5-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri May 25 2018 Josh Stone <jistone@redhat.com> - 0.6.5-1
|
|
|
|
|
- Update to 0.6.5
|
|
|
|
|
|
|
|
|
|
* Thu May 24 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.4-1
|
|
|
|
|
- Update to 0.6.4
|
|
|
|
|
|
|
|
|
|
* Thu Apr 26 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.3-1
|
|
|
|
|
- Update to 0.6.3
|
|
|
|
|
|
|
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.1-5
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Jan 08 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.5.1-4
|
|
|
|
|
- Rebuild for rust-packaging v5
|
|
|
|
|
|
|
|
|
|
* Sun Jan 07 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.5.1-3
|
|
|
|
|
- Add implicit cargo features
|
|
|
|
|
|
|
|
|
|
* Sun Dec 31 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.5.1-2
|
|
|
|
|
- Bump rand to 0.4
|
|
|
|
|
- Bump sha1 to 0.4
|
|
|
|
|
|
|
|
|
|
* Sat Dec 02 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.5.1-1
|
|
|
|
|
- Initial package
|
|
|
|
|
|
|
|
|
|
## END: Generated by rpmautospec
|