From 8675d50261d5dc08b26825f348c2d1c22edc33f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Sun, 1 Jun 2014 16:37:33 +0200 Subject: [PATCH] Add support for gitlab.com repos to import --- fdroidserver/import.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/fdroidserver/import.py b/fdroidserver/import.py index b17bb4df..27b0c90b 100644 --- a/fdroidserver/import.py +++ b/fdroidserver/import.py @@ -138,13 +138,12 @@ def main(): sourcecode = "" website = "" elif url.startswith('https://github.com'): - if url.endswith('/'): - url = url[:-1] - if url.endswith('.git'): - logging.info("A github URL should point to the project, not the git repo") - sys.exit(1) projecttype = 'github' - repo = url + '.git' + repotype = 'git' + sourcecode = url + issuetracker = url + '/issues' + elif url.startswith('https://gitlab.com/'): + projecttype = 'gitlab' repotype = 'git' sourcecode = url issuetracker = url + '/issues'