This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=2b86bccf96b2d08219cafe983a1bb109dfafc81c commit 2b86bccf96b2d08219cafe983a1bb109dfafc81c Author: Guillem Jover <[email protected]> AuthorDate: Mon Nov 13 01:38:18 2023 +0100 arch: Restrict aix ports to powerpc and ppc64 The only currently supported CPUs on AIX are PowerPC (32-bit and 64-bit), so there is no point in listing any other CPU as if it was supported. --- data/tupletable | 3 ++- scripts/t/Dpkg_Arch.t | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/data/tupletable b/data/tupletable index bcfeff7ed..1e7b6297a 100644 --- a/data/tupletable +++ b/data/tupletable @@ -48,6 +48,7 @@ base-bsd-freebsd-<cpu> freebsd-<cpu> base-bsd-openbsd-<cpu> openbsd-<cpu> base-bsd-netbsd-<cpu> netbsd-<cpu> base-bsd-darwin-<cpu> darwin-<cpu> -base-sysv-aix-<cpu> aix-<cpu> +base-sysv-aix-powerpc aix-powerpc +base-sysv-aix-ppc64 aix-ppc64 base-sysv-solaris-<cpu> solaris-<cpu> base-tos-mint-m68k mint-m68k diff --git a/scripts/t/Dpkg_Arch.t b/scripts/t/Dpkg_Arch.t index 86d1e2935..7320b9c3d 100644 --- a/scripts/t/Dpkg_Arch.t +++ b/scripts/t/Dpkg_Arch.t @@ -16,7 +16,7 @@ use strict; use warnings; -use Test::More tests => 11002; +use Test::More tests => 9978; use_ok('Dpkg::Arch', qw(debarch_to_debtuple debarch_to_multiarch debarch_eq debarch_is debarch_is_wildcard @@ -28,7 +28,7 @@ use_ok('Dpkg::Arch', qw(debarch_to_debtuple debarch_to_multiarch get_host_gnu_type get_valid_arches)); -my $KNOWN_ARCHES_TOTAL = 324; +my $KNOWN_ARCHES_TOTAL = 292; my @valid_arches = get_valid_arches(); sub get_valid_wildcards -- Dpkg.Org's dpkg

