chiark / gitweb /
makebuildserver: upgrade NDK r16 to r16b
[fdroidserver.git] / examples / config.py
1 #!/usr/bin/env python3
2
3 # Copy this file to config.py, then amend the settings below according to
4 # your system configuration.
5
6 # Custom path to the Android SDK, defaults to $ANDROID_HOME
7 # sdk_path = "$ANDROID_HOME"
8
9 # Custom paths to various versions of the Android NDK, defaults to 'r12b' set
10 # to $ANDROID_NDK. Most users will have the latest at $ANDROID_NDK, which is
11 # used by default. If a version is missing or assigned to None, it is assumed
12 # not installed.
13 # ndk_paths = {
14 #     'r9b': None,
15 #     'r10e': None,
16 #     'r11c': None,
17 #     'r12b': "$ANDROID_NDK",
18 #     'r13b': None,
19 #     'r14b': None,
20 #     'r15c': None,
21 #     'r16b': None,
22 # }
23
24 # java_paths = {
25 #     '1.8': "/usr/lib/jvm/java-8-openjdk",
26 # }
27
28 # Build tools version to be used
29 # build_tools = "25.0.2"
30
31 # Force all build to use the above version of build -tools, good for testing
32 # builds without having all of the possible build-tools installed.
33 # force_build_tools = True
34
35 # Command or path to binary for running Ant
36 # ant = "ant"
37
38 # Command or path to binary for running maven 3
39 # mvn3 = "mvn"
40
41 # Command or path to binary for running Gradle
42 # gradle = "gradle"
43
44 # Set the maximum age (in days) of an index that a client should accept from
45 # this repo. Setting it to 0 or not setting it at all disables this
46 # functionality. If you do set this to a non-zero value, you need to ensure
47 # that your index is updated much more frequently than the specified interval.
48 # The same policy is applied to the archive repo, if there is one.
49 # repo_maxage = 0
50
51 repo_url = "https://MyFirstFDroidRepo.org/fdroid/repo"
52 repo_name = "My First F-Droid Repo Demo"
53 repo_icon = "fdroid-icon.png"
54 repo_description = """
55 This is a repository of apps to be used with F-Droid. Applications in this
56 repository are either official binaries built by the original application
57 developers, or are binaries built from source by the admin of f-droid.org
58 using the tools on https://gitlab.com/u/fdroid.
59 """
60
61 # As above, but for the archive repo.
62 # archive_older sets the number of versions kept in the main repo, with all
63 # older ones going to the archive. Set it to 0, and there will be no archive
64 # repository, and no need to define the other archive_ values.
65 archive_older = 3
66 archive_url = "https://f-droid.org/archive"
67 archive_name = "My First F-Droid Archive Demo"
68 archive_icon = "fdroid-icon.png"
69 archive_description = """
70 The repository of older versions of applications from the main demo repository.
71 """
72
73 # This allows a specific kind of insecure APK to be included in the
74 # 'repo' section.  Since April 2017, APK signatures that use MD5 are
75 # no longer considered valid, jarsigner and apksigner will return an
76 # error when verifying.  `fdroid update` will move APKs with these
77 # disabled signatures to the archive.  This option stops that
78 # behavior, and lets those APKs stay part of 'repo'.
79 #
80 # allow_disabled_algorithms = True
81
82 # Normally, all apps are collected into a single app repository, like on
83 # https://f-droid.org. For certain situations, it is better to make a repo
84 # that is made up of APKs only from a single app. For example, an automated
85 # build server that publishes nightly builds.
86 # per_app_repos = True
87
88 # `fdroid update` will create a link to the current version of a given app.
89 # This provides a static path to the current APK. To disable the creation of
90 # this link, uncomment this:
91 # make_current_version_link = False
92
93 # By default, the "current version" link will be based on the "Name" of the
94 # app from the metadata. You can change it to use a different field from the
95 # metadata here:
96 # current_version_name_source = 'packageName'
97
98 # Optionally, override home directory for gpg
99 # gpghome = '/home/fdroid/somewhere/else/.gnupg'
100
101 # The ID of a GPG key for making detached signatures for apks. Optional.
102 # gpgkey = '1DBA2E89'
103
104 # The key (from the keystore defined below) to be used for signing the
105 # repository itself. This is the same name you would give to keytool or
106 # jarsigner using -alias. (Not needed in an unsigned repository).
107 # repo_keyalias = "fdroidrepo"
108
109 # Optionally, the public key for the key defined by repo_keyalias above can
110 # be specified here. There is no need to do this, as the public key can and
111 # will be retrieved from the keystore when needed. However, specifying it
112 # manually can allow some processing to take place without access to the
113 # keystore.
114 # repo_pubkey = "..."
115
116 # The keystore to use for release keys when building. This needs to be
117 # somewhere safe and secure, and backed up!  The best way to manage these
118 # sensitive keys is to use a "smartcard" (aka Hardware Security Module). To
119 # configure F-Droid to use a smartcard, set the keystore file using the keyword
120 # "NONE" (i.e. keystore = "NONE"). That makes Java find the keystore on the
121 # smartcard based on 'smartcardoptions' below.
122 # keystore = "~/.local/share/fdroidserver/keystore.jks"
123
124 # You should not need to change these at all, unless you have a very
125 # customized setup for using smartcards in Java with keytool/jarsigner
126 # smartcardoptions = "-storetype PKCS11 -providerName SunPKCS11-OpenSC \
127 #    -providerClass sun.security.pkcs11.SunPKCS11 \
128 #    -providerArg opensc-fdroid.cfg"
129
130 # The password for the keystore (at least 6 characters). If this password is
131 # different than the keypass below, it can be OK to store the password in this
132 # file for real use. But in general, sensitive passwords should not be stored
133 # in text files!
134 # keystorepass = "password1"
135
136 # The password for keys - the same is used for each auto-generated key as well
137 # as for the repository key. You should not normally store this password in a
138 # file since it is a sensitive password.
139 # keypass = "password2"
140
141 # The distinguished name used for all keys.
142 # keydname = "CN=Birdman, OU=Cell, O=Alcatraz, L=Alcatraz, S=California, C=US"
143
144 # Use this to override the auto-generated key aliases with specific ones
145 # for particular applications. Normally, just leave it empty.
146 # keyaliases = {}
147 # keyaliases['com.example.app'] = 'example'
148 # You can also force an app to use the same key alias as another one, using
149 # the @ prefix.
150 # keyaliases['com.example.another.plugin'] = '@com.example.another'
151
152
153 # The full path to the root of the repository. It must be specified in
154 # rsync/ssh format for a remote host/path. This is used for syncing a locally
155 # generated repo to the server that is it hosted on. It must end in the
156 # standard public repo name of "/fdroid", but can be in up to three levels of
157 # sub-directories (i.e. /var/www/packagerepos/fdroid). You can include
158 # multiple servers to sync to by wrapping the whole thing in {} or [], and
159 # including the serverwebroot strings in a comma-separated list.
160 #
161 # serverwebroot = 'user@example:/var/www/fdroid'
162 # serverwebroot = {
163 #     'foo.com:/usr/share/nginx/www/fdroid',
164 #     'bar.info:/var/www/fdroid',
165 #     }
166
167 # The full URL to a git remote repository. You can include
168 # multiple servers to mirror to by wrapping the whole thing in {} or [], and
169 # including the servergitmirrors strings in a comma-separated list.
170 # Servers listed here will also be automatically inserted in the mirrors list.
171 #
172 # servergitmirrors = 'https://github.com/user/repo'
173 # servergitmirrors = {
174 #     'https://github.com/user/repo',
175 #     'https://gitlab.com/user/repo',
176 #     }
177
178 # Any mirrors of this repo, for example all of the servers declared in
179 # serverwebroot and all the servers declared in servergitmirrors,
180 # will automatically be used by the client.  If one
181 # mirror is not working, then the client will try another.  If the
182 # client has Tor enabled, then the client will prefer mirrors with
183 # .onion addresses. This base URL will be used for both the main repo
184 # and the archive, if it is enabled.  So these URLs should end in the
185 # 'fdroid' base of the F-Droid part of the web server like serverwebroot.
186 #
187 # mirrors = (
188 #     'https://foo.bar/fdroid',
189 #     'http://foobarfoobarfoobar.onion/fdroid',
190 # )
191
192 # optionally specify which identity file to use when using rsync or git over SSH
193 #
194 # identity_file = '~/.ssh/fdroid_id_rsa'
195
196
197 # If you are running the repo signing process on a completely offline machine,
198 # which provides the best security, then you can specify a folder to sync the
199 # repo to when running `fdroid server update`. This is most likely going to
200 # be a USB thumb drive, SD Card, or some other kind of removable media. Make
201 # sure it is mounted before running `fdroid server update`. Using the
202 # standard folder called 'fdroid' as the specified folder is recommended, like
203 # with serverwebroot.
204 #
205 # local_copy_dir = '/media/MyUSBThumbDrive/fdroid'
206
207
208 # If you are using local_copy_dir on an offline build/signing server, once the
209 # thumb drive has been plugged into the online machine, it will need to be
210 # synced to the copy on the online machine. To make that happen
211 # automatically, set sync_from_local_copy_dir to True:
212 #
213 # sync_from_local_copy_dir = True
214
215
216 # To upload the repo to an Amazon S3 bucket using `fdroid server
217 # update`.  Warning, this deletes and recreates the whole fdroid/
218 # directory each time. This prefers s3cmd, but can also use
219 # apache-libcloud.  To customize how s3cmd interacts with the cloud
220 # provider, create a 's3cfg' file next to this file (config.py), and
221 # those settings will be used instead of any 'aws' variable below.
222 #
223 # awsbucket = 'myawsfdroid'
224 # awsaccesskeyid = 'SEE0CHAITHEIMAUR2USA'
225 # awssecretkey = 'yourverysecretkeywordpassphraserighthere'
226
227
228 # If you want to force 'fdroid server' to use a non-standard serverwebroot
229 #
230 # nonstandardwebroot = False
231
232
233 # If you want to upload the release apk file to androidobservatory.org
234 #
235 # androidobservatory = False
236
237
238 # If you want to upload the release apk file to virustotal.com
239 # You have to enter your profile apikey to enable the upload.
240 #
241 # virustotal_apikey = "virustotal_apikey"
242
243
244 # The build logs can be posted to a mediawiki instance, like on f-droid.org.
245 # wiki_protocol = "http"
246 # wiki_server = "server"
247 # wiki_path = "/wiki/"
248 # wiki_user = "login"
249 # wiki_password = "1234"
250
251 # Keep a log of all generated index files in a git repo to provide a
252 # "binary transparency" log for anyone to check the history of the
253 # binaries that are published.  This is in the form of a "git remote",
254 # which this machine where `fdroid update` is run has already been
255 # configured to allow push access (e.g. ssh key, username/password, etc)
256 # binary_transparency_remote = "git@gitlab.com:fdroid/binary-transparency-log.git"
257
258 # Only set this to true when running a repository where you want to generate
259 # stats, and only then on the master build servers, not a development
260 # machine. If you want to keep the "added" and "last updated" dates for each
261 # app and APK in your repo, then you should enable this.
262 # update_stats = True
263
264 # When used with stats, this is a list of IP addresses that are ignored for
265 # calculation purposes.
266 # stats_ignore = []
267
268 # Server stats logs are retrieved from. Required when update_stats is True.
269 # stats_server = "example.com"
270
271 # User stats logs are retrieved from. Required when update_stats is True.
272 # stats_user = "bob"
273
274 # Use the following to push stats to a Carbon instance:
275 # stats_to_carbon = False
276 # carbon_host = '0.0.0.0'
277 # carbon_port = 2003
278
279 # Set this to true to always use a build server. This saves specifying the
280 # --server option on dedicated secure build server hosts.
281 # build_server_always = True
282
283 # By default, fdroid will use YAML .yml and the custom .txt metadata formats. It
284 # is also possible to have metadata in JSON by adding 'json'.
285 # accepted_formats = ('txt', 'yml')
286
287 # Limit in number of characters that fields can take up
288 # Only the fields listed here are supported, defaults shown
289 # char_limits = {
290 #     'Summary': 80,
291 #     'Description': 4000,
292 # }
293
294 # It is possible for the server operator to specify lists of apps that
295 # must be installed or uninstalled on the client (aka "push installs).
296 # If the user has opted in, or the device is already setup to respond
297 # to these requests, then F-Droid will automatically install/uninstall
298 # the packageNames listed.  This is protected by the same signing key
299 # as the app index metadata.
300 #
301 # install_list = (
302 #     'at.bitfire.davdroid',
303 #     'com.fsck.k9',
304 #     'us.replicant',
305 # )
306 #
307 # uninstall_list = (
308 #     'com.facebook.orca',
309 #     'com.android.vending',
310 # )