X-Git-Url: http://git.onelab.eu/?p=build.git;a=blobdiff_plain;f=pkgs.py;h=d6ea5999c3af38995cca7110a838a5213260fb6a;hp=24b49b7f2b67660dc17649f5f2f8b5f92ce097c2;hb=1f4f80e0c7dc71ef79614227c195139a56d1421e;hpb=698546dacd34e5c6499648da6dea7fcd8a14006c diff --git a/pkgs.py b/pkgs.py index 24b49b7f..d6ea5999 100755 --- a/pkgs.py +++ b/pkgs.py @@ -35,14 +35,14 @@ from optparse import OptionParser import re default_arch = 'x86_64' -known_arch = ['i386', 'i686', 'x86_64'] -default_fcdistro = 'f29' +known_archs = ['i386', 'i686', 'x86_64'] +default_fcdistro = 'f31' known_fcdistros = [ 'centos5', 'centos6', # oldies but we have references to that in the pkgs files 'f8', 'f10', 'f12', 'f14', 'f16', 'f18', 'f20', 'f21', 'f22', 'f23', 'f24', # these ones are still relevant - 'f25', 'f27', 'f29', + 'f25', 'f27', 'f29', 'f31' # scientific linux 'sl6', # debians @@ -242,7 +242,7 @@ def main (): sys.exit(1) keyword = args[0] inputs = args[1:] - if not options.arch in known_arch: + if not options.arch in known_archs: print('Unsupported arch', options.arch, file=stderr) parser.print_help(file=stderr) sys.exit(1)