mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 23:10:29 +03:00
F-Droid server and build tools.
https://gitlab.com/fdroid/fdroidserver
support cloud storage, and assorted other improvements I just finished support for `fdroid server update` to push to Amazon AWS S3 cloud store. It uses libcloud, so there could be lots of other cloud storage services added. This would be used for alternative hosting locations for repos. For example, for the Guardian Project repo, we'd include the URLs to various cloud storage options like https://s3.amazonaws.com/guardianproject/fdroid/repo Services like https://s3.amazonaws.com/ are often not blocked when other things are. It does not need to be Amazon-specific. I went with libcloud because it supports like 10 cloud storage and is under active development. What is there is just the start. I'm new to cloud stuff, so I just started based on a script that Adam Prichart of psiphon gave me. I had to do a fair amount of packaging work to get the python-libcloud Debian package updated. I almost have the 0.14.1 update done, I hope that'll be in Debian tonight. Lots more info in the commit messages. |
||
|---|---|---|
| .pylint-plugins | ||
| buildserver | ||
| completion | ||
| docs | ||
| examples | ||
| fdroidserver | ||
| 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 .
python setup.py install