chiark / gitweb /
build: log vcs tools version on every build attempt
[fdroidserver.git] / fdroidserver / gpgsign.py
1 #!/usr/bin/env python3
2 #
3 # gpgsign.py - part of the FDroid server tools
4 # Copyright (C) 2014, Ciaran Gultnieks, ciaran@ciarang.com
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU Affero General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU Affero General Public License for more details.
15 #
16 # You should have received a copy of the GNU Affero General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19 import os
20 import glob
21 from argparse import ArgumentParser
22 import logging
23
24 from . import _
25 from . import common
26 from .common import FDroidPopen
27 from .exception import FDroidException
28
29 config = None
30 options = None
31
32
33 def main():
34
35     global config, options
36
37     # Parse command line...
38     parser = ArgumentParser(usage="%(prog)s [options]")
39     common.setup_global_opts(parser)
40     options = parser.parse_args()
41
42     config = common.read_config(options)
43
44     repodirs = ['repo']
45     if config['archive_older'] != 0:
46         repodirs.append('archive')
47
48     for output_dir in repodirs:
49         if not os.path.isdir(output_dir):
50             raise FDroidException(_("Missing output directory") + " '" + output_dir + "'")
51
52         # Process any apks that are waiting to be signed...
53         for f in sorted(glob.glob(os.path.join(output_dir, '*.*'))):
54             if common.get_file_extension(f) == 'asc':
55                 continue
56             if not common.is_repo_file(f):
57                 continue
58             filename = os.path.basename(f)
59             sigfilename = filename + ".asc"
60             sigpath = os.path.join(output_dir, sigfilename)
61
62             if not os.path.exists(sigpath):
63                 gpgargs = ['gpg', '-a',
64                            '--output', sigpath,
65                            '--detach-sig']
66                 if 'gpghome' in config:
67                     gpgargs.extend(['--homedir', config['gpghome']])
68                 if 'gpgkey' in config:
69                     gpgargs.extend(['--local-user', config['gpgkey']])
70                 gpgargs.append(os.path.join(output_dir, filename))
71                 p = FDroidPopen(gpgargs)
72                 if p.returncode != 0:
73                     raise FDroidException("Signing failed.")
74
75                 logging.info('Signed ' + filename)
76
77
78 if __name__ == "__main__":
79     main()