Fixing wrong license
[nepi.git] / src / nepi / resources / linux / rpmfuncs.py
index 35aeb61..4d22bc3 100644 (file)
@@ -3,9 +3,8 @@
 #    Copyright (C) 2013 INRIA
 #
 #    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
+#    it under the terms of the GNU General Public License version 2 as
+#    published by the Free Software Foundation;
 #
 #    This program is distributed in the hope that it will be useful,
 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -53,18 +52,18 @@ def install_rpmfusion_command(os):
 
     cmd = " { rpm -q rpmfusion-free-release || sudo -S rpm -i %(package)s ; } "
 
-    if os in [OSType.FEDORA, OSType.FEDORA_12]:
+    if (os & OSType.FEDORA_8):
+        # RpmFusion for Fedora 8 is unmaintained 
+        cmd = ""
+    elif (os & OSType.FEDORA_12):
         # For f12
         cmd =  cmd %  {'package': RPM_FUSION_URL_F12}
-    elif os == OSType.FEDORA_14:
+    elif (os & OSType.FEDORA_14):
         # For f14
         cmd = cmd %  {'package': RPM_FUSION_URL_F14}
-    elif os == OSType.FEDORA:
+    else:
         # For f14+
         cmd = cmd %  {'package': RPM_FUSION_URL}
-    else:
-        # Fedora 8 is unmaintained 
-        cmd = ""
 
     return cmd