Go to file
Hans-Christoph Steiner b5e57a7aa6 example file for public read only S3 bucket policy
This is the locked down S3 policy as created by Benetech for their Secure
App Generator project.
2016-09-15 23:20:18 +02:00
.pylint-plugins jenkins-build: make pylint handle the hashlib hash classes properly 2014-04-03 12:33:22 -04:00
buildserver gradle: support gradle-wrapper.properties version 2016-09-15 19:16:38 +01: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 example file for public read only S3 bucket policy 2016-09-15 23:20:18 +02:00
fdroidserver make metadata exceptions optional based on CLI flag 2016-09-12 12:55:48 +02:00
hooks buildserver: remove Kivy, unused since 2013 and out of date 2016-09-12 14:58:08 +02:00
tests skip `fdroid import` test if gitlab is not available 2016-09-15 23:20:18 +02: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 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 build of Checkey and old F-Droid 2016-09-12 14:58:08 +02:00
makebuildserver makebs: bump support repo to 38 2016-09-15 20:07:25 +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