chiark / gitweb /
Even examples/config.py with default_config
authorDaniel Martí <mvdan@mvdan.cc>
Tue, 1 Sep 2015 22:30:41 +0000 (15:30 -0700)
committerDaniel Martí <mvdan@mvdan.cc>
Tue, 1 Sep 2015 22:30:41 +0000 (15:30 -0700)
examples/config.py
fdroidserver/common.py

index 427342be6c6b882ee74c97daf291489848df3121..e0acfd7055c91e045452e2bc69fb4d43f59d9bc2 100644 (file)
 # used by default.  If a version is missing or assigned to None, it is assumed
 # not installed.
 # ndk_paths = {
-#    'r9b': "/opt/android-ndk-r9b",
-#    'r10e': "/opt/android-ndk",
+#     'r9b': None,
+#     'r10e': "$ANDROID_NDK",
 # }
 
 # Build tools version to be used
-build_tools = "22.0.1"
+build_tools = "23.0.0"
 
 # Command or path to binary for running Ant
 ant = "ant"
@@ -214,13 +214,13 @@ carbon_port = 2003
 build_server_always = False
 
 # By default, fdroid will use YAML and the custom .txt metadata formats.  It
-# is also possible to have metadata in JSON and XML. You can enable your
-# preferred formats by setting them in a list:
-# accepted_formats = ['json', 'txt', 'xml', 'yaml']
+# is also possible to have metadata in JSON and XML by adding 'json' and
+# 'xml'.
+# accepted_formats = ['txt', 'yaml']
 
 # Limit in number of characters that fields can take up
 # Only the fields listed here are supported, defaults shown
 char_limits = {
-    'Summary': 50,
-    'Description': 1500,
+    'Summary': 80,
+    'Description': 4000,
 }
index 0bc1eb5c76da706382392b54e200a87ac587962f..2cd4bdd28f08d7e3ff2e4eeb14c00d8e0397e758 100644 (file)
@@ -53,7 +53,7 @@ default_config = {
     'sdk_path': "$ANDROID_HOME",
     'ndk_paths': {
         'r9b': None,
-        'r10e': "$ANDROID_NDK"
+        'r10e': "$ANDROID_NDK",
     },
     'build_tools': "23.0.0",
     'ant': "ant",
@@ -75,7 +75,7 @@ default_config = {
     'smartcardoptions': [],
     'char_limits': {
         'Summary': 80,
-        'Description': 4000
+        'Description': 4000,
     },
     'keyaliases': {},
     'repo_url': "https://MyFirstFDroidRepo.org/fdroid/repo",