From b3c77577487a544b6f05d54b2a5a9ee83b761f82 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Fri, 20 Dec 2024 16:45:03 +0300 Subject: [PATCH] import rust-pyo3-0.23.3-1.el10 --- .gitignore | 1 + .rust-pyo3.metadata | 1 + ...nterpreter-support-available-via-cfg.patch | 25 + SOURCES/pyo3-fix-metadata.diff | 10 + SOURCES/rust2rpm.toml | 20 + SPECS/rust-pyo3.spec | 623 ++++++++++++++++++ 6 files changed, 680 insertions(+) create mode 100644 .gitignore create mode 100644 .rust-pyo3.metadata create mode 100644 SOURCES/0001-Make-unsafe-subinterpreter-support-available-via-cfg.patch create mode 100644 SOURCES/pyo3-fix-metadata.diff create mode 100644 SOURCES/rust2rpm.toml create mode 100644 SPECS/rust-pyo3.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..583b8cb --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/pyo3-0.23.3.crate diff --git a/.rust-pyo3.metadata b/.rust-pyo3.metadata new file mode 100644 index 0000000..509968c --- /dev/null +++ b/.rust-pyo3.metadata @@ -0,0 +1 @@ +4159dee234cad223ec66629c050929279761e4d5 SOURCES/pyo3-0.23.3.crate diff --git a/SOURCES/0001-Make-unsafe-subinterpreter-support-available-via-cfg.patch b/SOURCES/0001-Make-unsafe-subinterpreter-support-available-via-cfg.patch new file mode 100644 index 0000000..ffcdfb6 --- /dev/null +++ b/SOURCES/0001-Make-unsafe-subinterpreter-support-available-via-cfg.patch @@ -0,0 +1,25 @@ +From d59176bc05aa37838fd4a8dd253f47c962f61118 Mon Sep 17 00:00:00 2001 +From: Fabio Valentini +Date: Tue, 23 Jul 2024 14:41:04 +0200 +Subject: [PATCH] Make unsafe subinterpreter support available via cfg flag + +--- + src/impl_/pymodule.rs | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/impl_/pymodule.rs b/src/impl_/pymodule.rs +index b05652b..94555ff 100644 +--- a/src/impl_/pymodule.rs ++++ b/src/impl_/pymodule.rs +@@ -107,7 +107,7 @@ impl ModuleDef { + // that static data is not reused across interpreters. + // + // PyPy does not have subinterpreters, so no need to check interpreter ID. +- #[cfg(not(any(PyPy, GraalPy)))] ++ #[cfg(not(any(PyPy, GraalPy, pyo3_unsafe_allow_subinterpreters)))] + { + // PyInterpreterState_Get is only available on 3.9 and later, but is missing + // from python3.dll for Windows stable API on 3.9 +-- +2.45.2 + diff --git a/SOURCES/pyo3-fix-metadata.diff b/SOURCES/pyo3-fix-metadata.diff new file mode 100644 index 0000000..71da4e7 --- /dev/null +++ b/SOURCES/pyo3-fix-metadata.diff @@ -0,0 +1,10 @@ +--- pyo3-0.23.3/Cargo.toml 1970-01-01T00:00:01+00:00 ++++ pyo3-0.23.3/Cargo.toml 2024-12-09T13:39:23.386725+00:00 +@@ -428,7 +428,6 @@ + "serde", + "smallvec", + ] +-generate-import-lib = ["pyo3-ffi/generate-import-lib"] + macros = [ + "pyo3-macros", + "indoc", diff --git a/SOURCES/rust2rpm.toml b/SOURCES/rust2rpm.toml new file mode 100644 index 0000000..adf7570 --- /dev/null +++ b/SOURCES/rust2rpm.toml @@ -0,0 +1,20 @@ +[package] +cargo-toml-patch-comments = [ + "drop MSVC- and MinGW-only features", +] +doc-files.exclude = [".towncrier.template.md"] + +[[package.extra-patches]] +number = 2 +file = "0001-Make-unsafe-subinterpreter-support-available-via-cfg.patch" +comments = ["""\ +make unsafe subinterpreter support available via cfg flag: +https://bugzilla.redhat.com/show_bug.cgi?id=2298403""", +] + +[scripts] +prep.post = [ + "# drop files that are not useful", + "rm -r emscripten/ newsfragments/", +] + diff --git a/SPECS/rust-pyo3.spec b/SPECS/rust-pyo3.spec new file mode 100644 index 0000000..dca395c --- /dev/null +++ b/SPECS/rust-pyo3.spec @@ -0,0 +1,623 @@ +## 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 pyo3 + +Name: rust-pyo3 +Version: 0.23.3 +Release: %autorelease +Summary: Bindings to Python interpreter + +License: MIT OR Apache-2.0 +URL: https://crates.io/crates/pyo3 +Source: %{crates_source} +# Manually created patch for downstream crate metadata changes +# * relax chrono-tz dependency to allow building with 0.6..=0.10 +# * drop MSVC- and MinGW-only features +Patch: pyo3-fix-metadata.diff +# * make unsafe subinterpreter support available via cfg flag: +# https://bugzilla.redhat.com/show_bug.cgi?id=2298403 +Patch2: 0001-Make-unsafe-subinterpreter-support-available-via-cfg.patch + +BuildRequires: cargo-rpm-macros >= 24 + +%global _description %{expand: +Bindings to Python interpreter.} + +%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 +%license %{crate_instdir}/pyo3-runtime/LICENSE-APACHE +%license %{crate_instdir}/pyo3-runtime/LICENSE-MIT +%doc %{crate_instdir}/Architecture.md +%doc %{crate_instdir}/CHANGELOG.md +%doc %{crate_instdir}/Code-of-Conduct.md +%doc %{crate_instdir}/Contributing.md +%doc %{crate_instdir}/README.md +%doc %{crate_instdir}/Releasing.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}+abi3-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+abi3-devel %{_description} + +This package contains library source intended for building other packages which +use the "abi3" feature of the "%{crate}" crate. + +%files -n %{name}+abi3-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+abi3-py310-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+abi3-py310-devel %{_description} + +This package contains library source intended for building other packages which +use the "abi3-py310" feature of the "%{crate}" crate. + +%files -n %{name}+abi3-py310-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+abi3-py311-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+abi3-py311-devel %{_description} + +This package contains library source intended for building other packages which +use the "abi3-py311" feature of the "%{crate}" crate. + +%files -n %{name}+abi3-py311-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+abi3-py312-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+abi3-py312-devel %{_description} + +This package contains library source intended for building other packages which +use the "abi3-py312" feature of the "%{crate}" crate. + +%files -n %{name}+abi3-py312-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+abi3-py37-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+abi3-py37-devel %{_description} + +This package contains library source intended for building other packages which +use the "abi3-py37" feature of the "%{crate}" crate. + +%files -n %{name}+abi3-py37-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+abi3-py38-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+abi3-py38-devel %{_description} + +This package contains library source intended for building other packages which +use the "abi3-py38" feature of the "%{crate}" crate. + +%files -n %{name}+abi3-py38-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+abi3-py39-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+abi3-py39-devel %{_description} + +This package contains library source intended for building other packages which +use the "abi3-py39" feature of the "%{crate}" crate. + +%files -n %{name}+abi3-py39-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+anyhow-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+anyhow-devel %{_description} + +This package contains library source intended for building other packages which +use the "anyhow" feature of the "%{crate}" crate. + +%files -n %{name}+anyhow-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+auto-initialize-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+auto-initialize-devel %{_description} + +This package contains library source intended for building other packages which +use the "auto-initialize" feature of the "%{crate}" crate. + +%files -n %{name}+auto-initialize-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+chrono-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+chrono-devel %{_description} + +This package contains library source intended for building other packages which +use the "chrono" feature of the "%{crate}" crate. + +%files -n %{name}+chrono-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+chrono-tz-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+chrono-tz-devel %{_description} + +This package contains library source intended for building other packages which +use the "chrono-tz" feature of the "%{crate}" crate. + +%files -n %{name}+chrono-tz-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+either-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+either-devel %{_description} + +This package contains library source intended for building other packages which +use the "either" feature of the "%{crate}" crate. + +%files -n %{name}+either-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+experimental-async-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+experimental-async-devel %{_description} + +This package contains library source intended for building other packages which +use the "experimental-async" feature of the "%{crate}" crate. + +%files -n %{name}+experimental-async-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+experimental-inspect-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+experimental-inspect-devel %{_description} + +This package contains library source intended for building other packages which +use the "experimental-inspect" feature of the "%{crate}" crate. + +%files -n %{name}+experimental-inspect-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+extension-module-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+extension-module-devel %{_description} + +This package contains library source intended for building other packages which +use the "extension-module" feature of the "%{crate}" crate. + +%files -n %{name}+extension-module-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+eyre-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+eyre-devel %{_description} + +This package contains library source intended for building other packages which +use the "eyre" feature of the "%{crate}" crate. + +%files -n %{name}+eyre-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+full-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+full-devel %{_description} + +This package contains library source intended for building other packages which +use the "full" feature of the "%{crate}" crate. + +%files -n %{name}+full-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+hashbrown-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+hashbrown-devel %{_description} + +This package contains library source intended for building other packages which +use the "hashbrown" feature of the "%{crate}" crate. + +%files -n %{name}+hashbrown-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+indexmap-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+indexmap-devel %{_description} + +This package contains library source intended for building other packages which +use the "indexmap" feature of the "%{crate}" crate. + +%files -n %{name}+indexmap-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+indoc-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+indoc-devel %{_description} + +This package contains library source intended for building other packages which +use the "indoc" feature of the "%{crate}" crate. + +%files -n %{name}+indoc-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+inventory-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+inventory-devel %{_description} + +This package contains library source intended for building other packages which +use the "inventory" feature of the "%{crate}" crate. + +%files -n %{name}+inventory-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+macros-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+macros-devel %{_description} + +This package contains library source intended for building other packages which +use the "macros" feature of the "%{crate}" crate. + +%files -n %{name}+macros-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+multiple-pymethods-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+multiple-pymethods-devel %{_description} + +This package contains library source intended for building other packages which +use the "multiple-pymethods" feature of the "%{crate}" crate. + +%files -n %{name}+multiple-pymethods-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+nightly-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+nightly-devel %{_description} + +This package contains library source intended for building other packages which +use the "nightly" feature of the "%{crate}" crate. + +%files -n %{name}+nightly-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+num-bigint-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+num-bigint-devel %{_description} + +This package contains library source intended for building other packages which +use the "num-bigint" feature of the "%{crate}" crate. + +%files -n %{name}+num-bigint-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+num-complex-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+num-complex-devel %{_description} + +This package contains library source intended for building other packages which +use the "num-complex" feature of the "%{crate}" crate. + +%files -n %{name}+num-complex-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+num-rational-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+num-rational-devel %{_description} + +This package contains library source intended for building other packages which +use the "num-rational" feature of the "%{crate}" crate. + +%files -n %{name}+num-rational-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+py-clone-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+py-clone-devel %{_description} + +This package contains library source intended for building other packages which +use the "py-clone" feature of the "%{crate}" crate. + +%files -n %{name}+py-clone-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+pyo3-macros-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+pyo3-macros-devel %{_description} + +This package contains library source intended for building other packages which +use the "pyo3-macros" feature of the "%{crate}" crate. + +%files -n %{name}+pyo3-macros-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+rust_decimal-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+rust_decimal-devel %{_description} + +This package contains library source intended for building other packages which +use the "rust_decimal" feature of the "%{crate}" crate. + +%files -n %{name}+rust_decimal-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+serde-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+serde-devel %{_description} + +This package contains library source intended for building other packages which +use the "serde" feature of the "%{crate}" crate. + +%files -n %{name}+serde-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+smallvec-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+smallvec-devel %{_description} + +This package contains library source intended for building other packages which +use the "smallvec" feature of the "%{crate}" crate. + +%files -n %{name}+smallvec-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+unindent-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+unindent-devel %{_description} + +This package contains library source intended for building other packages which +use the "unindent" feature of the "%{crate}" crate. + +%files -n %{name}+unindent-devel +%ghost %{crate_instdir}/Cargo.toml + +%prep +%autosetup -n %{crate}-%{version} -p1 +%cargo_prep +# drop files that are not useful +rm -r emscripten/ newsfragments/ + +%generate_buildrequires +# unit tests require optional dependencies +%cargo_generate_buildrequires -a + +%build +%cargo_build + +%install +%cargo_install + +%if %{with check} +%check +# * unit tests require an UTF-8 locale +# * unit tests require the "auto-initialize" feature +export LANG=C.utf8 +%cargo_test -f auto-initialize +%endif + +%changelog +* Fri Dec 20 2024 MSVSphere Packaging Team - 0.23.3-1 +- Rebuilt for MSVSphere 10 + +## START: Generated by rpmautospec +* Mon Dec 09 2024 Fabio Valentini - 0.23.3-1 +- Update to version 0.23.3; Fixes RHBZ#2326583 + +* Sun Dec 08 2024 Fabio Valentini - 0.22.6-2 +- Relax chrono-tz dependency to allow building with 0.10 + +* Sat Nov 09 2024 Fabio Valentini - 0.22.6-1 +- Update to version 0.22.6; Fixes RHBZ#2318984 + +* Tue Oct 15 2024 Fabio Valentini - 0.22.4-1 +- Update to version 0.22.4; Fixes RHBZ#2318282 + +* Wed Sep 18 2024 Fabio Valentini - 0.22.3-1 +- Update to version 0.22.3; Fixes RHBZ#2312480 + +* Tue Jul 23 2024 Fabio Valentini - 0.22.2-1 +- Update to version 0.22.2; Fixes RHBZ#2296165 + +* Sat Jul 20 2024 Fedora Release Engineering - 0.22.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Wed Jun 26 2024 Fabio Valentini - 0.22.0-2 +- Fix regression in 128-bit number conversions + +* Tue Jun 25 2024 Fabio Valentini - 0.22.0-1 +- Update to version 0.22.0; Fixes RHBZ#2293990 + +* Wed Apr 24 2024 Fabio Valentini - 0.21.2-1 +- Update to version 0.21.2; Fixes RHBZ#2275246 + +* Fri Apr 12 2024 Fabio Valentini - 0.21.1-1 +- Update to version 0.21.1; Fixes RHBZ#2265638 + +* Fri Apr 05 2024 Fabio Valentini - 0.20.2-3 +- Drop deny(warnings) from doctests to fix building with recent Rust + +* Fri Jan 26 2024 Fedora Release Engineering - 0.20.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sun Jan 07 2024 Fabio Valentini - 0.20.2-1 +- Update to version 0.20.2; Fixes RHBZ#2256871 + +* Sun Dec 31 2023 Fabio Valentini - 0.20.1-1 +- Update to version 0.20.1; Fixes RHBZ#2256286 + +* Mon Nov 13 2023 Fabio Valentini - 0.20.0-1 +- Update to version 0.20.0; Fixes RHBZ#2243412 + +* Tue Aug 01 2023 Fabio Valentini - 0.19.2-1 +- Update to version 0.19.2; Fixes RHBZ#2228011 + +* Fri Jul 21 2023 Fedora Release Engineering - 0.19.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Mon Jul 10 2023 Fabio Valentini - 0.19.1-3 +- Skip more tests that are unreliable with Python 3.12 + +* Mon Jul 10 2023 Fabio Valentini - 0.19.1-2 +- Skip tests that are unreliable with Python 3.12 + +* Mon Jul 10 2023 Fabio Valentini - 0.19.1-1 +- Update to version 0.19.1; Fixes RHBZ#2211444 + +* Sat May 06 2023 Fabio Valentini - 0.18.3-1 +- Update to version 0.18.3; Fixes RHBZ#2186630 + +* Tue Mar 28 2023 Fabio Valentini - 0.18.2-2 +- Backport upstreamed patch make PyASCIIObject available on big-endian + arches + +* Sun Mar 26 2023 Fabio Valentini - 0.18.2-1 +- Update to version 0.18.2; Fixes RHBZ#2181651 + +* Sat Mar 04 2023 Fabio Valentini - 0.18.1-1 +- Update to version 0.18.1; Fixes RHBZ#2061101 + +* Sat Jan 28 2023 Fabio Valentini - 0.17.3-1 +- Update to version 0.17.3 + +* Sat Jan 21 2023 Fedora Release Engineering - 0.16.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Wed Jan 18 2023 Fabio Valentini - 0.16.6-1 +- Update to version 0.16.6 + +* Sat Jul 23 2022 Fedora Release Engineering - 0.15.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Thu May 05 2022 Fabio Valentini - 0.15.2-1 +- Update to version 0.15.2 + +* Sat Mar 12 2022 Fabio Valentini - 0.15.1-3 +- Relax exact versions for optional indexmap dependency + +* Fri Jan 21 2022 Fedora Release Engineering - 0.15.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Mon Nov 22 2021 Fabio Valentini - 0.15.1-1 +- Update to version 0.15.1; Fixes RHBZ#2020053 + +* Sun Sep 05 2021 Fabio Valentini - 0.14.5-1 +- Update to version 0.14.5; Fixes RHBZ#1998825 + +* Mon Aug 23 2021 Fabio Valentini - 0.14.3-2 +- Temporarily ignore test failures on s390x due to endianness problems + +* Mon Aug 23 2021 Fabio Valentini - 0.14.3-1 +- Update to version 0.14.3; Fixes RHBZ#1978983 + +* Fri Jul 23 2021 Fedora Release Engineering - 0.13.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Sun Feb 14 2021 Fabio Valentini - 0.13.2-1 +- Update to version 0.13.2. + +* Wed Jan 27 2021 Fedora Release Engineering - 0.13.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Sun Jan 10 2021 Fabio Valentini - 0.13.1-1 +- Update to version 0.13.1. + +* Thu Jan 07 2021 Fabio Valentini - 0.13.0-1 +- Initial package + +## END: Generated by rpmautospec