#!/usr/bin/python3 # # Copyright (C) 2017-2018 Dell, Inc. # # SPDX-License-Identifier: LGPL-2.1+ # import os import subprocess import sys import tempfile import shutil from generate_dependencies import parse_dependencies def get_container_cmd(): '''return docker or podman as container manager''' if shutil.which('docker'): return 'docker' if shutil.which('podman'): return 'podman' directory = os.path.dirname(sys.argv[0]) TARGET = os.getenv('OS') if TARGET is None: print("Missing OS environment variable") sys.exit(1) OS = TARGET SUBOS = '' split = TARGET.split('-') if len(split) >= 2: OS = split[0] SUBOS = split[1] deps = parse_dependencies(OS, SUBOS, "build") input = os.path.join(directory, "Dockerfile-%s.in" % OS) if not os.path.exists(input): print("Missing input file %s for %s" % (input, OS)) sys.exit(1) with open(input, 'r') as rfd: lines = rfd.readlines() out = tempfile.NamedTemporaryFile(dir='.', delete=True) with open(out.name, 'w') as wfd: for line in lines: if line.startswith("FROM %%%ARCH_PREFIX%%%"): if (OS == "debian" or OS == "ubuntu") and SUBOS == "i386": replace = SUBOS + "/" else: replace = '' wfd.write(line.replace("%%%ARCH_PREFIX%%%", replace)) elif line == "%%%INSTALL_DEPENDENCIES_COMMAND%%%\n": if OS == "fedora" or OS == 'flatpak': wfd.write("RUN dnf --enablerepo=updates-testing -y install \\\n") elif OS == "centos": wfd.write("RUN yum -y install \\\n") elif OS == "debian" or OS == "ubuntu": wfd.write("RUN apt update -qq && \\\n") wfd.write( "\tDEBIAN_FRONTEND=noninteractive apt install -yq --no-install-recommends\\\n" ) elif OS == "arch": wfd.write("RUN pacman -Syu --noconfirm --needed\\\n") for i in range(0, len(deps)): if i < len(deps) - 1: wfd.write("\t%s \\\n" % deps[i]) else: wfd.write("\t%s \n" % deps[i]) elif line == "%%%ARCH_SPECIFIC_COMMAND%%%\n": if OS == "debian" and SUBOS == "s390x": # add sources wfd.write( 'RUN cat /etc/apt/sources.list | sed "s/deb/deb-src/" >> /etc/apt/sources.list\n' ) # add new architecture wfd.write('RUN dpkg --add-architecture %s\n' % SUBOS) elif line == "%%%OS%%%\n": wfd.write("ENV OS %s\n" % TARGET) else: wfd.write(line) wfd.flush() cmd = get_container_cmd() args = [cmd, "build", "-t", "fwupd-%s" % TARGET] if 'http_proxy' in os.environ: args += ['--build-arg=http_proxy=%s' % os.environ['http_proxy']] if 'https_proxy' in os.environ: args += ['--build-arg=https_proxy=%s' % os.environ['https_proxy']] args += ["-f", "./%s" % os.path.basename(out.name), "."] subprocess.check_call(args)