The package rpms/python3.12.git has added or updated architecture specific content in its spec file (ExclusiveArch/ExcludeArch or %ifarch/%ifnarch) in commit(s): https://src.fedoraproject.org/cgit/rpms/python3.12.git/commit/?id=8b88d87c44....
Change: +%ifarch x86_64 aarch64
Thanks.
Full change: ============
commit 8b88d87c440808c7269dde4a1221fbc81fc82bc7 Author: Charalampos Stratakis cstratak@redhat.com Date: Tue May 6 03:12:09 2025 +0200
Add perf to the testing BuildRequires
Perf profiling showing the Python functions is only supported on x86_64 and aarch64 at the moment.
Adding perf as a BuildRequires allows tests that utilize the perf binary to run.
diff --git a/python3.12.spec b/python3.12.spec index dcb0cc8..e2c05a1 100644 --- a/python3.12.spec +++ b/python3.12.spec @@ -279,6 +279,11 @@ BuildRequires: tix-devel BuildRequires: tk-devel < 1:9 BuildRequires: tzdata
+# Perf support is only available on x86_64 and aarch64 right now +%ifarch x86_64 aarch64 +BuildRequires: perf +%endif + %if %{with valgrind} BuildRequires: valgrind-devel %endif diff --git a/tests/tests.yml b/tests/tests.yml index cc1e061..e78c001 100644 --- a/tests/tests.yml +++ b/tests/tests.yml @@ -54,3 +54,4 @@ - glibc-all-langpacks # for locale tests - marshalparser # for testing compatibility (magic numbers) with marshalparser - rpm # for debugging + - perf # for test_perf_profiler
arch-excludes@lists.fedoraproject.org