Go to file
Hans-Christoph Steiner 56d51fcd6b gpg-sign all valid files in the repo, including source tarballs
This makes sure there is a GPG signature on any file that is included in
the repo, including APKs, OBB, source tarballs, media files, OTA update
ZIPs, etc.  Having a GPG signature is more important on non-APK files since
they mostly do not have any signature mechanism of their own.

This also adds basic tests of adding non-APK/OBB files to a repo with
`fdroid update`.

closes #232
2016-11-07 14:53:01 +01:00
.pylint-plugins jenkins-build: make pylint handle the hashlib hash classes properly 2014-04-03 12:33:22 -04:00
buildserver buildserver: only auto-detect KVM in ./makebuildserver 2016-09-28 10:16:30 +02:00
completion Add '--use-date-from-apk' option to bash-completion 2016-02-18 16:42:16 +04:00
docs Add qt sdk support 2016-09-27 14:36:12 +02:00
examples gpg-sign all valid files in the repo, including source tarballs 2016-11-07 14:53:01 +01:00
fdroidserver gpg-sign all valid files in the repo, including source tarballs 2016-11-07 14:53:01 +01:00
hooks buildserver: remove Kivy, unused since 2013 and out of date 2016-09-12 14:58:08 +02:00
tests gpg-sign all valid files in the repo, including source tarballs 2016-11-07 14:53:01 +01:00
wp-fdroid wp-fdroid: add 7.0 (24) to the versions list 2016-07-25 14:56:54 +02:00
.gitignore ignore commonly used files for testing in place 2016-06-27 14:00:49 +02:00
.gitlab-ci.yml CI: use new docker image with texinfo 2016-10-31 14:02:39 +00:00
.travis.yml Bump ci images and default build-tools 2016-10-23 17:04:58 +01:00
LICENSE Rename COPYING to LICENSE 2015-08-24 10:54:20 -07:00
MANIFEST.in update buildserver scripts in sdist tarball manifest 2016-11-03 08:07:11 +01:00
README.md README: fix badge 2016-06-03 16:59:24 +01:00
fd-commit Apparently Python cannot handle Unicode 2016-01-14 23:15:05 +01:00
fdroid always parse versions as strings, not bytes 2016-03-14 12:49:38 +01:00
jenkins-build move tests into common script for jenkins and gitlab-ci 2015-09-01 19:52:37 +02:00
jenkins-build-makebuildserver jenkins-build-makebuildserver: remove errant blank line 2016-09-28 09:52:49 +02:00
makebuildserver makebs: bump m2repo, add api25 and build-tools 25 2016-10-23 16:47:19 +01:00
setup.cfg corrected word order in release alias 2016-03-10 12:28:31 +01:00
setup.py Bump to 0.7.0 2016-09-11 11:52:11 +02:00

README.md

F-Droid Server

build status

Server for F-Droid, the Free Software repository system for Android.

The F-Droid server tools provide various scripts and tools that are used to maintain the main F-Droid application repository. You can use these same tools to create your own additional or alternative repository for publishing, or to assist in creating, testing and submitting metadata to the main repository.

For documentation, please see the docs directory.

Alternatively, visit https://f-droid.org/manual/.

What is F-Droid?

F-Droid is an installable catalogue of FOSS (Free and Open Source Software) applications for the Android platform. The client makes it easy to browse, install, and keep track of updates on your device.

Installing

Note that only Python 3 is supported. We recommend version 3.4 or later.

The easiest way to install the fdroidserver tools is on Ubuntu, Mint or other Ubuntu based distributions, you can install using:

sudo apt-get install fdroidserver

For older Ubuntu releases or to get the latest version, you can get fdroidserver from the Guardian Project PPA (the signing key fingerprint is 6B80 A842 07B3 0AC9 DEE2 35FE F50E ADDD 2234 F563)

sudo add-apt-repository ppa:guardianproject/ppa
sudo apt-get update
sudo apt-get install fdroidserver

On OSX, fdroidserver is available from third party package managers, like Homebrew, MacPorts, and Fink:

brew install fdroidserver

For Arch-Linux is a package in the AUR available. If you have installed yaourt or something similiar, you can do:

yaourt -S fdroidserver

For any platform where Python's easy_install is an option (e.g. OSX or Cygwin, you can use it:

sudo easy_install fdroidserver

Python's pip also works:

sudo pip3 install fdroidserver

The combination of pyvenv and pip is great for testing out the latest versions of fdroidserver. Using pip, fdroidserver can even be installed straight from git. First, make sure you have installed the python header files, venv and pip. They should be included in your OS's default package manager or you can install them via other mechanisms like Brew/dnf/pacman/emerge/Fink/MacPorts.

For Debian based distributions:

apt-get install python3-dev python3-pip python3-venv libjpeg-dev zlib1g-dev

Then here's how to install:

git clone https://gitlab.com/fdroid/fdroidserver.git
cd fdroidserver
pyvenv env/
source env/bin/activate
pip3 install -e .
python3 setup.py install