1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-07 01:40:10 +02:00
Tools for managing builds, indexes, updates, and deployments for F-Droid repositories.
Go to file
2015-01-11 14:16:57 +01:00
.pylint-plugins jenkins-build: make pylint handle the hashlib hash classes properly 2014-04-03 12:33:22 -04:00
buildserver Remove trailing whitespace 2015-01-04 20:52:27 +01:00
completion Add signindex to bash-completion 2015-01-11 14:16:57 +01:00
docs Add NDK r10d, this time alongside r9b 2015-01-03 00:07:01 +01:00
examples Allow repo pubkey to defined directly in config 2015-01-11 08:20:14 +00:00
fdroidserver Add fdroid signindex to sign previously unsigned indexes 2015-01-11 08:20:14 +00:00
hooks pre-commit: differentiate sh and bash files 2015-01-09 16:08:27 +01:00
tests run all SDK tools commands using SdkToolsPopen 2014-12-14 13:25:20 +01:00
wp-fdroid Add apis 20 and 21 to wp-fdroid's androidversion() 2015-01-04 04:26:24 +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
fd-commit fd-commit: read entire metadata files 2015-01-10 20:04:49 +01:00
fdroid Add fdroid signindex to sign previously unsigned indexes 2015-01-11 08:20:14 +00:00
jenkins-build Merge branch 'some-bug-fixes' into 'master' 2014-11-07 14:49:07 +00:00
makebuildserver Add NDK r10d, this time alongside r9b 2015-01-03 00:07:01 +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
setup.py Bump to 0.3.0 2015-01-02 22:19:24 +01:00

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