From 39f7429c9b5fa6e4e9d28993c4a858cd3e6a15b9 Mon Sep 17 00:00:00 2001 From: Boris Kraut Date: Sun, 26 Mar 2017 18:05:37 +0200 Subject: [PATCH] import: add notabug.org --- fdroidserver/import.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/fdroidserver/import.py b/fdroidserver/import.py index 8090abb7..ff839b5b 100644 --- a/fdroidserver/import.py +++ b/fdroidserver/import.py @@ -105,6 +105,15 @@ def get_metadata_from_url(app, url): app.WebSite = url app.SourceCode = url + '/tree/HEAD' app.IssueTracker = url + '/issues' + elif url.startswith('https://notabug.org/'): + projecttype = 'notabug' + if url.endswith('.git'): + url = url[:-4] + repo = url + '.git' + repotype = 'git' + app.SourceCode = url + app.IssueTracker = url + '/issues' + app.WebSite = "" elif url.startswith('https://bitbucket.org/'): if url.endswith('/'): url = url[:-1]