1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-08 10:10:10 +02:00
Tools for managing builds, indexes, updates, and deployments for F-Droid repositories.
Go to file
Hans-Christoph Steiner 30ff777897 rewritemeta: do not include empty Summary: or Description:
Since the Summary: and Description: in the metadata file has the highest
priority of all the localized texts, adding blank versions means that
apps would always have blank Summary and Description even if the app has
those fields in the localized sections of fdroiddata and/or in the app's
source repo itself.

fdroiddata!2262
2017-06-07 22:10:25 +02:00
buildserver Use Qemu instead of KVM when we don't have VMX/SVM 2017-06-02 11:37:15 +02:00
completion update: add --rename-apks to force APK filenames to fdroid standard 2017-06-01 16:01:05 +02:00
docker dscanner - Drozer based post-build dynamic vulnerability scanner command 2016-12-06 14:00:44 +01:00
examples buildserver: add copy_caches_from_host config option 2017-05-23 20:04:08 +02:00
fdroidserver rewritemeta: do not include empty Summary: or Description: 2017-06-07 22:10:25 +02:00
hooks remove TeX manual, it moved to https://gitlab.com/fdroid/fdroid-website 2017-02-24 14:01:31 +01:00
po add core help strings to gettext source file 2017-06-02 14:06:17 +02:00
tests check signature and OpenSSL after APK has proven valid 2017-06-01 17:45:29 +02:00
wp-fdroid check all APKs for old versions of OpenSSL 2016-12-05 20:16:54 +01:00
.gitignore update: fix fastlane scraping, it uses a subdir called 'images' 2017-05-18 16:13:17 +02:00
.gitlab-ci.yml gitlab-ci: add index v0 metadata parsing test 2017-05-30 21:13:49 +02:00
.pylint-rcfile update outdated pylint setup 2017-05-23 22:34:16 +02:00
.travis.yml Bump CI image, now with build-tools 25.0.2 2016-12-23 17:46:09 +01:00
fd-commit Apparently Python cannot handle Unicode 2016-01-14 23:15:05 +01:00
fdroid fdroid btlog external binary transparency logger 2017-04-03 20:24:21 +02:00
jenkins-build move bulk of reproducible_fdroid_build_apps.sh to jenkins-build 2017-05-23 20:04:08 +02:00
jenkins-build-makebuildserver makebuildserver debugging log details 2017-05-23 20:04:08 +02:00
LICENSE Rename COPYING to LICENSE 2015-08-24 10:54:20 -07:00
makebuildserver makebs: update to ndk-r14b and build-tools-25.0.3 2017-05-26 23:21:20 +02:00
MANIFEST.in remove TeX manual, it moved to https://gitlab.com/fdroid/fdroid-website 2017-02-24 14:01:31 +01:00
README.md remove TeX manual, it moved to https://gitlab.com/fdroid/fdroid-website 2017-02-24 14:01:31 +01:00
setup.cfg corrected word order in release alias 2016-03-10 12:28:31 +01:00
setup.py buildserver: replace custom code with python-vagrant 2017-05-23 20:04:08 +02:00

F-Droid Server

build status

Server for F-Droid, the Free Software repository system for Android.

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 https://f-droid.org/docs/, or you can find the source for the documentation in fdroid/fdroid-website.

What is F-Droid?

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.

Installing

Note that only Python 3 is supported. We recommend version 3.4 or later.

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

sudo apt-get install fdroidserver

For older Ubuntu releases or to get the latest version, you can get fdroidserver from the Guardian Project PPA (the signing key fingerprint is 6B80 A842 07B3 0AC9 DEE2 35FE F50E ADDD 2234 F563)

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

On OSX, fdroidserver is available from third party package managers, like Homebrew, MacPorts, and Fink:

brew install fdroidserver

For Arch-Linux is a package in the AUR available. If you have installed yaourt or something similiar, you can do:

yaourt -S fdroidserver

For any platform where Python's easy_install is an option (e.g. OSX or Cygwin, you can use it:

sudo easy_install fdroidserver

Python's pip also works:

sudo pip3 install fdroidserver

The combination of pyvenv and pip is great for testing out the latest versions of fdroidserver. Using pip, fdroidserver can even be installed straight from git. First, make sure you have installed the python header files, venv 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 python3-dev python3-pip python3-venv libjpeg-dev zlib1g-dev

Then here's how to install:

git clone https://gitlab.com/fdroid/fdroidserver.git
cd fdroidserver
pyvenv env/
source env/bin/activate
pip3 install -e .
python3 setup.py install

Drozer Scanner

There is a new feature under development that can scan any APK in a repo, or any build, using Drozer. Drozer is a dynamic exploit scanner, it runs an app in the emulator and runs known exploits on it.

This setup requires specific versions of two Python modules: docker-py 1.9.0 and requests older than 2.11. Other versions might cause the docker-py connection to break with the containers. Newer versions of docker-py might have this fixed already.

For Debian based distributions:

apt-get install libffi-dev libssl-dev python-docker