Map arm64 in deb to aarch64 in rpm

This fixes conversion of arm64 debian packages.

See #985808, which was the bug for doing it in the opposite direction.
This commit is contained in:
Alois Klink
2023-08-05 15:11:25 +01:00
committed by Bastian Germann
parent b65f2d6974
commit 385b2066d3
2 changed files with 5 additions and 0 deletions

View File

@@ -773,6 +773,9 @@ sub arch {
elsif ($arch eq 'all') {
$arch='noarch';
}
elsif ($arch eq 'arm64') {
$arch='aarch64';
}
elsif ($arch eq 'ppc64el') {
$arch='ppc64le';
}

2
debian/changelog vendored
View File

@@ -2,6 +2,8 @@ alien (8.95.7) UNRELEASED; urgency=medium
* debian/copyright: use spaces rather than tabs to start continuation lines.
* Update standards version to 4.6.2, no changes needed.
* Alien/Package/Rpm.pm: Map arm64 in deb to aarch64 in rpm.
This fixes conversion of arm64 deb packages. (Alois Klink)
-- Debian Janitor <janitor@jelmer.uk> Sat, 07 Jan 2023 06:13:35 -0000