Compare commits

...

4 Commits

Author SHA1 Message Date
David Abdurachmanov 2f49853b1e
Enable tests
Signed-off-by: David Abdurachmanov <davidlt@rivosinc.com>
2022-09-17 11:56:20 +03:00
David Abdurachmanov a8ef75f9c6
Rebuild for riscv64
Signed-off-by: David Abdurachmanov <davidlt@rivosinc.com>
2022-09-15 14:56:03 +03:00
David Abdurachmanov 4f332c2299
Merge remote-tracking branch 'up/main' into main-riscv64
Signed-off-by: David Abdurachmanov <davidlt@rivosinc.com>
2022-09-15 14:53:01 +03:00
David Abdurachmanov 1f629bb32f
Enable riscv64
Signed-off-by: David Abdurachmanov <davidlt@rivosinc.com>
2022-08-19 09:25:51 +03:00
1 changed files with 18 additions and 2 deletions

View File

@ -17,7 +17,7 @@ URL: https://www.python.org/
#global prerel ...
%global upstream_version %{general_version}%{?prerel}
Version: %{general_version}%{?prerel:~%{prerel}}
Release: 1%{?dist}
Release: 1.5.riscv64%{?dist}
License: Python
@ -1085,13 +1085,22 @@ CheckPython() {
# distutils.tests.test_bdist_rpm tests fail when bootstraping the Python
# package: rpmbuild requires /usr/bin/pythonX.Y to be installed
LD_LIBRARY_PATH=$ConfDir $ConfDir/python -m test.regrtest \
-wW --slowest -j0 --timeout=1800 \
-wW --slowest -j0 \
%ifnarch riscv64
--timeout=1800 \
%else
--timeout=18000 \
%endif
%if %{with bootstrap}
-x test_distutils \
%endif
%ifarch %{mips64}
-x test_ctypes \
%endif
%ifarch riscv64
-x test_gdb \
-x test_venv \
%endif
echo FINISHED: CHECKING OF PYTHON FOR CONFIGURATION: $ConfName
@ -1589,6 +1598,13 @@ CheckPython optimized
# ======================================================
%changelog
* Sat Sep 17 2022 David Abdurachmanov <davidlt@rivosinc.com> - 3.10.7-1.5.riscv64
- Enable tests
* Thu Sep 15 2022 David Abdurachmanov <davidlt@rivosinc.com> - 3.10.7-1.4.riscv64
- Rebuild for riscv64
- Disable tests for now
* Wed Sep 07 2022 Miro Hrončok <mhroncok@redhat.com> - 3.10.7-1
- Update to 3.10.7
- Contains security fix for CVE-2020-10735