From 57ba6f030709a51ed2d27290073c807b5ceebe4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Tue, 18 Aug 2015 16:28:58 -0700 Subject: [PATCH] import: remove support for gitorious Same as google code. --- fdroidserver/import.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/fdroidserver/import.py b/fdroidserver/import.py index c1c01d35..27a93ca6 100644 --- a/fdroidserver/import.py +++ b/fdroidserver/import.py @@ -127,11 +127,6 @@ def main(): repotype = 'git' sourcecode = url + '/tree/HEAD' issuetracker = url + '/issues' - elif url.startswith('https://gitorious.org/'): - projecttype = 'gitorious' - repo = 'https://git.gitorious.org/' + url[22:] + '.git' - repotype = 'git' - sourcecode = url elif url.startswith('https://bitbucket.org/'): if url.endswith('/'): url = url[:-1]