mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 14:30:11 +01:00
5ae2703477
There are so many possible installation paths for Python modules, it has been very hard to even find and test them all. This adds a fallback option if the examples dir cannot be found. A repo can work without an icon or the example config.py. This removes the fake assumption that the icon can be a full path in the config.py. While the path was being properly passed through to the index file, the file was never copied properly into place nor rsynced to the web server.
35 lines
1.0 KiB
Python
35 lines
1.0 KiB
Python
|
|
repo_url = "https://MyFirstFDroidRepo.org/fdroid/repo"
|
|
repo_name = "My First F-Droid Repo Demo"
|
|
repo_description = """
|
|
This is a repository of apps to be used with F-Droid. Applications in this
|
|
repository are either official binaries built by the original application
|
|
developers, or are binaries built from source by the admin of f-droid.org
|
|
using the tools on https://gitlab.com/u/fdroid.
|
|
"""
|
|
|
|
archive_older = 3
|
|
archive_url = "https://f-droid.org/archive"
|
|
archive_name = "My First F-Droid Archive Demo"
|
|
archive_description = """
|
|
The repository of older versions of applications from the main demo repository.
|
|
"""
|
|
|
|
make_current_version_link = False
|
|
|
|
repo_keyalias = "sova"
|
|
keystore = "keystore.jks"
|
|
keystorepass = "r9aquRHYoI8+dYz6jKrLntQ5/NJNASFBacJh7Jv2BlI="
|
|
keypass = "r9aquRHYoI8+dYz6jKrLntQ5/NJNASFBacJh7Jv2BlI="
|
|
keydname = "CN=sova, OU=F-Droid"
|
|
|
|
mirrors = (
|
|
'http://foobarfoobarfoobar.onion/fdroid',
|
|
'https://foo.bar/fdroid',
|
|
)
|
|
|
|
update_stats = True
|
|
|
|
install_list = 'org.adaway'
|
|
uninstall_list = ('com.android.vending', 'com.facebook.orca', )
|