1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00
Tools for managing builds, indexes, updates, and deployments for F-Droid repositories.
Go to file
Hans-Christoph Steiner 455e76b9e7 jenkins: don't scan fdroidserver/ project for APKs
This was causing a number of problems:

* it would spend lots of time sorting through the tmp folders of APKs
  created by previous runs of this script
* it would include the bad test APKs in tests/ as normal APKs
2014-10-23 14:26:11 -04:00
.pylint-plugins jenkins-build: make pylint handle the hashlib hash classes properly 2014-04-03 12:33:22 -04:00
buildserver Forgot to bump the build tools in the server config 2014-10-23 15:21:07 +02:00
completion Update fdroid init completion 2014-06-12 21:51:33 +02:00
docs More list comprehension fixes 2014-09-13 13:07:21 +02:00
examples Also bump build-tools in the example config 2014-10-23 15:22:40 +02:00
fdroidserver Bump build-tools to 21.0.2 2014-10-22 15:01:01 +02:00
hooks Add setup.py to pep8+pyflakes hook, fix it 2014-08-16 11:51:23 +02:00
tests Remove .egg-info dir when tests succeed 2014-09-17 08:54:02 +02:00
wp-fdroid Fix urlencoding of category in next page links, etc 2014-09-04 14:31:37 +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 fd-commit: don't break when non-metadata files show up in git status 2014-08-16 17:51:32 +02:00
fdroid Don't print tracebacks for option errors 2014-08-25 16:48:31 +01:00
jenkins-build jenkins: don't scan fdroidserver/ project for APKs 2014-10-23 14:26:11 -04:00
makebuildserver Add support for gradle plugin version 0.13 via gradle 2.1 2014-10-07 16:36:10 +02:00
MANIFEST.in tests: by default, run on included urzip.apk 2014-06-27 20:31:28 -04:00
README use 'python2' everywhere since fdroidserver has not been tested with 3.x 2014-06-30 23:01:47 -04:00
setup.py Add setup.py to pep8+pyflakes hook, fix it 2014-08-16 11:51:23 +02: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 .
    python2 setup.py install