mirror of
https://git.rockylinux.org/rocky/pungi-rocky.git
synced 2024-11-16 18:01:28 +00:00
53 lines
1.0 KiB
Plaintext
53 lines
1.0 KiB
Plaintext
from multilib import *
|
|
from include-excludes import *
|
|
from images import *
|
|
|
|
# PRODUCT INFO
|
|
release_name = "Rocky Linux"
|
|
release_short = "Rocky"
|
|
release_version = "8.1"
|
|
version = "8"
|
|
|
|
# GENERAL SETTINGS
|
|
comps_file = {
|
|
'scm': 'git',
|
|
'repo': 'https://git.rockylinux.org/rocky/comps.git',
|
|
'branch': 'master',
|
|
'file': 'comps-rocky-devel-8.xml',
|
|
}
|
|
|
|
variants_file = 'variants.xml'
|
|
|
|
sigkeys = ['6D745A60']
|
|
|
|
# RUNROOT SETTINGS
|
|
runroot_channel = 'image'
|
|
runroot_tag = 'dist-rocky8-build'
|
|
runroot_method = 'koji'
|
|
|
|
# PKGSET
|
|
pkgset_source = "koji"
|
|
koji_profile = "koji"
|
|
|
|
# PKGSET - KOJI
|
|
pkgset_koji_tag = "dist-rocky8-compose"
|
|
pkgset_koji_inherit = False
|
|
pkgset_koji_module_tag = "modular-updates-candidate"
|
|
|
|
gather_method = "deps"
|
|
check_deps = False
|
|
greedy_method = "build"
|
|
|
|
gather_lookaside_repos = [
|
|
#TODO: Fill this in
|
|
]
|
|
|
|
# CREATEREPO
|
|
createrepo_deltas = False
|
|
createrepo_database = True
|
|
createrepo_c = True
|
|
createrepo_checksum = "sha256"
|
|
createrepo_use_xz = True
|
|
createrepo_num_threads = 8
|
|
createrepo_num_workers = 4
|