# GENERAL SETTINGS variants_file='variants-fedora.xml' # limit tree architectures # if undefined, all architectures from variants.xml will be included tree_arches = ['aarch64', 'ppc64le', 's390x', 'x86_64'] hashed_directories = True # RUNROOT settings runroot_channel = 'compose' runroot_tag = 'f40-build' # PKGSET pkgset_source = 'koji' # koji, repos filter_system_release_packages = False # GATHER check_deps = False greedy_method = 'build' # CHECKSUMS media_checksums = ['sha256'] media_checksum_one_file = True #jigdo create_jigdo = False # MULTILIB multilib = [ ('^Everything$', { 'x86_64': ['devel', 'runtime'], }) ] # ISO IMAGE image_volid_layered_product_formats = [] # Used by Pungi to replace 'Cloud' with 'C' (etc.) in ISO volume IDs. # There is a hard 32-character limit on ISO volume IDs, so we use # these to try and produce short enough but legible IDs. Note this is # duplicated in Koji for live images, as livemedia-creator does not # allow Pungi to tell it what volume ID to use. Note: # https://fedoraproject.org/wiki/User:Adamwill/Draft_fedora_image_naming_policy # '-Workstation-' is a temporary workaround. See # https://pagure.io/pungi-fedora/pull-request/525 # Replace 'Cloud' with 'C' in volume id etc. volume_id_substitutions = { 'Beta': 'B', 'Rawhide': 'rawh', 'Astronomy_KDE': 'AstK', 'Silverblue': 'SB', 'Kinoite': 'Knt', 'Cinnamon': 'Cinn', 'Cloud': 'C', 'Comp_Neuro': 'CNr', 'Design_suite': 'Dsgn', 'Electronic_Lab': 'Elec', 'Everything': 'E', 'Games': 'Game', 'Images': 'img', 'Jam_KDE': 'Jam', 'MATE_Compiz': 'MATE', 'Onyx': 'Onyx', # Note https://pagure.io/pungi-fedora/issue/533 'Python-Classroom': 'Clss', 'Python_Classroom': 'Clss', 'Robotics': 'Robo', 'Scientific_KDE': 'SciK', 'Security': 'Sec', 'Sericea': 'Src', 'Server': 'S', '-Workstation-': '-WS-', } disc_types = { 'boot': 'netinst', 'live': 'Live', } translate_paths = [ ('/mnt/koji/compose/', 'https://kojipkgs.fedoraproject.org/compose/'), ]