From: Paul Gevers Date: Mon, 27 Nov 2023 19:05:05 +0000 (+0100) Subject: mips64el is currently an OUTOFSYNC arch X-Git-Url: https://git.donarmstrong.com/?p=bugscan.git;a=commitdiff_plain;h=641f3a19cb6025484a7d3ee2d36ef9183a4e569e mips64el is currently an OUTOFSYNC arch The Release Team has put mips64el on the OUTOFSYNC list which means that versions in testing can be behind. This also means that we should be ignoring RC bugs on mips64el. See https://lists.debian.org/debian-devel-announce/2023/11/msg00005.html --- diff --git a/bugcfg.pm b/bugcfg.pm index fa05140..d53f7b8 100644 --- a/bugcfg.pm +++ b/bugcfg.pm @@ -33,7 +33,7 @@ for my $alias (keys %{$config{distribution_aliases}//{}}) { # check out: # http://release.debian.org/testing/arch_qualify.html # and then generally include architectures which are currently in testing -our @architectures = qw(all amd64 arm64 armel armhf i386 mips64el ppc64el s390x); +our @architectures = qw(all amd64 arm64 armel armhf i386 ppc64el s390x); our @sections = ( "main", "contrib", "non-free" ); our @priorities = @{$config{strong_severities}}; our @skiptags = ( );