other distros move to nodemanager that has a single specfile for all packages
[build.git] / pkgs.py
diff --git a/pkgs.py b/pkgs.py
index c5f8479..7525c0b 100755 (executable)
--- a/pkgs.py
+++ b/pkgs.py
@@ -35,17 +35,20 @@ default_arch='x86_64'
 known_arch = ['i386', 'i686', 'x86_64']
 default_fcdistro='f14'
 known_fcdistros = [ 'centos5','centos6',
-                    'f8', 'f10','f12', 'f14', 'f16', 'f17',
+                    'f8', 'f10','f12', 'f14', 'f16', 'f18','f20','f22',
                     'sl6', 
                     # debians
-                    'squeeze','wheezy',
+                    'squeeze','wheezy','jessie',
                     # ubuntus
-                    'oneiric', 'precise', 'quantal' ]
+                    'oneiric', 'precise', 'quantal', 'raring', 'saucy', 'trusty' ]
 default_pldistro='onelab'
 
-known_keywords=['groupname', 'groupdesc', 
-                'nodeyumexclude', 'plcyumexclude', 
-                'yumexclude', 'package', 'group', 'precious', 'junk', 'mirror', ]
+known_keywords=[
+    'group', 'groupname', 'groupdesc', 
+     'package', 'pip', 'gem', 
+    'nodeyumexclude', 'plcyumexclude', 'yumexclude',
+    'precious', 'junk', 'mirror',
+]
 
 
 m_fcdistro_cutter = re.compile('([a-z]+)([0-9]+)')