diff --git a/pungi.spec b/pungi.spec index 6f0b554d..175c3ba6 100644 --- a/pungi.spec +++ b/pungi.spec @@ -2,7 +2,7 @@ Name: pungi Version: 4.7.0 -Release: 6%{?dist}.alma.1 +Release: 7%{?dist}.alma.1 Summary: Distribution compose tool License: GPL-2.0-only @@ -174,6 +174,9 @@ rm %{buildroot}%{_bindir}/pungi %{_bindir}/%{name}-cache-cleanup %changelog +* Mon Sep 1 2025 Aleksandra Kachanova - 4.7.0-7 +- Add riscv64 to the list of supported architectures + * Fri Sep 27 2024 Stepan Oksanichenko - 4.7.0-6 - Add x86_64_v2 to a list of exclusive arches if there is any arch with base `x86_64` diff --git a/pungi/arch_utils.py b/pungi/arch_utils.py index fbb45c32..7367d8ad 100644 --- a/pungi/arch_utils.py +++ b/pungi/arch_utils.py @@ -84,6 +84,8 @@ arches = { "sh3": "noarch", # itanium "ia64": "noarch", + # riscv64 + "riscv64": "noarch", } # Will contain information parsed from /proc/self/auxv via _parse_auxv().