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