Go to file
Daniel Martí 34f451361f Bump to 0.7.0 2016-09-11 11:52:11 +02:00
.pylint-plugins jenkins-build: make pylint handle the hashlib hash classes properly 2014-04-03 12:33:22 -04:00
buildserver Add buildserver lxml requirement for pEp 2016-08-28 12:47:12 +00:00
completion Add '--use-date-from-apk' option to bash-completion 2016-02-18 16:42:16 +04:00
docs make build reproducible by fixing sort order in docs 2016-08-26 13:41:14 +02:00
examples all: bump to build-tools 24.0.2 2016-09-10 11:45:39 +02:00
fdroidserver all: bump to build-tools 24.0.2 2016-09-10 11:45:39 +02:00
hooks pre-commit: pep8 is now pycodestyle 2016-07-13 14:42:23 +01:00
tests rename server request from "delete" to "uninstall" 2016-08-24 23:05:34 +02:00
wp-fdroid wp-fdroid: add 7.0 (24) to the versions list 2016-07-25 14:56:54 +02:00
.gitignore buildserver: buildserver/Vagrantfile is configed by .yaml file 2016-07-04 23:54:52 +02:00
.gitlab-ci.yml all: bump to build-tools 24.0.2 2016-09-10 11:45:39 +02:00
.travis.yml all: bump to build-tools 24.0.2 2016-09-10 11:45:39 +02:00
LICENSE Rename COPYING to LICENSE 2015-08-24 10:54:20 -07:00
MANIFEST.in name makebuildserver config the same as the script 2016-01-21 15:34:55 +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 buildserver: test builds against fdroid and adaway 2016-07-04 23:52:53 +02:00
makebuildserver update to platform-24_r02 in ./makebuildserver 2016-08-30 19:48:07 +02: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