1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-14 13:00:08 +02:00
Tools for managing builds, indexes, updates, and deployments for F-Droid repositories.
Go to file
Hans-Christoph Steiner f34c842f55 auto-clean newlines and spaces in repo/archive descriptions
This gives us flexibility in how the blocks of text can be formatted in
config.py, but also provides a more useful format for displaying since the
client can decide where to wrap the text.
2014-07-14 15:01:57 -04:00
.pylint-plugins jenkins-build: make pylint handle the hashlib hash classes properly 2014-04-03 12:33:22 -04:00
buildserver Add support for gradle plugin version 0.12 2014-07-04 08:50:20 +02:00
completion Update fdroid init completion 2014-06-12 21:51:33 +02:00
docs Little doc fixes 2014-07-05 12:05:54 +02:00
examples auto-clean newlines and spaces in repo/archive descriptions 2014-07-14 15:01:57 -04:00
fdroidserver auto-clean newlines and spaces in repo/archive descriptions 2014-07-14 15:01:57 -04:00
hooks Add config.buildserver.py to the pre-commit hook 2014-07-03 18:28:49 +02:00
tests auto-clean newlines and spaces in repo/archive descriptions 2014-07-14 15:01:57 -04:00
wp-fdroid Recognise published .asc signatures in web repo browser 2014-06-30 12:04:22 +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 Fix silly var name typo 2014-07-06 23:28:25 +02:00
fdroid Use logging with proper format when warning about improper verbose/quiet usage 2014-07-05 14:17:02 +02:00
jenkins-build use 'python2' everywhere since fdroidserver has not been tested with 3.x 2014-06-30 23:01:47 -04:00
makebuildserver Update the SDK to 23.0.2, supposedly fixing all issues 2014-07-03 15:36:43 +02:00
MANIFEST.in tests: by default, run on included urzip.apk 2014-06-27 20:31:28 -04:00
README use 'python2' everywhere since fdroidserver has not been tested with 3.x 2014-06-30 23:01:47 -04:00
setup.py set version to v0.2 2014-06-26 20:47:36 -04:00
updateplugin Strip unnecessary exts from updateplugin and makebuildserver 2013-12-30 17:11:38 +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