From b735fa02e0ffcfe72655333ab9c9c9e9c5ce2c27 Mon Sep 17 00:00:00 2001 From: David Abdurachmanov Date: Fri, 20 Oct 2023 14:18:31 +0300 Subject: [PATCH] Disable bootstrap (riscv64) Signed-off-by: David Abdurachmanov --- python3.12.spec | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/python3.12.spec b/python3.12.spec index bbafa40..5abd31e 100644 --- a/python3.12.spec +++ b/python3.12.spec @@ -17,7 +17,7 @@ URL: https://www.python.org/ #global prerel ... %global upstream_version %{general_version}%{?prerel} Version: %{general_version}%{?prerel:~%{prerel}} -Release: 2.2.riscv64%{?dist} +Release: 2.3.riscv64%{?dist} License: Python-2.0.1 @@ -58,13 +58,13 @@ License: Python-2.0.1 # IMPORTANT: When bootstrapping, it's very likely python-pip-wheel is # not available. Turn off the rpmwheels bcond until # python-pip is built with a wheel to get around the issue. -%bcond_without bootstrap +%bcond_with bootstrap # Whether to use RPM build wheels from the python-{pip,setuptools,wheel}-wheel packages # Uses upstream bundled prebuilt wheels otherwise # Only F39+ has a pip new enough to work with Python 3.12 %if 0%{?fedora} >= 39 || 0%{?rhel} >= 10 -%bcond_with rpmwheels +%bcond_without rpmwheels %else %bcond_with rpmwheels %endif @@ -127,10 +127,10 @@ Provides: bundled(python3dist(packaging)) = 23 } # Expensive optimizations (mainly, profile-guided optimizations) -%bcond_with optimizations +%bcond_without optimizations # Run the test suite in %%check -%bcond_with tests +%bcond_without tests # Extra build for debugging the interpreter or C-API extensions # (the -debug subpackages) @@ -1675,6 +1675,9 @@ CheckPython optimized # ====================================================== %changelog +* Fri Oct 20 2023 David Abdurachmanov - 3.12.0-2.3.riscv64 +- Disable bootstrap (riscv64) + * Mon Oct 17 2023 David Abdurachmanov - 3.12.0-2.2.riscv64 - Bootstrap for Python 3.12 (riscv64)