Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/plugins
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-29 17:15:35 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-29 17:15:35 (GMT)
commit1b42be673b2cd237ce873df9f4b0b339aab9518a (patch)
treed4d7293ef51bfdbf1181a8772fa9e856207a8771 /devbot/plugins
parent2ec41693aeefe3c9ce78ff3654a11ff6bd2b7123 (diff)
Merge system-3.4 and 3.6
Diffstat (limited to 'devbot/plugins')
-rw-r--r--devbot/plugins/debian.py2
-rw-r--r--devbot/plugins/fedora.py4
-rw-r--r--devbot/plugins/interfaces.py6
-rw-r--r--devbot/plugins/ubuntu.py4
-rw-r--r--devbot/plugins/unknown.py2
5 files changed, 8 insertions, 10 deletions
diff --git a/devbot/plugins/debian.py b/devbot/plugins/debian.py
index 38d5be4..09f8abc 100644
--- a/devbot/plugins/debian.py
+++ b/devbot/plugins/debian.py
@@ -89,7 +89,7 @@ class DistroInfo(interfaces.DistroInfo):
self.name = "debian"
self.version = "unknown"
- self.system_version = "3.4"
+ self.gnome_version = "3.4"
self.gstreamer_version = "0.10"
self.valid = True
self.supported = (arch in ["i686", "x86_64"])
diff --git a/devbot/plugins/fedora.py b/devbot/plugins/fedora.py
index 3cfdfef..60d73d8 100644
--- a/devbot/plugins/fedora.py
+++ b/devbot/plugins/fedora.py
@@ -87,7 +87,7 @@ class DistroInfo(interfaces.DistroInfo):
self.name = "fedora"
self.version = "unknown"
- self.system_version = "3.6"
+ self.gnome_version = "3.6"
self.gstreamer_version = "1.0"
self.use_lib64 = (arch == "x86_64")
self.valid = True
@@ -101,7 +101,7 @@ class DistroInfo(interfaces.DistroInfo):
if release == "Fedora release 17 (Beefy Miracle)":
self.version = "17"
- self.system_version = "3.4"
+ self.gnome_version = "3.4"
self.gstreamer_version = "0.10"
elif release == "Fedora release 18 (Spherical Cow)":
self.version = "18"
diff --git a/devbot/plugins/interfaces.py b/devbot/plugins/interfaces.py
index c6db014..d8659bf 100644
--- a/devbot/plugins/interfaces.py
+++ b/devbot/plugins/interfaces.py
@@ -43,10 +43,8 @@ class DistroInfo:
self.version = None
"""The distribution version."""
- self.system_version = None
- """A distribution independent system version, normally the same
- major version of GNOME installed on the system.
- """
+ self.gnome_version = None
+ """The major version of GNOME shipped with the distribution."""
self.gstreamer_version = None
"""The version of gstreamer shipped with the distribution."""
diff --git a/devbot/plugins/ubuntu.py b/devbot/plugins/ubuntu.py
index 556aaab..eaeb482 100644
--- a/devbot/plugins/ubuntu.py
+++ b/devbot/plugins/ubuntu.py
@@ -12,7 +12,7 @@ class DistroInfo(interfaces.DistroInfo):
self.name = "ubuntu"
self.version = "unknown"
- self.system_version = "3.4"
+ self.gnome_version = "3.4"
self.gstreamer_version = "1.0"
self.valid = True
self.supported = (arch in ["i386", "i686", "x86_64"])
@@ -27,7 +27,7 @@ class DistroInfo(interfaces.DistroInfo):
self.supported = False
if self.version and self.version >= "12.10":
- self.system_version = "3.6"
+ self.gnome_version = "3.6"
def _get_distributor(self):
try:
diff --git a/devbot/plugins/unknown.py b/devbot/plugins/unknown.py
index f843fd5..8589ef6 100644
--- a/devbot/plugins/unknown.py
+++ b/devbot/plugins/unknown.py
@@ -31,7 +31,7 @@ class DistroInfo(interfaces.DistroInfo):
self.use_lib64 = os.path.exists("/usr/lib64")
self.name = "unknown"
self.version = "unknown"
- self.system_version = "3.4"
+ self.gnome_version = "3.4"
self.gstreamer_version = "0.10"
self.valid = True
self.supported = False