chiark / gitweb /
Docs '@' fix
[fdroidserver.git] / docs / fdroid.texi
1 \input texinfo   @c -*-texinfo-*-
2 @c %**start of header
3 @setfilename fdroid.info
4 @documentencoding UTF-8
5 @settitle F-Droid Server Manual
6 @c %**end of header
7
8 @copying
9 This manual is for the F-Droid repository server tools.
10
11 Copyright @copyright{} 2010, 2011, 2012, 2013 Ciaran Gultnieks
12
13 Copyright @copyright{} 2011 Henrik Tunedal, Michael Haas, John Sullivan
14
15 Copyright @copyright{} 2013 David Black
16
17 Copyright @copyright{} 2013, 2014 Daniel Martí
18
19 @quotation
20 Permission is granted to copy, distribute and/or modify this document
21 under the terms of the GNU Free Documentation License, Version 1.3
22 or any later version published by the Free Software Foundation;
23 with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
24 A copy of the license is included in the section entitled "GNU
25 Free Documentation License".
26 @end quotation
27 @end copying
28
29 @titlepage
30 @title F-Droid Server Manual
31 @author Ciaran Gultnieks and the F-Droid project
32 @page
33 @vskip 0pt plus 1filll
34 @insertcopying
35
36 @end titlepage
37
38 @contents
39
40 @ifnottex
41 @node Top
42 @top F-Droid Server
43
44 @insertcopying
45 @end ifnottex
46
47 @menu
48 * Overview::
49 * System Requirements::
50 * Setup::
51 * Simple Binary Repository::
52 * Building Applications::
53 * Importing Applications::
54 * Metadata::
55 * Update Processing::
56 * Build Server::
57 * Signing::
58 * GNU Free Documentation License::
59 * Index::
60 @end menu
61
62 @node Overview
63 @chapter Overview
64
65 The F-Droid server tools provide various scripts and tools that are used
66 to maintain the main F-Droid application repository. You can use these same
67 tools to create your own additional or alternative repository for publishing,
68 or to assist in creating, testing and submitting metadata to the main
69 repository.
70
71
72 @node System Requirements
73 @chapter System Requirements
74
75 @cindex installation
76
77 The system requirements for using the tools will vary depending on your
78 intended usage. At the very least, you'll need:
79
80 @itemize @bullet
81 @item
82 GNU/Linux
83 @item
84 Python 2.x
85 @item
86 The Android SDK Tools and Build-tools.
87 Note that F-Droid does not assume that you have the Android SDK in your
88 @code{PATH}: these directories will be specified in your repository
89 configuration. Recent revisions of the SDK have @code{aapt} located in
90 android-sdk/build-tools/ and it may be necessary to make a symlink to it in
91 android-sdk/platform-tools/
92 @end itemize
93
94 If you intend to build applications from source you'll also need most, if not
95 all, of the following:
96
97 @itemize @bullet
98 @item
99 JDK (Debian package openjdk-6-jdk): openjdk-6 is recommended though openjdk-7
100 should work too
101 @item
102 VCS clients: svn, git, git-svn, hg, bzr
103 @item
104 A keystore for holding release keys. (Safe, secure and well backed up!)
105 @end itemize
106
107 If you intend to use the 'Build Server' system, for secure and clean builds
108 (highly recommended), you will also need:
109
110 @itemize @bullet
111 @item
112 VirtualBox (debian package virtualbox)
113 @item
114 Ruby (debian packages ruby and rubygems)
115 @item
116 Vagrant (unpackaged) Be sure to use 1.3.x because 1.4.x is completely broken
117 (at the time of writing, the forthcoming 1.4.3 might work)
118 @item
119 Paramiko (debian package python-paramiko)
120 @item
121 Imaging (debian package python-imaging)
122 @item
123 Magic (debian package python-magic)
124 @end itemize
125
126 On the other hand, if you want to build the apps directly on your system
127 without the 'Build Server' system, you may need:
128
129 @itemize @bullet
130 @item
131 All SDK platforms requested by the apps you want to build
132 (The Android SDK is made available by Google under a proprietary license but
133 within that, the SDK platforms, support library and some other components are
134 under the Apache license and source code is provided.
135 Google APIs, used for building apps using Google Maps, are free to the extent
136 that the library comes pre-installed on the device.
137 Google Play Services, Google Admob and others are proprietary and shouldn't be
138 included in the main F-Droid repository.)
139 @item
140 A version of the Android NDK
141 @item
142 Ant with Contrib Tasks (Debian packages ant and ant-contrib)
143 @item
144 Maven (Debian package maven)
145 @item
146 JavaCC (Debian package javacc)
147 @item
148 Miscellaneous packages listed in
149 buildserver/cookbooks/fdroidbuild-general/recipes/default.rb
150 of the F-Droid server repository
151 @end itemize
152
153 @node Setup
154 @chapter Setup
155
156 @cindex setup, installation
157
158 Because the tools and data will always change rapidly, you will almost
159 certainly want to work from a git clone of the tools at this stage. To
160 get started:
161
162 @example
163 git clone git://gitorious.org/f-droid/fdroidserver.git
164 @end example
165
166 You now have lots of stuff in the fdroidserver directory, but the most
167 important is the 'fdroid' command script which you run to perform all tasks.
168 This script is always run from a repository data directory, so the
169 most sensible thing to do next is to put your new fdroidserver directory
170 in your @code{PATH}.
171
172 @section Data
173
174 To do anything, you'll need at least one repository data directory. It's
175 from this directory that you run the @code{fdroid} command to perform all
176 repository management tasks. You can either create a brand new one, or
177 grab a copy of the data used by the main F-Droid repository:
178
179 @example
180 git clone git://gitorious.org/f-droid/fdroiddata.git
181 @end example
182
183 Regardless of the intended usage of the tools, you will always need to set
184 up some basic configuration details. This is done by creating a file called
185 @code{config.py} in the data directory. You should do this by copying the
186 example file (@code{config.sample.py}) from the fdroidserver project to your
187 data directory and then editing according to the instructions within.
188
189 Once configured in this way, all the functionality of the tools is accessed
190 by running the @code{fdroid} command. Run it on its own to get a list of the
191 available sub-commands.
192
193 You can follow any command with @code{--help} to get a list of additional
194 options available for that command.
195
196 @example
197 fdroid update --help
198 @end example
199
200
201 @node Simple Binary Repository
202 @chapter Simple Binary Repository
203
204 @cindex binary
205
206 If you want to maintain a simple repository hosting only binary APKs obtained
207 and compiled elsewhere, the process is quite simple:
208
209 @enumerate
210 @item
211 Set up the server tools, as described in Setup.
212 @item
213 Make a directory for your repository. This is the directory from which you
214 will do all the work with your repository. Create a config file there, called
215 @code{config.py}, by copying the @code{config.sample.py} from the server
216 project and editing it.
217 @item
218 Within that, make a directory called @code{repo} and put APK files in it.
219 @item
220 Run @code{fdroid update}.
221 @item
222 If it reports that any metadata files are missing, you can create them
223 in the @code{metadata} directory and run it again.
224 @item
225 To ease creation of metadata files, run @code{fdroid update} with the @code{-c}
226 option. It will create 'skeleton' metadata files that are missing, and you can
227 then just edit them and fill in the details.
228 @item
229 Then, if you've changed things, run @code{fdroid update} again.
230 @item
231 Running @code{fdroid update} adds an Icons directory into the repo directory,
232 and also creates the repository index (index.xml, and also index.jar if you've
233 configured the system to use a signed index).
234 @item
235 Publish the resulting contents of the @code{repo} directory to your web server.
236 @end enumerate
237
238 Following the above process will result in a @code{repo} directory, which you
239 simply need to push to any HTTP (or preferably HTTPS) server to make it
240 accessible.
241
242 While some information about the applications (and versions thereof) is
243 retrieved directly from the APK files, most comes from the corresponding file
244 in the @code{metadata} directory. The metadata file covering ALL versions of a
245 particular application is named @code{package.id.txt} where package.id is the
246 unique identifier for that package.
247
248 See the Metadata chapter for details of what goes in the metadata file. All
249 fields are relevant for binary APKs, EXCEPT for 'Build Version' entries, which
250 should be omitted.
251
252
253 @node Building Applications
254 @chapter Building Applications
255
256 Instead of (or as well as) including binary APKs from external sources in a
257 repository, you can build them directly from the source code.
258
259 Using this method, it is is possible to verify that the application builds
260 correctly, corresponds to the source code, and contains only free software.
261 Unforunately, in the Android world, it seems to be very common for an
262 application supplied as a binary APK to present itself as Free Software
263 when in fact some or all of the following are true:
264
265 @enumerate
266 @item
267 The source code (either for a particular version, or even all versions!) is
268 unavailable or incomplete.
269 @item
270 The source code is not capable of producing the actual binary supplied.
271 @item
272 The 'source code' contains binary files of unknown origin, or with proprietary
273 licenses.
274 @end enumerate
275
276 For this reason, source-built applications are the preferred method for the
277 main F-Droid repository, although occasionally for technical or historical
278 reasons, exceptions are made to this policy.
279
280 When building applications from source, it should be noted that you will be
281 signing them (all APK files must be signed to be installable on Android) with
282 your own key. When an application is already installed on a device, it is not
283 possible to upgrade it in place to a new version signed with a different key
284 without first uninstalling the original. This may present an inconvenience to
285 users, as the process of uninstalling loses any data associated with the
286 previous installation.
287
288 The process for managing a repository for built-from-source applications is
289 very similar to that described in the Simple Binary Repository chapter,
290 except now you need to:
291
292 @enumerate
293 @item
294 Include Build Version entries in the metadata files.
295 @item
296 Run @code{fdroid build} to build any applications that are not already built.
297 @item
298 Run @code{fdroid publish} to finalise packaging and sign any APKs that have
299 been built.
300 @end enumerate
301
302
303 @section More about "fdroid build"
304
305 When run without any parameters, @code{fdroid build} will build any and all
306 versions of applications that you don't already have in the @code{repo}
307 directory (or more accurately, the @code{unsigned} directory). There are various
308 other things you can do. As with all the tools, the @code{--help} option is
309 your friend, but a few annotated examples and discussion of the more common
310 usage modes follows:
311
312 To build a single version of a single application, you could run the
313 following:
314
315 @example
316 ./fdroid build org.fdroid.fdroid:16
317 @end example
318
319 This attempts to build version code 16 (which is version 0.25) of the F-Droid
320 client. Many of the tools recognise arguments as packages, allowing their
321 activity to be limited to just a limited set of packages.
322
323 If the build above was successful, two files will have been placed in the
324 @code{unsigned} directory:
325
326 @example
327 org.fdroid.fdroid_16.apk
328 org.fdroid.fdroid_16_src.tar.gz
329 @end example
330
331 The first is the (unsigned) APK. You could sign this with a debug key and push
332 it direct to your device or an emulator for testing. The second is a source
333 tarball containing exactly the source that was used to generate the binary.
334
335 If you were intending to publish these files, you could then run:
336
337 @example
338 ./fdroid publish
339 @end example
340
341 The source tarball would move to the @code{repo} directory (which is the
342 directory you would push to your web server). A signed and zip-aligned version
343 of the APK would also appear there, and both files would be removed from the
344 @code{unsigned} directory.
345
346 If you're building purely for the purposes of testing, and not intending to
347 push the results to a repository, at least yet, the @code{--test} option can be
348 used to direct output to the @code{tmp} directory instead of @code{unsigned}.
349 A similar effect could by achieved by simply deleting the output files from
350 @code{unsigned} after the build, but with the risk of forgetting to do so!
351
352 Along similar lines (and only in conjunction with @code{--test}, you can use
353 @code{--force} to force a build of a Disabled application, where normally it
354 would be completely ignored. Similarly a version that was found to contain
355 ELFs or known non-free libraries can be forced to build. See also —
356 scanignore= and scandelete= in the Build Version section.
357
358 If the build was unsuccessful, you can find out why by looking at the output
359 in the logs/ directory. If that isn't illuminating, try building the app the
360 regular way, step by step: android update project, ndk-build, ant debug.
361
362 Note that source code repositories often contain prebuilt libraries. If the
363 app is being considered for the main F-Droid repository, it is important that
364 all such prebuilts are built either via the metadata or by a reputable third
365 party.
366
367
368 @section Direct Installation
369
370 You can also build and install directly to a connected device or emulator
371 using the @code{fdroid install} command. If you do this without passing
372 packages as arguments then all the latest built and signed version available
373 of each package will be installed . In most cases, this will not be what you
374 want to do, so execution will stop straight away. However, you can override
375 this if you're sure that's what you want, by using @code{--all}.  Note that
376 currently, no sanity checks are performed with this mode, so if the files in
377 the signed output directory were modified, you won't be notified.
378
379
380 @node Importing Applications
381 @chapter Importing Applications
382
383 To help with starting work on including a new application, @code{fdroid import}
384 will take a URL and optionally some other parameters, and attempt to construct
385 as much information as possible by analysing the source code. Basic usage is:
386
387 @example
388 ./fdroid import --url=http://address.of.project
389 @end example
390
391 For this to work, the URL must point to a project format that the script
392 understands. Currently this is limited to one of the following:
393
394 @enumerate
395 @item
396 Gitorious - @code{https://gitorious.org/PROJECTNAME/REPONAME}
397 @item
398 Github - @code{https://github.com/USER/PROJECT}
399 @item
400 Google Code - @code{http://code.google.com/p/PROJECT/}
401 Supports git, svn and hg repos.
402
403 Some Google Code projects have multiple repositories, identified by a
404 dropdown list on the @code{source/checkout} page. To access one other than
405 the default, specify its name using the @code{--repo} switch.
406 @item
407 Bitbucket - @code{https://bitbucket.org/USER/PROJECT/}
408 @item
409 Git - @code{git://REPO}
410 @end enumerate
411
412 Depending on the project type, more or less information may be gathered. For
413 example, the license will be retrieved from a Google Code project, but not a
414 GitHub one. A bare repo url, such as the git:// one, is the least preferable
415 optional of all, since you will have to enter much more information manually.
416
417 If the import is successful, a metadata file will be created. You will need to
418 edit this further to check the information, and fill in the blanks.
419
420 If it fails, you'll be told why. If it got as far as retrieving the source
421 code, you can inspect it further by looking in @code{tmp/importer} where a full
422 checkout will exist.
423
424 A frequent cause of initial failure is that the project directory is actually
425 a subdirectory in the repository. In this case, run the importer again using
426 the @code{--subdir} option to tell it where. It will not attempt to determine
427 this automatically, since there may be several options.
428
429
430 @node Metadata
431 @chapter Metadata
432
433 @cindex metadata
434
435 Information used by update.py to compile the public index comes from two
436 sources:
437
438 @enumerate
439 @item
440 the APK files in the repo directory, and
441 @item
442 the metadata files in the metadata directory.
443 @end enumerate
444
445 The metadata files are simple, easy to edit text files, always named as the
446 application's package ID with '.txt' appended.
447
448 Note that although the metadata files are designed to be easily read and
449 writable by humans, they are also processed and written by various scripts.
450 They are capable of rewriting the entire file when necessary. Even so,
451 the structure and comments will be preserved correctly, although the order
452 of fields will be standardised. (In the event that the original file was
453 in a different order, comments are considered as being attached to the field
454 following them). In fact, you can standardise all the metadata in a single
455 command, without changing the functional content, by running:
456
457 @example
458 fdroid rewritemetadata
459 @end example
460
461 The following sections describe the fields recognised within the file.
462
463 @menu
464 * Categories::
465 * License::
466 * Auto Name::
467 * Name::
468 * Provides::
469 * Web Site::
470 * Source Code::
471 * Issue Tracker::
472 * Donate::
473 * FlattrID::
474 * Bitcoin::
475 * Litecoin::
476 * Summary::
477 * Description::
478 * Maintainer Notes::
479 * Repo Type::
480 * Repo::
481 * Build Version::
482 * AntiFeatures::
483 * Disabled::
484 * Requires Root::
485 * Archive Policy::
486 * Update Check Mode::
487 * Vercode Operation::
488 * Update Check Data::
489 * Auto Update Mode::
490 * Current Version::
491 * Current Version Code::
492 * No Source Since::
493 @end menu
494
495 @node Categories
496 @section Categories
497
498 Any number of categories for the application to be placed in. There is no
499 fixed list of categories - both the client and the web site will automatically
500 show any categories that exist in any applications. However, if your metadata
501 is intended for the main F-Droid repository, you should use one of the
502 existing categories (look at the site/client), or discuss the proposal to add
503 a new one.
504
505 Categories must be separated by a single comma character, ','. For backwards
506 compatibility, F-Droid will use the first category given as <category> element
507 for older clients to at least see one category.
508
509 This is converted to (@code{<categories>}) in the public index file.
510
511 @node License
512 @section License
513
514 @cindex license
515
516 The overall license for the application, or in certain cases, for the
517 source code only.
518
519 Common values:
520
521 @itemize @bullet
522
523 @item
524 @samp{GPLv2}
525 GNU GPL version 2
526
527 @item
528 @samp{GPLv2+}
529 GNU GPL version 2 or later
530
531 @item
532 @samp{GPLv3}
533 GNU GPL version 3
534
535 @item
536 @samp{GPLv3+}
537 GNU GPL version 3 or later
538
539 @item
540 @samp{GPL}
541 An unspecified GPL version. Use this only as a last resort or if there is
542 some confusion over compatiblity of component licenses: particularly the use of
543 Apache libraries with GPLv2 source code.
544
545 @item
546 @samp{AGPL}
547 Afferro GPL version 3.
548
549 @item
550 @samp{Apache2}
551 Apache 2
552
553 @item
554 @samp{MIT}
555 MIT X11 license
556
557 @item
558 @samp{BSD}
559 BSD license - the original '4-clause' version.
560
561 @item
562 @samp{NewBSD}
563 BSD license - the new, or modified, version.
564
565 @end itemize
566
567 This is converted to (@code{<license>}) in the public index file.
568
569 @node Auto Name
570 @section Auto Name
571
572 @cindex Auto Name
573
574 The name of the application as can best be retrieved from the source code.
575 This is done so that the commitupdates script can put a familiar name in the
576 description of commits created when a new update of the application is
577 found. The Auto Name entry is generated automatically when @code{fdroid
578 checkupdates} is run.
579
580 @node Name
581 @section Name
582
583 @cindex Name
584
585 The name of the application. Normally, this field should not be present since
586 the application's correct name is retrieved from the APK file. However, in a
587 situation where an APK contains a bad or missing application name, it can be
588 overridden using this. Note that this only overrides the name in the list of
589 apps presented in the client; it doesn't changed the name or application label
590 in the source code.
591
592 @node Provides
593 @section Provides
594
595 @cindex Provides
596
597 Comma-separated list of application IDs that this app provides. In other
598 words, if the user has any of these apps installed, F-Droid will show this app
599 as installed instead. It will also appear if the user clicks on urls linking
600 to the other app IDs. Useful when an app switches package name, or when you
601 want an app to act as multiple apps.
602
603 @node Web Site
604 @section Web Site
605
606 @cindex Web Site
607
608 The URL for the application's web site. If there is no relevant web site, this
609 can be omitted (or left blank).
610
611 This is converted to (@code{<web>}) in the public index file.
612
613 @node Source Code
614 @section Source Code
615
616 @cindex Source Code
617
618 The URL to view or obtain the application's source code. This should be
619 something human-friendly. Machine-readable source-code is covered in the
620 'Repo' field.
621
622 This is converted to (@code{<source>}) in the public index file.
623
624 @node Issue Tracker
625 @section Issue Tracker
626
627 @cindex Issue Tracker
628
629 The URL for the application's issue tracker. Optional, since not all
630 applications have one.
631
632 This is converted to (@code{<tracker>}) in the public index file.
633
634 @node Donate
635 @section Donate
636
637 @cindex Donate
638
639 The URL to donate to the project. This should be the project's donate page
640 if it has one.
641
642 It is possible to use a direct PayPal link here, if that is all that is
643 available. However, bear in mind that the developer may not be aware of
644 that direct link, and if they later changed to a different PayPal account,
645 or the PayPal link format changed, things could go wrong. It is always
646 best to use a link that the developer explicitly makes public, rather than
647 something that is auto-generated 'button code'.
648
649 This is converted to (@code{<donate>}) in the public index file.
650
651 @node FlattrID
652 @section FlattrID
653
654 @cindex FlattrID
655
656 The project's Flattr (http://flattr.com) ID, if it has one. This should be
657 a numeric ID, such that (for example) https://flattr.com/thing/xxxx leads
658 directly to the page to donate to the project.
659
660 This is converted to (@code{<flattr>}) in the public index file.
661
662 @node Bitcoin
663 @section Bitcoin
664
665 @cindex Bitcoin
666
667 A bitcoin address for donating to the project.
668
669 This is converted to (@code{<bitcoin>}) in the public index file.
670
671 @node Litecoin
672 @section Litecoin
673
674 @cindex Litecoin
675
676 A litecoin address for donating to the project.
677
678 @node Summary
679 @section Summary
680
681 @cindex Summary
682
683 A brief summary of what the application is. Since the summary is only allowed
684 one line on the list of the F-Droid client, keeping it to within 32 characters
685 will ensure it fits even on the smallest screens.
686
687 @node Description
688 @section Description
689
690 @cindex Description
691
692 A full description of the application, relevant to the latest version.
693 This can span multiple lines (which should be kept to a maximum of 80
694 characters), and is terminated by a line containing a single '.'.
695
696 Basic MediaWiki-style formatting can be used. Leaving a blank line starts a
697 new paragraph. Surrounding text with @code{''} make it italic, and with
698 @code{'''} makes it bold.
699
700 You can link to another app in the repo by using @code{[[app.id]]}. The link
701 will be made appropriately whether in the Android client, the web repo
702 browser or the wiki. The link text will be the apps name.
703
704 Links to web addresses can be done using @code{[http://example.com Text]}.
705
706 For both of the above link formats, the entire link (from opening to closing
707 square bracket) must be on the same line.
708
709 Bulletted lists are done by simply starting each item with a @code{*} on
710 a new line, and numbered lists are the same but using @code{#}. There is
711 currently no support for nesting lists - you can have one level only.
712
713 It can be helpful to note information pertaining to updating from an
714 earlier version; whether the app contains any prebuilts built by the
715 upstream developers or whether non-free elements were removed; whether the
716 app is in rapid development or whether the latest version lags behind the
717 current version; whether the app supports multiple architectures or whether
718 there is a maximum SDK specified (such info not being recorded in the index).
719
720 This is converted to (@code{<desc>}) in the public index file.
721
722 @node Maintainer Notes
723 @section Maintainer Notes
724
725 @cindex Maintainer Notes
726
727 This is a multi-line field using the same rules and syntax as the description.
728 It's used to record notes for F-Droid maintainers to assist in maintaining and
729 updating the application in the repository.
730
731 This information is also published to the wiki.
732
733 @node Repo Type
734 @section Repo Type
735
736 @cindex Repo Type
737
738 The type of repository - for automatic building from source. If this is not
739 specified, automatic building is disabled for this application. Possible
740 values are:
741
742 @itemize @bullet
743 @item
744 @samp{git}
745 @item
746 @samp{svn}
747 @item
748 @samp{git-svn}
749 @item
750 @samp{hg}
751 @item
752 @samp{bzr}
753 @item
754 @samp{srclib}
755 @end itemize
756 @node Repo
757 @section Repo
758
759 @cindex Repo
760
761 The repository location. Usually a git: or svn: URL, for example.
762
763 The git-svn option connects to an SVN repository, and you specify the URL in
764 exactly the same way, but git is used as a back-end. This is preferable for
765 performance reasons, and also because a local copy of the entire history is
766 available in case the upstream repository disappears. (It happens!). In
767 order to use Tags as update check mode for this VCS type, the URL must have
768 the tags= special argument set. Likewise, if you intend to use the
769 RepoManifest/branch scheme, you would want to specify branches= as well.
770 Finally, trunk= can also be added. All these special arguments will be passed
771 to "git svn" in order, and their values must be relative paths to the svn repo
772 root dir.
773 Here's an example of a complex git-svn Repo URL:
774 http://svn.code.sf.net/p/project/code/svn;trunk=trunk;tags=tags;branches=branches
775
776 For a Subversion repo that requires authentication, you can precede the repo
777 URL with username:password@ and those parameters will be passed as @option{--username}
778 and @option{--password} to the SVN checkout command. (This now works for both
779 svn and git-svn)
780
781 If the Repo Type is @code{srclib}, then you must specify the name of the
782 according srclib .txt file. For example if @code{scrlibs/FooBar.txt} exist
783 and you want to use this srclib, then you have to set Repo to
784 @code{FooBar}.
785
786 @node Build Version
787 @section Build Version
788
789 @cindex Build Version
790
791 Any number of these fields can be present, each specifying a version to
792 automatically build from source. The value is a comma-separated list.
793 For example:
794
795 @samp{Build Version:0.12,3,651696a49be2cd7db5ce6a2fa8185e31f9a20035}
796
797 The above specifies to build version 0.12, which has a version code of 3.
798 The third parameter specifies the tag, commit or revision number from
799 which to build it in the source repository.
800
801 In addition to the three, always required, parameters described above,
802 further parameters can be added (in name=value format) to apply further
803 configuration to the build. These are (roughly in order of application):
804
805 @table @code
806
807 @item disable=<message>
808 Disables this build, giving a reason why. (For backwards compatibility, this
809 can also be achieved by starting the commit ID with '!')
810
811 The purpose of this feature is to allow non-buildable releases (e.g. the source
812 is not published) to be flagged, so the scripts don't generate repeated
813 messages about them. (And also to record the information for review later).
814 If an apk has already been built, disabling causes it to be deleted once
815 @code{fdroid update} is run; this is the procedure if ever a version has to
816 be replaced.
817
818 @item subdir=<path>
819 Specifies to build from a subdirectory of the checked out source code.
820 Normally this directory is changed to before building,
821
822 @item submodules=yes
823 Use if the project (git only) has submodules - causes @code{git submodule
824 update --init --recursive} to be executed after the source is cloned.
825 Submodules are reset and cleaned like the main app repository itself before
826 each build.
827
828 @item init=xxxx
829 As for 'prebuild', but runs on the source code BEFORE any other processing
830 takes place.
831
832 You can use $$SDK$$, $$NDK$$ and $$MVN3$$ to substitute the paths to the
833 android SDK and NDK directories, and maven 3 executable respectively.
834
835 @item oldsdkloc=yes
836 The sdk location in the repo is in an old format, or the build.xml is
837 expecting such. The 'new' format is sdk.dir while the VERY OLD format
838 is sdk-location. Typically, if you get a message along the lines of:
839 "com.android.ant.SetupTask cannot be found" when trying to build, then
840 try enabling this option.
841
842 @item target=<target>
843 Specifies a particular SDK target for compilation, overriding the value
844 defined in the code by upstream.  This has different effects depending on what
845 build system used — this flag currently affects ant, maven and gradle projects
846 only. Note that this does not change the target SDK in the
847 AndroidManifest.xml, which determines the level of features that can be
848 included in the build.
849
850 In the case of an ant project, it modifies project.properties of the app and
851 possibly sub-projects. This is likely to cause the whole build.xml to be
852 rewritten, which is fine if it's a 'standard' android file or doesn't already
853 exist, but not a good idea if it's heavily customised.
854
855 @item update=xxx
856 By default, 'android update project' is used to generate or update the
857 project and all its referenced projects. Specifying update=no bypasses that.
858 Note that this only matters in ant build recipes.
859
860 Default value is '@code{auto}', which uses the paths used in the
861 project.properties file to find out what project paths to update.
862
863 Otherwise, value can be a semicolon-separated list of directories in
864 which to run 'android update project' relative to the main
865 application directory (which may include '@code{subdir}' parameter).
866
867 @item encoding=xxxx
868 Adds a java.encoding property to local.properties with the given
869 value. Generally the value will be 'utf-8'. This is picked up by the
870 SDK's ant rules, and forces the Java compiler to interpret source
871 files with this encoding. If you receive warnings during the compile
872 about character encodings, you probably need this.
873
874 @item forceversion=yes
875 If specified, the package version in AndroidManifest.xml is replaced
876 with the version name for the build as specified in the metadata.
877
878 This is useful for cases when upstream repo failed to update it for
879 specific tag; to build an arbitrary revision; to make it apparent that
880 the version differs significantly from upstream; or to make it apparent
881 which architecture or platform the apk is designed to run on.
882
883 @item forcevercode=yes
884 If specified, the package version code in the AndroidManifest.xml is
885 replaced with the version code for the build. See also forceversion.
886
887 @item rm=relpath1,relpath2,...
888 Specifies the relative paths of files or directories to delete before
889 the build is done. The paths are relative to the base of the build
890 directory - i.e. the root of the directory structure checked out from
891 the source respository - not necessarily the directory that contains
892 AndroidManifest.xml.
893
894 Multiple files/directories can be specified by separating them with ','.
895 Directories will be recursively deleted.
896
897 @item extlibs=a,b,...
898 Specifies a list of external libraries (jar files) from the
899 @code{build/extlib} library, which will be placed in the @code{libs} directory
900 of the project. Separate items with semicolons.
901
902 @item srclibs=[n:]a@@r,[n:]b@@r1,...
903 Specifies a list of source libraries or Android projects. Separate items with
904 semicolons, and each item is of the form name@@rev where name is the predefined
905 source library name and rev is the revision or tag in source control to use.
906
907 For ant projects, you can optionally append a number with a colon at the
908 beginning of a srclib item to automatically place it in project.properties as
909 a library under the specified number. For example, if you specify
910 @code{1:somelib@@1.0}, f-droid will automatically do the equivalent of the
911 legacy practice @code{prebuild=echo "android.library.reference.1=$$somelib$$"
912 >> project.properties}.
913
914 Each srclib has a metadata file under srclibs/ in the repository directory,
915 and the source code is stored in build/srclib/.
916 Repo Type: and Repo: are specified in the same way as for apps; Subdir: can be
917 a comma separated list, for when directories are renamed by upstream; Update
918 Project: updates the projects in the working directory and one level down;
919 Prepare: can be used for any kind of preparation: in particular if you need to
920 update the project with a particular target. You can then also use $$name$$ in
921 the init/prebuild/build command to substitute the relative path to the library
922 directory, but it could need tweaking if you've changed into another directory.
923
924 @item patch=x
925 Apply patch(es). 'x' names one (or more - comma-seperated) files within a
926 directory below the metadata, with the same name as the metadata file but
927 without the extension. Each of these patches is applied to the code in turn.
928
929 @item prebuild=xxxx
930 Specifies a shell command (or commands - chain with &&) to run before the
931 build takes place. Backslash can be used as an escape character to insert
932 literal commas, or as the last character on a line to join that line with the
933 next. It has no special meaning in other contexts; in particular, literal
934 backslashes should not be escaped.
935
936 The command runs using bash.
937
938 Note that nothing should be build during this prebuild phase - scanning of the
939 code and building of the source tarball, for example, take place after this.
940 For custom actions that actually build things or produce binaries, use 'build'
941 instead.
942
943 You can use $$name$$ to substitute the path to a referenced srclib - see
944 the @code{srclib} directory for details of this.
945
946 You can use $$SDK$$, $$NDK$$ and $$MVN3$$ to substitute the paths to the
947 android SDK and NDK directories, and maven 3 executable respectively e.g.
948 for when you need to run @code{android update project} explicitly.
949
950 @item scanignore=path1,path2,...
951 Enables one or more files/paths to be excluded from the scan process.
952 This should only be used where there is a very good reason, and
953 probably accompanied by a comment explaining why it is necessary.
954
955 When scanning the source tree for problems, matching files whose relative
956 paths start with any of the paths given here are ignored.
957
958 @item scandelete=path1,path2,...
959 Similar to scanignore=, but instead of ignoring files under the given paths,
960 it tells f-droid to delete the matching files directly.
961
962 @item build=xxxx
963 As for 'prebuild', but runs during the actual build phase (but before the
964 main ant/maven build). Use this only for actions that do actual building.
965 Any prepartion of the source code should be done using 'init' or 'prebuild'.
966
967 Any building that takes place before build= will be ignored, as either ant,
968 mvn or gradle will be executed to clean the build environment right before
969 build= (or the final build) is run.
970
971 You can use $$SDK$$, $$NDK$$ and $$MVN3$$ to substitute the paths to the
972 android SDK and NDK directories, and maven 3 executable respectively.
973
974 @item buildjni=[yes|no|<dir list>]
975 Enables building of native code via the ndk-build script before doing
976 the main ant build. The value may be a list of directories relative
977 to the main application directory in which to run ndk-build, or 'yes'
978 which corresponds to '.' . Using explicit list may be useful to build
979 multi-component projects.
980
981 The build and scan processes will complain (refuse to build) if this
982 parameter is not defined, but there is a @code{jni} directory present.
983 If the native code is being built by other means, you can specify
984 @code{no} here to avoid that. However, if the native code is actually
985 not required, remove the directory instead (using @code{prebuild} for
986 example).
987
988 @item gradle=<flavour>[@@<dir>]
989 Build with gradle instead of ant, specifying what flavour to assemble.
990 If <flavour> is 'yes', 'main' or empty, no flavour will be used. Note
991 that this will not work on projects with flavours, since it will build
992 all flavours and there will be no 'main' build.
993 If @@<dir> is attached to <flavour>, then the gradle tasks will be run in that
994 directory. This might be necessary if gradle needs to be run in the parent
995 directory, in which case one would use 'gradle=<flavour>@@..'.
996
997 @item maven=yes[@@<dir>]
998 Build with maven instead of ant. Like gradle, an extra @@<dir> tells f-droid
999 to run maven inside that relative subdirectory.
1000
1001 @item preassemble=<task1> <task2>
1002 Space-separated list of gradle tasks to be run before the assemble task
1003 in a gradle project build.
1004
1005 @item antcommand=xxx
1006 Specify an alternate ant command (target) instead of the default
1007 'release'. It can't be given any flags, such as the path to a build.xml.
1008
1009 @item output=path/to/output.apk
1010 To be used when app is built with a tool other than the ones natively
1011 supported, like GNU Make. The given path will be where the build= set of
1012 commands should produce the final unsigned release apk.
1013
1014 @item novcheck=yes
1015 Don't check that the version name and code in the resulting apk are
1016 correct by looking at the build output - assume the metadata is
1017 correct. This takes away a useful level of sanity checking, and should
1018 only be used if the values can't be extracted.
1019
1020 @end table
1021
1022 Another example, using extra parameters:
1023
1024 @samp{Build Version:1.09.03,10903,45,subdir=Timeriffic,oldsdkloc=yes}
1025
1026 @node AntiFeatures
1027 @section AntiFeatures
1028
1029 @cindex AntiFeatures
1030
1031 This is optional - if present, it contains a comma-separated list of any of
1032 the following values, describing an anti-feature the application has.
1033 Even though such apps won't be displayed unless a settings box is ticked,
1034 it is a good idea to mention the reasons for the anti-feature(s) in the
1035 description:
1036
1037 @itemize @bullet
1038
1039 @item
1040 @samp{Ads} - the application contains advertising.
1041
1042 @item
1043 @samp{Tracking} - the application tracks and reports your activity to
1044 somewhere without your consent. It's commonly used for when developers
1045 obtain crash logs without the user's consent, or when an app is useless
1046 without some kind of authentication.
1047
1048 @item
1049 @samp{NonFreeNet} - the application relies on computational services that
1050 are impossible to replace or that the replacement cannot be connected to
1051 without major changes to the app.
1052
1053 @item
1054 @samp{NonFreeAdd} - the application promotes non-Free add-ons, such that the
1055 app is effectively an advert for other non-free software and such software is
1056 not clearly labelled as such.
1057
1058 @item
1059 @samp{NonFreeDep} - the application depends on a non-Free application (e.g.
1060 Google Maps) - i.e. it requires it to be installed on the device, but does not
1061 include it.
1062
1063 @end itemize
1064
1065 @node Disabled
1066 @section Disabled
1067
1068 @cindex Disabled
1069
1070 If this field is present, the application does not get put into the public
1071 index. This allows metadata to be retained while an application is temporarily
1072 disabled from being published. The value should be a description of why the
1073 application is disabled. No apks or source code archives are deleted: to purge
1074 an apk see the Build Version section or delete manually for developer builds.
1075 The field is therefore used when an app has outlived it's usefulness, because
1076 the source tarball is retained.
1077
1078 @node Requires Root
1079 @section Requires Root
1080
1081 @cindex Requires Root
1082
1083 Set this optional field to "Yes" if the application requires root
1084 privileges to be usable. This lets the client filter it out if the
1085 user so desires. Whether root is required or not, it is good to give
1086 a paragraph in the description to the conditions on which root may be
1087 asked for and the reason for it.
1088
1089 @node Archive Policy
1090 @section Archive Policy
1091
1092 @cindex Archive Policy
1093
1094 This determines the policy for moving old versions of an app to the archive
1095 repo, if one is configured. The configuration sets a default maximum number
1096 of versions kept in the main repo, after which older ones are moved to the
1097 archive. This app-specific policy setting can override that.
1098
1099 Currently the only supported format is "n versions", where n is the number
1100 of versions to keep.
1101
1102 @node Update Check Mode
1103 @section Update Check Mode
1104
1105 @cindex Update Check Mode
1106
1107 This determines the method using for determining when new releases are
1108 available - in other words, the updating of the Current Version and Current
1109 Version Code fields in the metadata by the @code{fdroid checkupdates} process.
1110
1111 Valid modes are:
1112
1113 @itemize
1114 @item
1115 @code{None} - No checking is done because there's no appropriate automated way
1116 of doing so. Updates should be checked for manually. Use this, for example,
1117 when deploying betas or patched versions; when builds are done in a directory
1118 different to where the AndroidManifest.xml is; if the developers use the
1119 gradle build system and store version info in a separate file; if the
1120 developers make a new branch for each release and don't make tags; or if you've
1121 changed the package name or version code logic.
1122 @item
1123 @code{Static} - No checking is done - either development has ceased or new versions
1124 are not desired. This method is also used when there is no other checking method
1125 available and the upstream developer keeps us posted on new versions.
1126 @item
1127 @code{RepoManifest} - At the most recent commit, the AndroidManifest.xml file
1128 is looked for in the directory where it was found in the the most recent build.
1129 The appropriateness of this method depends on the development process used by
1130 the application's developers. You should not specify this method unless you're
1131 sure it's appropriate. For example, some developers bump the version when
1132 commencing development instead of when publishing.
1133 It will return an error if the AndroidManifest.xml has moved to a different
1134 directory or if the package name has changed.
1135 The current version that it gives may not be accurate, since not all
1136 versions are fit to be published. Therefore, before building, it is often
1137 necessary to check if the current version has been published somewhere by the
1138 upstream developers, either by checking for apks that they distribute or for
1139 tags in the source code repository.
1140
1141 It currently works for every repository type to different extents, except
1142 the srclib repo type. For git, git-svn and hg repo types, you may use
1143 "RepoManifest/yourbranch" as UCM so that "yourbranch" would be the branch used
1144 in place of the default one.  The default values are "master" for git,
1145 "default" for hg and none for git-svn (it stays in the same branch).
1146 On the other hand, branch support hasn't been implemented yet in bzr and svn,
1147 but RepoManifest may still be used without it.
1148 @item
1149 @code{RepoTrunk} - For svn and git-svn repositories, especially those who
1150 don't have a bundled AndroidManifest.xml file, the Tags and RepoManifest
1151 checks will not work, since there is no version information to obtain. But,
1152 for those apps who automate their build process with the commit ref that HEAD
1153 points to, RepoTrunk will set the Current Version and Current Version Code to
1154 that number.
1155 @item
1156 @code{Tags} - The AndroidManifest.xml file in all tagged revisions in the
1157 source repository is checked, looking for the highest version code. The
1158 appropriateness of this method depends on the development process used by the
1159 application's developers. You should not specify this method unless you're sure
1160 it's appropriate. It shouldn't be used if the developers like to tag betas or
1161 are known to forget to tag releases. Like RepoManifest, it will not return the
1162 correct value if the directory containing the AndroidManifest.xml has moved.
1163 Despite these caveats, it is the often the favourite update check mode.
1164
1165 It currently only works for git, hg, bzr and git-svn repositories. In the case
1166 of the latter, the repo URL must contain the path to the trunk and tags or
1167 else no tags will be found.
1168
1169 Optionally append a regex pattern at the end - separated with a space - to
1170 only check the tags matching said pattern. Useful when apps tag non-release
1171 versions such as X.X-alpha, so you can filter them out with something like
1172 @code{.*[0-9]$} which requires tag names to end with a digit.
1173 @item
1174 @code{HTTP} - HTTP requests are used to determine the current version code and
1175 version name. This is controlled by the @code{Update Check Data} field, which
1176 is of the form @code{urlcode|excode|urlver|exver}.
1177
1178 Firstly, if @code{urlcode} is non-empty, the document from that URL is
1179 retrieved, and matched against the regular expression @code{excode}, with the
1180 first group becoming the version code.
1181
1182 Secondly, if @code{urlver} is non-empty, the document from that URL is
1183 retrieved, and matched against the regular expression @code{exver}, with the
1184 first group becoming the version name. The @code{urlver} field can be set to
1185 simply '.' which says to use the same document returned for the version code
1186 again, rather than retrieving a different one.
1187 @end itemize
1188
1189 @node Vercode Operation
1190 @section Vercode Operation
1191
1192 @cindex Vercode Operation
1193
1194 Operation to be applied to the vercode obtained by the defined @code{Update
1195 Check Mode}. @code{%c} will be replaced by the actual vercode, and the whole
1196 string will be passed to python's @code{eval} function.
1197
1198 Especially useful with apps that we want to compile for different ABIs, but
1199 whose vercodes don't always have trailing zeros. For example, with
1200 @code{Vercode Operation} set at something like @code{%c*10 + 4}, we will be
1201 able to track updates and build up to four different versions of every
1202 upstream version.
1203
1204 @node Update Check Data
1205 @section Update Check Data
1206
1207 @cindex Update Check Data
1208
1209 Used in conjunction with @code{Update Check Mode} for certain modes.
1210
1211 @node Auto Update Mode
1212 @section Auto Update Mode
1213
1214 @cindex Auto Update Mode
1215
1216 This determines the method using for auto-generating new builds when new
1217 releases are available - in other words, adding a new Build Version line to the
1218 metadata.
1219 This happens in conjunction with the 'Update Check Mode' functionality - i.e.
1220 when an update is detected by that, it is also processed by this.
1221
1222 Valid modes are:
1223
1224 @itemize
1225 @item
1226 @code{None} - No auto-updating is done
1227 @item
1228 @code{Version} - Identifies the target commit (i.e. tag) for the new build based
1229 on the given version specification, which is simply text in which %v and %c are
1230 replaced with the required version name and version code respectively.
1231
1232 For example, if an app always has a tag "2.7.2" corresponding to version 2.7.2,
1233 you would simply specify "Version %v". If an app always has a tag "ver_1234"
1234 for a version with version code 1234, you would specify "Version ver_%c".
1235
1236 Additionally, a suffix can be added to the version name at this stage, to
1237 differentiate F-Droid's build from the original. Continuing the first example
1238 above, you would specify that as "Version +-fdroid %v" - "-fdroid" is the suffix.
1239 @end itemize
1240
1241
1242 @node Current Version
1243 @section Current Version
1244
1245 @cindex Current Version
1246
1247 The name of the version that is current. There may be newer versions of the
1248 application than this (e.g. betas), and there will almost certainly be older
1249 ones. This should be the one that is recommended for general use.
1250 In the event that there is no source code for the current version, or that
1251 non-free libraries are being used, this would ideally be the latest
1252 version that is still free, though it may still be expedient to
1253 retain the automatic update check — see No Source Since.
1254
1255 This field is normally automatically updated - see Update Check Mode.
1256
1257 This is converted to (@code{<marketversion>}) in the public index file.
1258
1259 @node Current Version Code
1260 @section Current Version Code
1261
1262 @cindex Current Version Code
1263
1264 The version code corresponding to the Current Version field. Both these fields
1265 must be correct and matching although it's the current version code that's
1266 used by Android to determine version order and by F-Droid client to determine
1267 which version should be recommended.
1268
1269 This field is normally automatically updated - see Update Check Mode.
1270
1271 This is converted to (@code{<marketvercode>}) in the public index file.
1272
1273 @node No Source Since
1274 @section No Source Since
1275
1276 @cindex No Source Since
1277
1278 In case we are missing the source code for the Current Version reported by
1279 Upstream, or that non-free elements have been introduced, this defines the
1280 first version that began to miss source code.
1281 Apps that are missing source code for just one or a few versions, but provide
1282 source code for newer ones are not to be considered here - this field is
1283 intended to illustrate which apps do not currently distribute source code, and
1284 since when have they been doing so.
1285
1286 @node Update Processing
1287 @chapter Update Processing
1288
1289 @section Detecting
1290
1291 There are various mechanisms in place for automatically detecting that updates
1292 are available for applications, with the @code{Update Check Mode} field in the
1293 metadata determining which method is used for a particular application.
1294
1295 Running the @code{fdroid checkupdates} command will apply this method to each
1296 application in the repository and update the @code{Current Version} and
1297 @code{Current Version Code} fields in the metadata accordingly.
1298
1299 As usual, the @code{-p} option can be used with this, to restrict processing
1300 to a particular application.
1301
1302 Note that this only updates the metadata such that we know what the current
1303 published/recommended version is. It doesn't make that version available in
1304 the repository - for that, see the next section.
1305
1306 @section Adding
1307
1308 Adding updates (i.e. new versions of applications already included in the
1309 repository) happens in two ways. The simple case is applications where the
1310 APK files are binaries, retrieved from a developer's published build. In this
1311 case, all that's required is to place the new binary in the @code{Repo}
1312 directory, and the next run of @code{fdroid update} will pick it up.
1313
1314 For applications built from source, it is necessary to add a new
1315 @code{Build Version} line to the metadata file. At the very least, the version
1316 name, version code and commit will be different. It is also possible that the
1317 additional build flags will change between versions.
1318
1319 For processing multiple updates in the metadata at once, it can be useful to
1320 run @code{fdroid update --interactive}. This will check all the applications
1321 in the repository, and where updates are required you will be prompted to
1322 [E]dit the metadata, [I]gnore the update, or [Q]uit altogether.
1323
1324 @node Build Server
1325 @chapter Build Server
1326
1327 The Build Server system isolates the builds for each package within a clean,
1328 isolated and secure throwaway virtual machine environment.
1329
1330 @section Overview
1331
1332 Building applications in this manner on a large scale, especially with the
1333 involvement of automated and/or unattended processes, could be considered
1334 a dangerous pastime from a security perspective. This is even more the case
1335 when the products of the build are also distributed widely and in a
1336 semi-automated ("you have updates available") fashion.
1337
1338 Assume that an upstream source repository is compromised. A small selection
1339 of things that an attacker could do in such a situation:
1340
1341 @enumerate
1342 @item
1343 Use custom ant build steps to execute virtually anything as the user doing
1344 the build.
1345 @item
1346 Access the keystore.
1347 @item
1348 Modify the built apk files or source tarballs for other applications in the
1349 repository.
1350 @item
1351 Modify the metadata (which includes build scripts, which again, also includes
1352 the ability to execute anything) for other applications in the repository.
1353 @end enumerate
1354
1355 Through complete isolation, the repurcussions are at least limited to the
1356 application in question. Not only is the build environment fresh for each
1357 build, and thrown away afterwards, but it is also isolated from the signing
1358 environment.
1359
1360 Aside from security issues, there are some applications which have strange
1361 requirements such as custom versions of the NDK. It would be impractical (or
1362 at least extremely messy) to start modifying and restoring the SDK on a
1363 multi-purpose system, but within the confines of a throwaway single-use
1364 virtual machine, anything is possible.
1365
1366 All this is in addition to the obvious advantage of having a standardised
1367 and completely reproducible environment in which builds are made. Additionally,
1368 it allows for specialised custom build environments for particular
1369 applications.
1370
1371 @section Setting up a build server
1372
1373 In addition to the basic setup previously described, you will also need
1374 a Vagrant-compatible Debian Testing base box called 'testing32' (or testing64
1375 for a 64-bit VM, if you want it to be much slower, and require more disk
1376 space).
1377
1378 You can use a different version or distro for the base box, so long as you
1379 don't expect any help making it work. One thing to be aware of is that
1380 working copies of source trees are moved from the host to the guest, so
1381 for example, having subversion v1.6 on the host and v1.7 on the guest
1382 would fail.
1383
1384 Unless you're very trusting. you should create one of these for yourself
1385 from verified standard Debian installation media. However, you could skip
1386 over the next few paragraphs (and sacrifice some security) by downloading
1387 @url{https://f-droid.org/testing32.box}.
1388
1389 Documentation for creating a base box can be found at
1390 @url{http://docs.vagrantup.com/v1/docs/base_boxes.html}.
1391
1392 In addition to carefully following the steps described there, you should
1393 consider the following:
1394
1395 @enumerate
1396 @item
1397 It is advisable to disable udev network device persistence, otherwise any
1398 movement of the VM between machines, or reconfiguration, will result in
1399 broken networking.
1400
1401 For a Debian/Ubuntu default install, just
1402 @code{touch /etc/udev/rules.d/75-persistent-net-generator.rules} to turn
1403 off rule generation, and at the same time, get rid of any rules it's
1404 already created in @code{/etc/udev/rules.d/70-persistent-net.rules}.
1405 @item
1406 Unless you want the VM to become totally inaccessible following a failed
1407 boot, you need to set @code{GRUB_RECORDFAIL_TIMEOUT} to a value other than
1408 -1 in @code{/etc/grub/default} and then run @code{update-grub}.
1409 @end enumerate
1410
1411
1412 With this base box available, you should then create @code{makebs.config.py},
1413 using @code{makebs.config.sample.py} as a reference - look at the settings and
1414 documentation there to decide if any need changing to suit your environment.
1415 There is a path for retrieving the base box if it doesn't exist, and an apt
1416 proxy definition, both of which may need customising for your environment.
1417 You can then go to the @code{fdroidserver} directory and run this:
1418
1419 @example
1420 ./makebuildserver
1421 @end example
1422
1423 This will take a long time, and use a lot of bandwidth - most of it spent
1424 installing the necessary parts of the Android SDK for all the various
1425 platforms. Luckily you only need to do it occasionally. Once you have a
1426 working build server image, if the recipes change (e.g. when packages need
1427 to be added) you can just run that script again and the existing one will
1428 be updated in place.
1429
1430 The main sdk/ndk downloads will automatically be cached to speed things
1431 up the next time, but there's no easy way of doing this for the longer
1432 sections which use the SDK's @code{android} tool to install platforms,
1433 add-ons and tools. However, instead of allowing automatic caching, you
1434 can supply a pre-populated cache directory which includes not only these
1435 downloads, but also .tar.gz files for all the relevant additions. If the
1436 provisioning scripts detect these, they will be used in preference to
1437 running the android tools. For example, if you have
1438 @code{buildserver/addons/cache/platforms/android-19.tar.gz} that will be
1439 used when installing the android-19 platform, instead of re-downloading it
1440 using @code{android update sdk --no-ui -t android-19}.
1441
1442 Once it's complete you'll have a new base box called 'buildserver' which is
1443 what's used for the actual builds. You can then build packages as normal,
1444 but with the addition of the @code{--server} flag to @code{fdroid build} to
1445 instruct it to do all the hard work within the virtual machine.
1446
1447 The first time a build is done, a new virtual machine is created using the
1448 'buildserver' box as a base. A snapshot of this clean machine state is saved
1449 for use in future builds, to improve performance. You can force discarding
1450 of this snapshot and rebuilding from scratch using the @code{--resetserver}
1451 switch with @code{fdroid build}.
1452
1453 @node Signing
1454 @chapter Signing
1455
1456 There are two kinds of signing involved in running a repository - the signing
1457 of the APK files generated from source builds, and the signing of the repo
1458 index itself. The latter is optional, but very strongly recommended.
1459
1460 @section Repo Index Signing
1461
1462 When setting up the repository, one of the first steps should be to generate
1463 a signing key for the repository index. This will also create a keystore, which
1464 is a file that can be used to hold this and all other keys used. Consider the
1465 location, security and backup status of this file carefully, then create it as
1466 follows:
1467
1468 @code{keytool -genkey -v -keystore my.keystore -alias repokey -keyalg RSA -keysize 2048 -validity 10000}
1469
1470 In the above, replace 'my.keystore' with the name of the keystore file to be
1471 created, and 'repokey' with a name to identify the repo index key by.
1472
1473 You'll be asked for a password for the keystore, AND a password for the key.
1474 They shouldn't be the same. In between, you'll be asked for some identifying
1475 details which will go in the certificate.
1476
1477 The two passwords entered go into @code{config.py}, as @code{keystorepass} and
1478 @code{keypass} respectively. The path to the keystore file, and the alias you
1479 chose for the key also go into that file, as @code{keystore} and
1480 @code{repo_keyalias} respectively.
1481
1482 @section Package Signing
1483
1484 With the repo index signing configured, all that remains to be done for package
1485 signing to work is to set the @code{keydname} field in @code{config.py} to
1486 contain the same identifying details you entered before.
1487
1488 A new key will be generated using these details, for each application that is
1489 built. (If a specific key is required for a particular application, this system
1490 can be overridden using the @code{keyaliases} config settings.
1491
1492
1493 @node GNU Free Documentation License
1494 @appendix GNU Free Documentation License
1495
1496 @include fdl.texi
1497
1498 @node Index
1499 @unnumbered Index
1500
1501 @printindex cp
1502
1503 @bye