1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-08-16 11:20:10 +02:00
Tools for managing builds, indexes, updates, and deployments for F-Droid repositories.
Go to file
Hans-Christoph Steiner 276123856c move keystore gen logic to common function
This moves the method for generating a new keystore for the repo signing
key to a common function so that it can be used in more subcommands beyond
`fdroid init`.  The immediate idea is to make `fdroid update --create-key`
upgrade unsigned repos to signed ones so we can make fdroidclient only use
signed repos.
2015-05-08 16:13:15 -04:00
.pylint-plugins jenkins-build: make pylint handle the hashlib hash classes properly 2014-04-03 12:33:22 -04:00
buildserver Add plugin version 1.2 to our gradle wrapper 2015-04-29 22:15:57 +02:00
completion Add option to not use rsync --checksum 2015-01-11 15:35:04 +00:00
docs Note about required python version 2015-02-01 20:31:46 +00:00
examples Forgot to bump build_tools in the configs 2015-03-24 21:36:42 +01:00
fdroidserver move keystore gen logic to common function 2015-05-08 16:13:15 -04:00
hooks Also ignore PEP8 W503 2015-03-05 15:24:52 +01:00
tests make fdroid update check that it can sign the repo, or exit with error 2015-05-08 16:13:15 -04:00
wp-fdroid Add android version 5.1 2015-04-06 22:18:54 +02: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 jenkins-build: always use speced dir for APK source 2015-05-08 16:13:15 -04:00
makebuildserver Add gradle 2.3 to the buildserver 2015-04-09 16:02:35 +02:00
MANIFEST.in include test cases for python getsig replacement 2014-11-07 09:20:33 +00:00
README Update README file. 2015-03-11 10:28:47 +02: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/](https://f-droid.org/manual/)


Installing
----------

The easiest way to install the `fdroidserver` tools is on Debian, Ubuntu, Mint
or other Debian based distributions, you can install using:

    sudo add-apt-repository ppa:guardianproject/ppa
    sudo apt-get update
    sudo apt-get install fdroidserver

But you can also use `virtualenv` and `pip` python tools that also work on other
distributions.

First, make sure you have installed the python header files, virtualenv 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 python-dev python-pip python-virtualenv

Then here's how to install:

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