From e9e2713cde751e4181a19d8e29832278edef5fc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Thu, 10 Sep 2015 16:34:26 -0700 Subject: [PATCH] lint: cleanup, remove stale sites --- fdroidserver/lint.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/fdroidserver/lint.py b/fdroidserver/lint.py index 6202f947..94abdcc9 100644 --- a/fdroidserver/lint.py +++ b/fdroidserver/lint.py @@ -38,11 +38,9 @@ https_enforcings = [ enforce_https('github.com'), enforce_https('gitlab.com'), enforce_https('bitbucket.org'), - enforce_https('gitorious.org'), enforce_https('apache.org'), enforce_https('google.com'), enforce_https('svn.code.sf.net'), - enforce_https('googlecode.com'), ] @@ -173,12 +171,10 @@ def main(): curid = appid count['app_total'] += 1 - # enabled_builds = 0 lowest_vercode = -1 curbuild = None for build in app['builds']: if not build['disable']: - # enabled_builds += 1 vercode = int(build['vercode']) if lowest_vercode == -1 or vercode < lowest_vercode: lowest_vercode = vercode @@ -215,7 +211,6 @@ def main(): old_sites = [ 'gitorious.org', 'code.google.com', - # 'sourceforge.net', # too many false positives as of now ] if any(s in app['Repo'] for s in usual_sites): for f in ['Web Site', 'Source Code', 'Issue Tracker', 'Changelog']: