summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMart Raudsepp <leio@gentoo.org>2017-03-21 04:29:07 +0200
committerMart Raudsepp <leio@gentoo.org>2017-03-21 04:29:07 +0200
commit0ca25ccc1130b4a6c35f50f990cd2faa5a7f8fdc (patch)
tree2fe6305560f933ed728c5fa9c2e99c5599633add
parentgnome: Track upstream core vs apps suite handling and show it in the output (diff)
downloadgentoo-bumpchecker-0ca25ccc1130b4a6c35f50f990cd2faa5a7f8fdc.tar.gz
gentoo-bumpchecker-0ca25ccc1130b4a6c35f50f990cd2faa5a7f8fdc.tar.bz2
gentoo-bumpchecker-0ca25ccc1130b4a6c35f50f990cd2faa5a7f8fdc.zip
gnome: Stop skipping mobile suite, as it doesn't exist anymore anyway
-rw-r--r--modules/gnome_module.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/modules/gnome_module.py b/modules/gnome_module.py
index 1780b92..38639ee 100644
--- a/modules/gnome_module.py
+++ b/modules/gnome_module.py
@@ -63,9 +63,6 @@ class GNOME:
# Skip invalid lines
if len(components) != 4 or len(components[2]) == 0:
continue
- # Skip mobile stuff, because we don't care. And they are mostly dupes anyway
- if components[0] == 'mobile':
- continue
pkg = package_module.Package(components[1] + "-" + components[2], suite=components[0])
if (pkg.name and pkg.version):
ret.append(pkg)