1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 23:23:27 +02:00

Add support for gitlab.com repos to import

This commit is contained in:
Daniel Martí 2014-06-01 16:37:33 +02:00
parent 67630b6c72
commit 8675d50261

View File

@ -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'