F-Droid server and build tools. https://gitlab.com/fdroid/fdroidserver
Find a file
தமிழ்நேரம் 067a216f00 Translated using Weblate: Tamil (ta) by தமிழ்நேரம் <anishprabu.t@gmail.com>
Currently translated at 100.0% (611 of 611 strings)

Translated using Weblate: Tamil (ta) by தமிழ்நேரம் <anishprabu.t@gmail.com>

Currently translated at 100.0% (611 of 611 strings)

Co-authored-by: தமிழ்நேரம் <anishprabu.t@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/f-droid/fdroidserver/ta/
Translation: F-Droid/F-Droid Server
2024-12-11 12:25:21 +01: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
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 index.xml: XML escaping from Python < 3.13 which stopped converting " 2024-12-06 16:15:48 +01:00
hooks Refactor TestCase files into python modules 2024-11-20 10:37:52 +01:00
locale Translated using Weblate: Tamil (ta) by தமிழ்நேரம் <anishprabu.t@gmail.com> 2024-12-11 12:25:21 +01:00
tests replace deprecated pkg_resources.get_distribution() from setuptools 2024-12-06 12:26:37 +01:00
.bandit add vscode settings 2021-06-18 06:50:50 +00: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 install biplist and pycountry by default on macOS 2024-11-25 15:28:43 +01: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 for 2.3.2 2024-11-26 22:17:05 +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.11.1 2024-11-21 12:26:23 +00: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 Use latest Bookworm images for makebuildserver 2024-09-23 19:04:42 +00:00
MANIFEST.in include tests/__init__.py in dist tarball 2024-11-21 21:35:16 +01: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 extras_require: python-magic is preferred when libmagic is available 2024-12-06 12:26:45 +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.