X-Git-Url: https://git.donarmstrong.com/?p=bugscan.git;a=blobdiff_plain;f=bugcfg.pm;h=1a54ba4f4415cc7a019a20c34bc9ea58c6dc83ad;hp=d9849bf657b0ce12371e7f7a75be5e882537bd12;hb=HEAD;hpb=abd9cb1908075f88c3bc5575a7d30577682084ea diff --git a/bugcfg.pm b/bugcfg.pm index d9849bf..efa475b 100644 --- a/bugcfg.pm +++ b/bugcfg.pm @@ -18,10 +18,10 @@ $pseudolist = $config{pseudo_desc_file}; # this is just the default, and should always be overriden by the # Debbugs::Config; set values -our $debian_releases = {testing => 'jessie', - stable => 'wheezy', +our $debian_releases = {testing => 'stretch', + stable => 'jessie', unstable => 'sid', - oldstable => 'squeeze', + oldstable => 'wheezy', }; # figure out debian releases from distribution aliases for my $alias (keys %{$config{distribution_aliases}//{}}) { @@ -31,10 +31,10 @@ for my $alias (keys %{$config{distribution_aliases}//{}}) { } # check out: -# http://release.debian.org/wheezy/arch_qualify.html +# http://release.debian.org/testing/arch_qualify.html # and then generally include architectures which are currently in testing -our @architectures = qw(amd64 armel armhf i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390x); -our @sections = ( "main", "contrib", "non-free" ); +our @architectures = qw(all amd64 arm64 armel armhf i386 ppc64el s390x); +our @sections = ( "main", "contrib", "non-free", "non-free-firmware" ); our @priorities = @{$config{strong_severities}}; our @skiptags = ( );