mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 14:30:11 +01:00
Add support for gitlab.com repos to import
This commit is contained in:
parent
67630b6c72
commit
8675d50261
@ -138,13 +138,12 @@ def main():
|
|||||||
sourcecode = ""
|
sourcecode = ""
|
||||||
website = ""
|
website = ""
|
||||||
elif url.startswith('https://github.com'):
|
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'
|
projecttype = 'github'
|
||||||
repo = url + '.git'
|
repotype = 'git'
|
||||||
|
sourcecode = url
|
||||||
|
issuetracker = url + '/issues'
|
||||||
|
elif url.startswith('https://gitlab.com/'):
|
||||||
|
projecttype = 'gitlab'
|
||||||
repotype = 'git'
|
repotype = 'git'
|
||||||
sourcecode = url
|
sourcecode = url
|
||||||
issuetracker = url + '/issues'
|
issuetracker = url + '/issues'
|
||||||
|
Loading…
Reference in New Issue
Block a user