mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 22:40:12 +01:00
80 lines
2.6 KiB
Python
80 lines
2.6 KiB
Python
#!/usr/bin/env python2
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# gpgsign.py - part of the FDroid server tools
|
|
# Copyright (C) 2014, Ciaran Gultnieks, ciaran@ciarang.com
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import sys
|
|
import os
|
|
import glob
|
|
from optparse import OptionParser
|
|
import logging
|
|
|
|
import common
|
|
from common import FDroidPopen
|
|
|
|
config = None
|
|
options = None
|
|
|
|
|
|
def main():
|
|
|
|
global config, options
|
|
|
|
# Parse command line...
|
|
parser = OptionParser(usage="Usage: %prog [options]")
|
|
parser.add_option("-v", "--verbose", action="store_true", default=False,
|
|
help="Spew out even more information than normal")
|
|
parser.add_option("-q", "--quiet", action="store_true", default=False,
|
|
help="Restrict output to warnings and errors")
|
|
(options, args) = parser.parse_args()
|
|
|
|
config = common.read_config(options)
|
|
|
|
repodirs = ['repo']
|
|
if config['archive_older'] != 0:
|
|
repodirs.append('archive')
|
|
|
|
for output_dir in repodirs:
|
|
if not os.path.isdir(output_dir):
|
|
logging.error("Missing output directory '" + output_dir + "'")
|
|
sys.exit(1)
|
|
|
|
# Process any apks that are waiting to be signed...
|
|
for apkfile in sorted(glob.glob(os.path.join(output_dir, '*.apk'))):
|
|
|
|
apkfilename = os.path.basename(apkfile)
|
|
sigfilename = apkfilename + ".asc"
|
|
sigpath = os.path.join(output_dir, sigfilename)
|
|
|
|
if not os.path.exists(sigpath):
|
|
gpgargs = ['gpg', '-a',
|
|
'--output', sigpath,
|
|
'--detach-sig']
|
|
if 'gpghome' in config:
|
|
gpgargs.extend(['--homedir', config['gpghome']])
|
|
gpgargs.append(os.path.join(output_dir, apkfilename))
|
|
p = FDroidPopen(gpgargs)
|
|
if p.returncode != 0:
|
|
logging.error("Signing failed.")
|
|
sys.exit(1)
|
|
|
|
logging.info('Signed ' + apkfilename)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|