From 13b276e02f021a56dcd8d0548c4b007af546d9af Mon Sep 17 00:00:00 2001 From: Boris Kraut Date: Sun, 26 Mar 2017 19:00:03 +0200 Subject: [PATCH] import: add option to specify license and categories, auto-detect build.gradle --- fdroidserver/import.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/fdroidserver/import.py b/fdroidserver/import.py index ff839b5b..8f11fe23 100644 --- a/fdroidserver/import.py +++ b/fdroidserver/import.py @@ -184,6 +184,10 @@ def main(): help="Project URL to import from.") parser.add_argument("-s", "--subdir", default=None, help="Path to main android project subdirectory, if not in root.") + parser.add_argument("-c", "--categories", default=None, + help="Comma separated list of categories.") + parser.add_argument("-l", "--license", default=None, + help="Overall license of the project.") parser.add_argument("--rev", default=None, help="Allows a different revision (or git branch) to be specified for the initial import") metadata.add_metadata_arguments(parser) @@ -271,8 +275,14 @@ def main(): build.versionCode = versionCode or '?' if options.subdir: build.subdir = options.subdir + if options.license: + app.License = options.license + if options.categories: + app.Categories = options.categories if os.path.exists(os.path.join(root_dir, 'jni')): build.buildjni = ['yes'] + if os.path.exists(os.path.join(root_dir, 'build.gradle')): + build.gradle = ['yes'] metadata.post_metadata_parse(app)