mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 22:40:12 +01:00
Tools for managing builds, indexes, updates, and deployments for F-Droid repositories.
00066a9b45
'set-head origin --auto' fails if there are multiple branches that are the same as origin/HEAD: error: Multiple remote HEAD branches. Please choose one explicitly with: git remote set-head origin develop git remote set-head origin master So we want to grab any of them, e.g. the first branch that it gives us, and just use that as it will work just fine. |
||
---|---|---|
.pylint-plugins | ||
buildserver | ||
completion | ||
docs | ||
examples | ||
fdroidserver | ||
hooks | ||
tests | ||
wp-fdroid | ||
.gitignore | ||
COPYING | ||
fd-commit | ||
fdroid | ||
jenkins-build | ||
makebuildserver | ||
MANIFEST.in | ||
README | ||
setup.py | ||
updateplugin |
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