config.py.j2 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. #!/usr/bin/env python3
  2. sdk_path = "{{ fdroid_android_dir }}/android-sdk-linux"
  3. build_tools = "30.0.3"
  4. repo_url = "https://fdroid.cisti.org/repo"
  5. repo_name = "Cisti.org"
  6. repo_icon = "cisti.png"
  7. repo_description = """
  8. Questo archivio contiene applicazioni scaricate dal play store di google su
  9. richiesta degli utenti di cisti.org
  10. """
  11. # `fdroid update` will create a link to the current version of a given app.
  12. # This provides a static path to the current APK. To disable the creation of
  13. # this link, uncomment this:
  14. make_current_version_link = False
  15. # The key (from the keystore defined below) to be used for signing the
  16. # repository itself. This is the same name you would give to keytool or
  17. # jarsigner using -alias. (Not needed in an unsigned repository).
  18. repo_keyalias = "cisti"
  19. keystore = "cisti.keystore"
  20. # The password for the keystore (at least 6 characters). If this password is
  21. # different than the keypass below, it can be OK to store the password in this
  22. # file for real use. But in general, sensitive passwords should not be stored
  23. # in text files!
  24. keystorepass = "{{ fdroid_keystore_pass }}"
  25. # The password for keys - the same is used for each auto-generated key as well
  26. # as for the repository key. You should not normally store this password in a
  27. # file since it is a sensitive password.
  28. keypass = "{{ fdroid_keystore_pass }}"
  29. # The distinguished name used for all keys.
  30. keydname = "CN=cisti, OU=Unknown, O=cisti.org, L=Unknown, ST=Unknown, C=Unknown"