Go to file
Hans-Christoph Steiner 298a88a498 added test case for common.isApkDebuggable()
Just getting into the habit of adding tests to everything that I change...
Also, it should be useful to have an unsigned APK in the test collection,
since `fdroid update` should handle it gracefully and give a warning of
some kind.
2014-12-14 13:25:20 +01:00
.pylint-plugins jenkins-build: make pylint handle the hashlib hash classes properly 2014-04-03 12:33:22 -04:00
buildserver Bump build-tools again to 21.1.2 2014-12-12 12:57:12 +01:00
completion Update fdroid init completion 2014-06-12 21:51:33 +02:00
docs Merge branch 'some-bug-fixes' into 'master' 2014-11-07 14:49:07 +00:00
examples Bump build-tools again to 21.1.2 2014-12-12 12:57:12 +01:00
fdroidserver switched last aapt call to use central config['aapt'] 2014-12-14 13:25:20 +01:00
hooks Add ruby tests to the pre-commit hook 2014-12-12 12:34:28 +01:00
tests added test case for common.isApkDebuggable() 2014-12-14 13:25:20 +01:00
wp-fdroid Fix urlencoding of category in next page links, etc 2014-09-04 14:31:37 +01:00
.gitignore init: --android-home for forcing the path to the Android SDK 2014-04-23 19:33:10 -04:00
COPYING Initial files 2010-10-21 23:26:38 +01:00
MANIFEST.in include test cases for python getsig replacement 2014-11-07 09:20:33 +00:00
README use 'python2' everywhere since fdroidserver has not been tested with 3.x 2014-06-30 23:01:47 -04:00
fd-commit fd-commit: don't break when non-metadata files show up in git status 2014-08-16 17:51:32 +02:00
fdroid Don't print tracebacks for option errors 2014-08-25 16:48:31 +01:00
jenkins-build Merge branch 'some-bug-fixes' into 'master' 2014-11-07 14:49:07 +00:00
makebuildserver Update sdk to 24.0.1 2014-12-12 12:39:04 +01:00
setup.py Replace getsig.java with a pure python implementation 2014-11-07 09:20:14 +00:00

README

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.

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/


Installing
----------

The easiest way to install the fdroidserver tools is to use virtualenv and pip
(if you are Debian/Ubuntu/Mint/etc, you can first try installing using
`apt-get install fdroidserver`).  First, make sure you have virtualenv
installed, it should be included in your OS's Python distribution or via other
mechanisms like dnf/yum/pacman/emerge/Fink/MacPorts/Brew.  Then here's how to
install:

    git clone https://gitlab.com/fdroid/fdroidserver.git
    cd fdroidserver
    virtualenv env/
    . env/bin/activate
    pip install -e .
    python2 setup.py install