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=c474fb1914adda83c69ea47efbb51a9c9ee79a15 commit c474fb1914adda83c69ea47efbb51a9c9ee79a15 Author: Guillem Jover <[email protected]> AuthorDate: Mon Nov 13 01:36:20 2023 +0100 arch: Restrict dragonflybsd ports to amd64 The DragonFly BSD system only support and has only ever supported the amd64 CPU, so there is no point in listing any other CPU. --- data/tupletable | 2 +- scripts/t/Dpkg_Arch.t | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/data/tupletable b/data/tupletable index 6d62ac4c2..bcfeff7ed 100644 --- a/data/tupletable +++ b/data/tupletable @@ -43,7 +43,7 @@ base-gnu-kopensolaris-amd64 kopensolaris-amd64 base-gnu-kopensolaris-i386 kopensolaris-i386 base-gnu-hurd-amd64 hurd-amd64 base-gnu-hurd-i386 hurd-i386 -base-bsd-dragonflybsd-<cpu> dragonflybsd-<cpu> +base-bsd-dragonflybsd-amd64 dragonflybsd-amd64 base-bsd-freebsd-<cpu> freebsd-<cpu> base-bsd-openbsd-<cpu> openbsd-<cpu> base-bsd-netbsd-<cpu> netbsd-<cpu> diff --git a/scripts/t/Dpkg_Arch.t b/scripts/t/Dpkg_Arch.t index 028565654..86d1e2935 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 => 12058; +use Test::More tests => 11002; 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 = 357; +my $KNOWN_ARCHES_TOTAL = 324; my @valid_arches = get_valid_arches(); sub get_valid_wildcards -- Dpkg.Org's dpkg

