def sign_with_gnupg(self): """ Create a detached signature using GNUPG. """ sign.batch_sign([self.file_path], is_iso=True)
def build_pkgs(last=False, pkg_info=None): if pkg_info is None: return False # Create our tmp directories result = os.path.join("/tmp", "result") cache = os.path.join("/var/tmp", "pkg_cache") for d in [result, cache]: if os.path.exists(d) and 'result' in d: shutil.rmtree(d) os.mkdir(d, 0o777) elif os.path.exists(d) and 'pkg_cache' in d: logger.info('@@-build_pkg.py-@@ 476 | Cleaning package cache....') db.set('building', 'Cleaning package cache.') for pcache in os.listdir(d): pcache = os.path.join(d, pcache) if not os.path.isdir(pcache): logger.error('@@-build_pkg.py-@@ 479 | pcache is not a directory') continue for pfile in os.listdir(pcache): pname = re.search('^([a-z]|[0-9]|-|_)+(?=-\d|r|v)', pfile) if not pname or pname == '': continue pname = pname.group(0) pfile = os.path.join(pcache, pfile) dtime = time.time() if os.stat(pfile).st_mtime < (dtime - 7 * 86400) or status.all_packages().ismember(pname): remove(pfile) else: os.mkdir(d, 0o777) dirs = ['/var/tmp/32build', '/var/tmp/32bit'] for d in dirs: if os.path.exists(d): shutil.rmtree(d) os.mkdir(d, 0o777) # pkglist = db.lrange('queue', 0, -1) pkglist1 = ['1'] in_dir_last = len([name for name in os.listdir(result)]) db.set('pkg_count', in_dir_last) for i in range(len(pkglist1)): pkg = pkg_info.name if pkg and pkg is not None and pkg != '': pkgbuild_dir = pkg_info.build_path status.current_status = 'Building %s with makepkg' % pkg bld_obj = build_obj.get_build_object(pkg_obj=pkg_info) bld_obj.failed = False bld_obj.completed = False bld_obj.version_str = pkg_info.version_str bld_obj.start_str = datetime.datetime.now().strftime("%m/%d/%Y %I:%M%p") status.building_num = bld_obj.bnum status.building_start = bld_obj.start_str build_id = bld_obj.bnum tlmsg = 'Build <a href="/build/%s">%s</a> for <strong>%s</strong> started.' % (build_id, build_id, pkg) Timeline(msg=tlmsg, tl_type=3) pbuilds = pkg_info.builds() pbuilds.append(build_id) bld_obj.pkgname = pkg pkg_deps = pkg_info.depends() or [] pkg_deps_str = ' '.join(pkg_deps) run_docker_clean(pkg) if pkg_info is not None and pkg_info.autosum == "True": build_env = ['_AUTOSUMS=True'] else: build_env = ['_AUTOSUMS=False'] if '/cinnamon/' in pkg_info.path: build_env.append('_ALEXPKG=True') else: build_env.append('_ALEXPKG=False') hconfig = docker_utils.create_pkgs_host_config(cache, pkgbuild_dir, result) try: container = doc.create_container("antergos/makepkg", command="/makepkg/build.sh " + pkg_deps_str, volumes=['/var/cache/pacman', '/makepkg', '/repo', '/pkg', '/root/.gnupg', '/staging', '/32bit', '/32build', '/result'], environment=build_env, cpuset='0-3', name=pkg, host_config=hconfig) if container.get('Warnings') and container.get('Warnings') != '': logger.error(container.get('Warnings')) except Exception as err: logger.error('Create container failed. Error Msg: %s' % err) bld_obj.failed = True bld_obj.completed = False continue bld_obj.container = container.get('Id') try: doc.start(container.get('Id')) cont = bld_obj.container stream_process = Process(target=publish_build_ouput, args=(cont, bld_obj)) stream_process.start() result = doc.wait(cont) if result is not 0: bld_obj.failed = True bld_obj.completed = False logger.error('[CONTAINER EXIT CODE] Container %s exited. Return code was %s' % (pkg, result)) else: logger.info('[CONTAINER EXIT CODE] Container %s exited. Return code was %s' % (pkg, result)) bld_obj.failed = False bld_obj.completed = True except Exception as err: logger.error('Start container failed. Error Msg: %s' % err) bld_obj.failed = True bld_obj.completed = False continue # db.publish('build-ouput', 'ENDOFLOG') # stream = doc.logs(container, stdout=True, stderr=True, timestamps=True) # log_stream = stream.split('\n') # db_filter_and_add(log_stream, this_log) # in_dir = len([name for name in os.listdir(result)]) # last_count = int(db.get('pkg_count')) # logger.info('last count is %s %s' % (last_count, type(last_count))) # logger.info('in_dir is %s %s' % (in_dir, type(in_dir))) pkgs2sign = None if not bld_obj.failed: db.publish('build-output', 'Signing package..') pkgs2sign = glob.glob( '/srv/antergos.info/repo/iso/testing/uefi/antergos-staging/x86_64/%s-***.xz' % pkg) pkgs2sign32 = glob.glob( '/srv/antergos.info/repo/iso/testing/uefi/antergos-staging/i686/%s-***.xz' % pkg) pkgs2sign = pkgs2sign + pkgs2sign32 logger.info('[PKGS TO SIGN] %s' % pkgs2sign) if pkgs2sign is not None and pkgs2sign != []: try_sign = sign_pkgs.batch_sign(pkgs2sign) else: try_sign = False if try_sign: db.publish('build-output', 'Signature created successfully for %s' % pkg) logger.info('[SIGN PKG] Signature created successfully for %s' % pkg) db.publish('build-output', 'Updating staging repo database..') update_main_repo(pkg, 'staging', bld_obj) else: bld_obj.failed = True bld_obj.completed = False if not bld_obj.failed: db.publish('build-output', 'Build completed successfully!') tlmsg = 'Build <a href="/build/%s">%s</a> for <strong>%s</strong> completed.' % ( build_id, build_id, pkg) Timeline(msg=tlmsg, tl_type=4) # db.incr('pkg_count', (in_dir - last_count)) completed = status.completed() completed.rpush(build_id) bld_obj.review_stat = 'pending' else: tlmsg = 'Build <a href="/build/%s">%s</a> for <strong>%s</strong> failed.' % (build_id, build_id, pkg) Timeline(msg=tlmsg, tl_type=5) if pkgs2sign is not None: for p in pkgs2sign: remove(p) remove(p + '.sig') failed = status.failed() failed.rpush(build_id) bld_obj.end_str = datetime.datetime.now().strftime("%m/%d/%Y %I:%M%p") status.container = '' status.building_num = '' status.building_start = '' if not bld_obj.failed: db.set('antbs:misc:cache_buster:flag', True) return True return False