Tools for managing builds, indexes, updates, and deployments for F-Droid repositories.
Find a file
Hans-Christoph Steiner 4d66f30faf Merge branch 'skip-test-on-macOS' into 'master'
skip test with mystery failure only on macOS

See merge request fdroid/fdroidserver!1605
2025-02-14 10:15:17 +00:00
.vscode fix vscode setting 2021-06-24 12:15:01 +00:00
buildserver buildserver/provision-apt-get-install: 2024-11-25 19:21:07 +01:00
completion add ColorFormatter class for optional colorized log output 2024-11-19 13:04:23 +00:00
dev pick-complete-translations.py: auto cherry-pick complete langs 2025-01-20 14:53:08 +01:00
docs [docs] Enable intersphinx 2023-10-22 20:43:52 +02:00
examples Drop stats/known_apks.txt 2024-10-31 09:20:26 +00:00
fdroidserver new helpers: get_output_extension() & get_release_apk_filename() 2025-02-13 17:56:30 +01:00
hooks Refactor TestCase files into python modules 2024-11-20 10:37:52 +01:00
locale make -C locale update 2025-01-21 17:03:56 +01:00
tests skip test with mystery failure only on macOS 2025-02-14 11:12:22 +01:00
.bandit bandit no longer includes B410 lxml check 2025-01-15 15:07:24 +01:00
.editorconfig Add .editorconfig 2022-09-20 14:08:04 +00:00
.gitignore metadata: test to check that metadata/*.yml overrides .fdroid.yml 2023-05-11 10:37:45 +02:00
.gitlab-ci.yml ban apksigner v33, it has bugs verifying APKs with v3/v3.1 sigs 2025-01-21 15:00:23 +00:00
.mailmap add myself to .mailmap !1347 2023-04-21 08:01:44 +02:00
.safety-policy.yml safety: clarify reason to ignore CVE 2024-09-09 15:52:28 +00:00
.weblate add weblate config for wlc CLI tool 2019-05-01 21:16:15 +02:00
.yamllint hooks/pre-commit: run yamllint on more YAML files 2023-04-28 10:55:21 +02:00
CHANGELOG.md update CHANGELOG.md 2025-01-21 16:43:16 +01:00
CONTRIBUTING.md CONTRIBUTING: specify which Black version for format 2024-09-09 15:56:24 +00:00
fdroid fix tests on old python version 2020-01-28 11:43:09 +01:00
gradlew-fdroid gradle v8.12.1 2025-01-26 12:09:54 +08:00
jenkins-build-all Upgrade Buildserver VM 2022-10-10 21:22:59 +02:00
jenkins-setup-build-environment buildserver: move config to buildserver/Vagrantfile.yaml 2022-11-03 13:27:16 +01:00
jenkins-test Upgrade Buildserver VM 2022-10-10 21:22:59 +02:00
LICENSE Rename COPYING to LICENSE 2015-08-24 10:54:20 -07:00
makebuildserver Fix vagrant image download issue 2025-01-21 15:57:12 +02:00
MANIFEST.in tests: rename testcommon module to shared_test_code 2025-01-27 10:11:19 +00:00
pyproject.toml Refactor TestCase files into python modules 2024-11-20 10:37:52 +01:00
README.md Refactor TestCase files into python modules 2024-11-20 10:37:52 +01:00
setup.cfg make linting and formatting rules consistent 2023-05-04 14:12:08 +00:00
setup.py version 2.3.5 2025-01-21 16:43:22 +01:00

F-Droid Server

Tools for maintaining an F-Droid repository system.


What is F-Droid Server?

fdroidserver is a suite of tools to publish and work with collections of Android apps (APK files) and other kinds of packages. It is used to maintain the f-droid.org application repository. These same tools can be used to create additional or alternative repositories for publishing, or to assist in creating, testing and submitting metadata to the f-droid.org repository, also known as fdroiddata.

For documentation, please see https://f-droid.org/docs.

In the beginning, fdroidserver was the complete server-side setup that ran f-droid.org. Since then, the website and other parts have been split out into their own projects. The name for this suite of tooling has stayed fdroidserver even though it no longer contains any proper server component.

Installing

There are many ways to install fdroidserver, including using a range of package managers. All of the options are documented on the website: https://f-droid.org/docs/Installing_the_Server_and_Repo_Tools

Releases

The production setup of fdroidserver for f-droid.org is run directly from the master branch. This is put into production on an schedule (currently weekly). So development and testing happens in the branches. We track branches using merge requests. Therefore, there are many WIP and long-lived merge requests.

There are also stable releases of fdroidserver. This is mostly intended for running custom repositories, where the build process is separate. It can also be useful as a simple way to get started contributing packages to fdroiddata, since the stable releases are available in package managers.

Tests

To run the full test suite:

tests/run-tests

To run the tests for individual Python modules, see the tests/test_*.py files, e.g.:

python -m unittest tests/test_metadata.py

It is also possible to run individual tests:

python -m unittest tests.test_metadata.MetadataTest.test_rewrite_yaml_special_build_params

There is a growing test suite that has good coverage on a number of key parts of this code base. It does not yet cover all the code, and there are some parts where the technical debt makes it difficult to write unit tests. New tests should be standard Python unittest test cases. Whenever possible, the old tests written in bash in tests/run-tests should be ported to Python.

This test suite has built over time a bit haphazardly, so it is not as clean, organized, or complete as it could be. We welcome contributions. The goal is to move towards standard Python testing patterns and to expand the unit test coverage. Before rearchitecting any parts of it, be sure to contact us to discuss the changes beforehand.

Additional tests for different linux distributions

These tests are also run on various configurations through GitLab CI. This is only enabled for master@fdroid/fdroidserver because it takes longer to complete than the regular CI tests. Most of the time you won't need to worry about them, but sometimes it might make sense to also run them for your merge request. In that case you need to remove these lines from .gitlab-ci.yml and push this to a new branch of your fork.

Alternatively run them locally like this: gitlab-runner exec docker ubuntu_lts

Documentation

The API documentation based on the docstrings gets automatically published here on every commit on the master branch.

It can be built locally via

pip install -e .[docs]
cd docs
sphinx-apidoc -o ./source ../fdroidserver -M -e
sphinx-autogen -o generated source/*.rst
make html

To additionally lint the code call

pydocstyle fdroidserver --count

When writing docstrings you should follow the numpy style guide.

Translation

Everything can be translated. See Translation and Localization for more info.

View translation status for all languages.