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
Hans-Christoph Steiner af22962572 Fixes #8: if unknown APKs found, prompt to use -c or use --delete-unknown
This adds the option --delete-unknown for the current default behavior of
`fdroid update`: to delete any unknown APKs.  Instead, it just outputs a
warning about the unknown APKs and suggests -c for adding it.

Fixes #8 https://gitlab.com/fdroid/fdroidserver/issues/8
2014-05-29 13:40:06 -04:00
.pylint-plugins jenkins-build: make pylint handle the hashlib hash classes properly 2014-04-03 12:33:22 -04:00
buildserver Add android targets 5, 6 and 9 2014-05-21 11:45:16 +02:00
completion Fixes #8: if unknown APKs found, prompt to use -c or use --delete-unknown 2014-05-29 13:40:06 -04:00
docs Minor manual typo fix 2014-05-13 22:14:19 +01:00
examples Fix E265 in config.py 2014-05-28 09:30:55 +02:00
fdroidserver Fixes #8: if unknown APKs found, prompt to use -c or use --delete-unknown 2014-05-29 13:40:06 -04:00
hooks Add pre-commit hook with installer 2014-05-28 09:28:28 +02:00
tests init: --no-prompt to skip sdk_path prompt 2014-04-23 20:10:02 -04:00
wp-fdroid Show detached gpg sigs for apks in repo browser 2014-04-27 09:30:26 +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 Small glob fix to fd-commit 2014-04-28 23:48:12 +02:00
fdroid Restore friendly error messages 2014-05-20 22:14:19 +01:00
jenkins-build when running pip install tests, cache downloads from pypi 2014-04-22 22:59:27 -04:00
makebuildserver Add gradle 1.12 for the plugin version 0.10 2014-05-20 16:40:43 +02:00
MANIFEST.in fix warnings in python files manifest 2014-04-22 22:59:27 -04:00
README add generic installation instructions to README 2014-04-22 23:13:38 -04:00
setup.py fix PEP8 "E226 missing whitespace around arithmetic operator" 2014-05-06 14:36:33 -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 .
    python setup.py install