-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmy-config.py
executable file
·86 lines (66 loc) · 2.72 KB
/
my-config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#Copy this file to config.py, then amend the settings below according to
#your system configuration.
sdk_path = "/home/sachin/android-sdk-linux"
ndk_path = "/home/sachin/android-ndk-r8e"
#You probably don't need to change this...
javacc_path = "/usr/bin/javacc"
#Command for running maven 3 (could be mvn, mvn3, or a full path)
mvn3 = "mvn"
repo_url = "http://localhost/fdroid/repo"
repo_name = "sachin"
repo_icon = "fdroid-icon.png"
repo_description = """
test f-droid repo -- t4
"""
# As above, but for the archive repo.
# archive_older sets the number of versions kept in the main repo, with all
# older ones going to the archive. Set it to 0, and there will be no archive
# repository, and no need to define the other archive_ values.
# archive_older = 3
# archive_url = "https://f-droid.org/archive"
# archive_name = "F-Droid Archive"
# archive_icon = "fdroid-icon.png"
# archive_description = """
# The archive repository of the F-Droid client. This contains older versions
# of applications from the main repository.
#"""
#The key (from the keystore defined below) to be used for signing the
#repository itself. Can be None for an unsigned repository.
repo_keyalias = "repokey"
#repo_keyalias = None
#The keystore to use for release keys when building. This needs to be
#somewhere safe and secure, and backed up!
keystore = "/home/sachin/fdroid-keystore/my.keystore"
#The password for the keystore (at least 6 characters).
keystorepass = "sachin123"
#The password for keys - the same is used for each auto-generated key
#as well as for the repository key.
keypass = "sachin123"
#The distinguished name used for all keys.
keydname = "CN=darkstar, OU=IIT, O=IIT Bombay, L=Mumbai, S=Maharashtra, C=IN"
#Use this to override the auto-generated key aliases with specific ones
#for particular applications. Normally, just leave it empty.
#keyaliases = {}
#keyaliases['com.example.app'] = 'example'
#You can also force an app to use the same key alias as another one, using
#the @ prefix.
#keyaliases['com.example.another.plugin'] = '@com.example.another'
#The ssh path to the server's public web root directory. This is used for
#uploading data, etc.
serverwebroot = 'sachin@10.30.30.30:/var/www/fdroid'
#Wiki details
wiki_server = "server"
wiki_path = "/wiki/"
wiki_user = "login"
wiki_password = "1234"
#Only set this to true when running a repository where you want to generate
#stats, and only then on the master build servers, not a development
#machine.
update_stats = True
#Use the following to push stats to a Carbon instance:
# stats_to_carbon = False
# carbon_host = '0.0.0.0'
# carbon_port = 2003
#Set this to true to always use a build server. This saves specifying the
#--server option on dedicated secure build server hosts.
build_server_always = False