- Add x86_64_v2 to arch list if x86_64 in list

This commit is contained in:
eabdullin 2024-09-16 12:57:35 +03:00
parent 38cc2f79a0
commit b61614969d
2 changed files with 7 additions and 1 deletions

View File

@ -2,7 +2,7 @@
Name: pungi Name: pungi
Version: 4.7.0 Version: 4.7.0
Release: 4%{?dist}.alma Release: 5%{?dist}.alma
Summary: Distribution compose tool Summary: Distribution compose tool
License: GPL-2.0-only License: GPL-2.0-only
@ -174,6 +174,9 @@ rm %{buildroot}%{_bindir}/pungi
%{_bindir}/%{name}-cache-cleanup %{_bindir}/%{name}-cache-cleanup
%changelog %changelog
* Mon Sep 16 2024 Eduard Abdullin <eabdullin@almalinux.org> - 4.7.0-5
- Add x86_64_v2 to arch list if x86_64 in list
* Fri Sep 06 2024 Stepan Oksanichenko <soksanichenko@almalinux.org> - 4.7.0-4 * Fri Sep 06 2024 Stepan Oksanichenko <soksanichenko@almalinux.org> - 4.7.0-4
- Truncate a volume ID to 32 bytes - Truncate a volume ID to 32 bytes
- Add new architecture `x86_64_v2` - Add new architecture `x86_64_v2`

View File

@ -93,6 +93,9 @@ def split_name_arch(name_arch):
def is_excluded(package, arches, logger=None): def is_excluded(package, arches, logger=None):
"""Check if package is excluded from given architectures.""" """Check if package is excluded from given architectures."""
if package.arch == 'x86_64_v2' and 'x86_64' in package.exclusivearch:
package.exclusivearch.append('x86_64_v2')
if package.excludearch and set(package.excludearch) & set(arches): if package.excludearch and set(package.excludearch) & set(arches):
if logger: if logger:
logger.debug( logger.debug(