1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 15:13:27 +02:00
fdroidserver/fdroid.texi

584 lines
16 KiB
Plaintext
Raw Normal View History

\input texinfo @c -*-texinfo-*-
@c %**start of header
@setfilename fdroid.info
2012-02-23 11:43:02 +01:00
@settitle F-Droid Server Manual
@c %**end of header
@copying
2012-02-23 11:43:02 +01:00
This manual is for the F-Droid repository server tools.
2012-02-23 14:57:38 +01:00
Copyright @copyright{} 2010, 2011, 2012 Ciaran Gultnieks
Copyright @copyright{} 2011 Henrik Tunedal, Michael Haas, John Sullivan
@quotation
2012-02-23 11:43:02 +01:00
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3
or any later version published by the Free Software Foundation;
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
A copy of the license is included in the section entitled "GNU
Free Documentation License".
@end quotation
@end copying
@titlepage
2012-02-23 11:43:02 +01:00
@title F-Droid Server Manual
@author Ciaran Gultnieks and the F-Droid project
@page
@vskip 0pt plus 1filll
@insertcopying
@end titlepage
@contents
@ifnottex
@node Top
2012-02-23 11:43:02 +01:00
@top F-Droid Server
2012-02-23 11:43:02 +01:00
@insertcopying
@end ifnottex
@menu
2012-02-23 14:57:38 +01:00
* Overview::
* System Requirements::
* Setup::
* Simple Binary Repository::
* Building Applications::
* Metadata::
2012-02-23 11:43:02 +01:00
* GNU Free Documentation License::
* Index::
@end menu
2012-02-23 14:57:38 +01:00
@node Overview
@chapter Overview
2012-02-23 14:57:38 +01:00
The F-Droid server tools provide various scripts, tools and data 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.
2012-02-23 14:57:38 +01:00
@node System Requirements
@chapter System Requirements
2012-02-23 14:57:38 +01:00
@cindex installation
2012-02-23 14:57:38 +01:00
The system requirements for using the tools will vary depending on your
intended usage. At the very least, you'll need:
2012-02-23 14:57:38 +01:00
@itemize @bullet
@item
2012-02-23 14:57:38 +01:00
GNU/Linux
@item
2012-02-23 14:57:38 +01:00
Python 2.x
@item
2012-02-23 14:57:38 +01:00
The Android SDK
@end itemize
2012-02-23 14:57:38 +01:00
If you intend to build applications from source you'll also need most, if not
all, of the following:
2012-02-23 14:57:38 +01:00
@itemize @bullet
@item
All available SDK platforms and tools installed in the Android SDK, but *not*
the proprietary components.
@item
The Android NDK
@item
Ant
@item
Ant Contrib Tasks (Debian package ant-contrib)
@item
2012-02-23 14:57:38 +01:00
Maven (Debian package maven2)
@item
JavaCC (Debian package javacc)
@item
VCS clients: svn, git, hg, bzr
@item
A keystore for holding release keys. (Safe, secure and well backed up!)
@end itemize
2012-02-23 14:57:38 +01:00
If you intend to use the 'Build Server' system, for secure and clean builds
(highly recommended), you will also need:
@itemize @bullet
@item
2012-02-23 14:57:38 +01:00
VirtualBox (debian package virtualbox-ose)
@item
Ruby
@item
Vagrant and Vagrant-snap
@item
Paramiko (debian package python-paramiko)
@end itemize
2012-02-23 14:57:38 +01:00
@node Setup
@chapter Setup
2012-02-23 14:57:38 +01:00
@cindex setup, installation
2012-02-23 14:57:38 +01:00
Because the tools and data will always change rapidly, you will almost
certainly want to work from a git clone of the tools, which are designed to
work in this way, with all associated data in a pre-defined directory
structure below the main one. To get started:
2012-02-23 14:57:38 +01:00
@example
git clone git://gitorious.org/f-droid/fdroidserver.git
cd fdroidserver
@end example
2012-02-23 14:57:38 +01:00
You will now be in the root directory of the tools. All the tasks associated
with managing the repository and data are done from here.
2012-02-23 14:57:38 +01:00
Regardless of the intended usage of the tools, you will always need to set
up some basic configuration details. This is done by creating a file called
@code{config.py} which you should do by copying from @code{config.sample.py}
and then editing according to the instructions within.
2012-02-23 14:57:38 +01:00
@node Simple Binary Repository
@chapter Simple Binary Repository
2012-02-23 14:57:38 +01:00
@cindex binary
2012-02-23 14:57:38 +01:00
If you want to maintain a simple repository hosting only binary APKs obtained
and compiled elsewhere, the process is quite simple:
2012-02-23 14:57:38 +01:00
@enumerate
@item
2012-02-23 14:57:38 +01:00
Make a repo directory and put APK files in it.
@item
2012-02-23 14:57:38 +01:00
Run @code{update.py}.
@item
2012-02-23 14:57:38 +01:00
If it reports that any metadata files are missing, you can create them
in the @code{metadata} directory and run it again.
@item
To ease creation of metadata files, run @code{update.py} with the @code{-c}
option. It will create 'skeleton' metadata files that are missing, and you can
then just edit them and fill in the details.
@item
Then, if you've changed things, run @code{update.py} again.
@item
Running @code{update.py} adds an Icons directory into the repo directory, and
also creates the repository index (index.xml, and also index.jar if you've
configured the system to use a signed index).
@end enumerate
Following the above process will result in a @code{repo} directory, which you
simply need to push to any HTTP (or preferably HTTPS) server to make it
accessible.
2012-02-23 14:57:38 +01:00
While some information about the applications (and versions thereof) is
retrieved directly from the APK files, most comes from the corresponding file
in the @code{metadata} directory. The metadata file covering ALL versions of a
particular application is named @code{package.id.txt} where package.id is the
unique identifier for that package.
See the Metadata chapter for details of what goes in the metadata file. All
fields are relevant for binary APKs, EXCEPT for 'Build Version' entries, which
should be omitted.
@node Building Applications
@chapter Building Applications
Instead of (or as well as) including binary APKs from external sources in a
repository, you can build them directly from the source code.
Using this method, it is is possible to verify that the application builds
correctly, corresponds to the source code, and contains only free software.
Unforunately, in the Android world, it seems to be very common for an
application supplied as a binary APK to present itself as Free Software
when in fact some or all of the following are true:
@enumerate
@item
2012-02-23 14:57:38 +01:00
The source code (either for a particular version, or even all versions!) is
unavailable or incomplete.
@item
The source code is not capable of producing the actual binary supplied.
@item
The 'source code' contains binary files of unknown origin, or with proprietary
licenses.
@end enumerate
2012-02-23 14:57:38 +01:00
For this reason, source-built applications are the preferred method for the
main F-Droid repository, although occasionally for technical or historical
reasons, exceptions are made to this policy.
When building applications from source, it should be noted that you will be
signing them (all APK files must be signed to be installable on Android) with
your own key. When an application is already installed on a device, it is not
possible to upgrade it in place to a new version signed with a different key
without first uninstalling the original. This may present an inconvenience to
users, as the process of uninstalling loses any data associated with the
previous installation.
2012-02-23 14:57:38 +01:00
The process for managing a repository for built-from-source applications is
very similar to that described in the Simple Binary Repository chapter,
except now you need to:
@enumerate
@item
Include Build Version entries in the metadata files.
@item
Run build.py to build any applications that are not already built.
@item
Run publish.py to finalise packaging and sign any APKs that have been built.
@end enumerate
2012-02-23 14:57:38 +01:00
@node Metadata
@chapter Metadata
@cindex metadata
Information used by update.py to compile the public index comes from two
sources, 1) the APK files in the repo directory, and 2) the metadata files
in the metadata directory.
The metadata files are simple, easy to edit text files, always named as the
2012-02-23 11:43:02 +01:00
application's package ID with '.txt' appended. The following sections describe
2012-02-23 14:57:38 +01:00
the fields recognised within the file.
2012-02-23 11:43:02 +01:00
@menu
* License::
* Name::
* Web Site::
* Source Code::
* Issue Tracker::
* Donate::
* Summary::
* Description::
* Repo Type::
* Repo::
* Build Version::
* Use Built::
* AntiFeatures::
* Disabled::
* Requires Root::
@end menu
2012-02-23 11:43:02 +01:00
@node License
@section License
@cindex license
The license for the application.
Common values:
@itemize @bullet
@item
@samp{GPLv2}
@item
@samp{GPLv2+}
@item
@samp{GPLv3}
@item
@samp{Apache2}
@item
@samp{MIT}
@item
@samp{BSD}
@end itemize
2012-02-23 11:43:02 +01:00
@node Name
@section Name
@cindex Name
The name of the application. Normally, this field should not be present since the
application's correct name is retrieved from the APK file. However, in a situation
where an APK contains a bad or missing application name, it can be overridden
using this.
2012-02-23 11:43:02 +01:00
@node Web Site
@section Web Site
@cindex Web Site
The URL for the application's web site.
2012-02-23 11:43:02 +01:00
@node Source Code
@section Source Code
@cindex Source Code
The URL to view or obtain the application's source code. This should be
something human-friendly. Machine-readable source-code is covered in the
'Repo' field.
2012-02-23 11:43:02 +01:00
@node Issue Tracker
@section Issue Tracker
@cindex Issue Tracker
The URL for the application's issue tracker. Optional, since not all
applications have one.
2012-02-23 11:43:02 +01:00
@node Donate
@section Donate
@cindex Donate
The URL to donate to the project. This could be the project's donate page
if it has one, or perhaps even a direct PayPal link.
2012-02-23 11:43:02 +01:00
@node Summary
@section Summary
@cindex Summary
A brief summary of what the application is.
2012-02-23 11:43:02 +01:00
@node Description
@section Description
@cindex Description
A full description of the application. This can span multiple lines, and is
terminated by a line containing a single '.'.
2012-02-23 11:43:02 +01:00
@node Repo Type
@section Repo Type
@cindex Repo Type
The type of repository - for automatic building from source. If this is not
specified, automatic building is disabled for this application. Possible
values are:
@itemize @bullet
@item
@samp{git}
@item
@samp{svn}
@item
@samp{hg}
@item
@samp{bzr}
@end itemize
2012-02-23 11:43:02 +01:00
@node Repo
@section Repo
@cindex Repo
The repository location. Usually a git: or svn: URL.
For a Subversion repo that requires authentication, you can precede the repo
URL with username:password@ and those parameters will be passed as @option{--username}
and @option{--password} to the SVN checkout command.
2012-02-23 11:43:02 +01:00
@node Build Version
@section Build Version
@cindex Build Version
Any number of these fields can be present, each specifying a version to
automatically build from source. The value is a comma-separated list.
For example:
@samp{Build Version:0.12,3,651696a49be2cd7db5ce6a2fa8185e31f9a20035}
The above specifies to build version 0.12, which has a version code of 3.
The third parameter specifies the tag, commit or revision number from
which to build it in the source repository.
If the commit version starts with a !, that version is not built. Instead,
everything after the ! is used as a reason why it can't be built. The
purpose of this feature is to allow non-buildable releases (e.g. the source
is not published) to be flagged, so the scripts don't generate repeated
messages about them. (And also to record the information for review later).
In addition to the three, always required, parameters described above,
further parameters can be added (in name=value format) to apply further
configuration to the build. These are:
@table @code
@item subdir=<path>
Specifies to build from a subdirectory of the checked out source code.
Normally this directory is changed to before building, but there is a
special case for SVN repositories where the URL is specified with a *
at the end. See the documentation for the Repo field for more
information.
@item bindir=<path>
Normally the build output (apk) is expected to be in the bin
subdirectory below the ant build files. If the project is configured
to put it elsewhere, that can be specified here, relative to the base
of the checked out repo.
@item oldsdkloc=yes
The sdk location in the repo is in an old format, or the build.xml is
expecting such. The 'new' format is sdk.dir while the VERY OLD format
is sdk-location. Typically, if you get a message along the lines of:
"com.android.ant.SetupTask cannot be found" when trying to build, then
try enabling this option.
@item target=<target>
Specifies a particular SDK target, when the source doesn't. This is
likely to cause the whole build.xml to be rewritten, which is fine if
it's a 'standard' android file or doesn't already exist, but not a
good idea if it's heavily customised.
@item rm=<relpath>
Specifies the relative path of file to delete before the build is
done. The path is relative to the base of the build directory - i.e.
the directory that contains AndroidManifest.xml.
@item antcommand=xxx
Specify an alternate ant command (target) instead of the default
'release'.
@item forceversion=yes
If specified, the package version in AndroidManifest.xml is replaced
with the version number for the build as specified in recipe. Useful
for cases when upstream repo missed to update it for specific tag,
or to build an arbitrary revision.
@item forcevercode=yes
If specified, the package vercode in the AndroidManifest.xml is replaced
with the version code for the build. See also forceversion.
@item update=no
By default, 'android update project' is used to generate or update the
build.xml file. Specifying update=no bypasses that.
@item initfun=yes
Enables a selection of mad hacks to make com.funambol.android build.
Probably not useful for any other application.
@item buildjni=yes
Enables building of native code via the ndk-build script before doing
the main ant build.
@item submodules=yes
Use if the project (git only) has submodules - causes git submodule
init and update to be executed after the source is cloned.
@item encoding=xxxx
Adds a java.encoding property to local.properties with the given
value. Generally the value will be 'utf-8'. This is picked up by the
SDK's ant rules, and forces the Java compiler to interpret source
files with this encoding. If you receive warnings during the compile
about character encodings, you probably need this.
@item prebuild=xxxx
Specifies a shell command (or commands - chain with &&) to run before
the build takes place. Backslash can be used as an escape character to
insert literal commas, or as the last character on a line to join that
line with the next. It has no special meaning in other contexts; in
particular, literal backslashes should not be escaped.
@item novcheck=yes
Don't check that the version name and code in the resulting apk are
correct by looking at the build output - assume the metadata is
correct. This takes away a useful level of sanity checking, and should
only be used if the values can't be extracted.
@item fixtrans=yes
Modifies any instances of string resources that use multiple
formatting arguments, but don't use positional notation. For example,
"Hello %s, %d" becomes "Hello %1$s, %2$d". Newer versions of the
Android platform tools enforce this sensible standard. If you get
error messages relating to that, you need to enable this.
@item fixapos=yes
Like fixtrans, but deals with an even older issue relating to
'unescaped apostrophes' in translation strings.
@item maven=yes
Build with maven instead of ant
2011-08-07 13:30:48 +02:00
@item patch=x
Apply patch(es). 'x' names one (or more - comma-seperated)
files within a directory below the metadata, with the same
name as the metadata file but without the extension. Each of
these patches is applied to the code in turn.
@end table
Another example, using extra parameters:
@samp{Build Version:1.09.03,10903,45,subdir=Timeriffic,oldsdkloc=yes}
2012-02-23 11:43:02 +01:00
@node Use Built
@section Use Built
@cindex Use Built
Set this to "Yes" to use built versions of the application for the repository.
Currently, this just triggers update.py to copy the relevant apks and tarballs
from the 'built' directory before updating the repo index.
2012-02-23 11:43:02 +01:00
@node AntiFeatures
@section AntiFeatures
@cindex AntiFeatures
This is optional - if present, it contains a comma-separated list of any of
the following values, describing an AntiFeature the application has:
@itemize @bullet
@item
@samp{Ads} - the application contains advertising
@item
@samp{Tracking} - the application tracks and reports your activity to somewhere
@item
@samp{NonFreeNet} - the application promotes a non-Free network service
@item
@samp{NonFreeAdd} - the application promotes non-Free add-ons
@end itemize
2012-02-23 11:43:02 +01:00
@node Disabled
@section Disabled
@cindex Disabled
If this field is present, the application does not get put into the public
index. This allows metadata to be retained while an application is temporarily
disabled from being published. The value should be a description of why the
application is disabled.
2012-02-23 11:43:02 +01:00
@node Requires Root
@section Requires Root
@cindex Requires Root
Set this optional field to "Yes" if the application requires root
privileges to be usable. This lets the client filter it out if the
user so desires.
2012-02-23 11:43:02 +01:00
@node GNU Free Documentation License
@appendix GNU Free Documentation License
@include fdl.texi
@node Index
@unnumbered Index
@printindex cp
@bye