mirror of
https://git.rockylinux.org/rocky/pungi-rocky.git
synced 2024-10-31 18:31:24 +00:00
65 lines
1.2 KiB
Plaintext
65 lines
1.2 KiB
Plaintext
from shared/variables import *
|
|
from rocky/variables import *
|
|
from shared/all import *
|
|
from rocky/override import *
|
|
|
|
# PRODUCT INFO
|
|
release_name = "Rocky Development"
|
|
release_short = "Rocky-devel"
|
|
version = "8-devel"
|
|
|
|
skip_phases = ['buildinstall','productimg','createiso','extra_isos','extra_files']
|
|
|
|
# GENERAL SETTINGS
|
|
multilib = [
|
|
('^.*$', {
|
|
'x86_64': ['devel', 'runtime']
|
|
}),
|
|
]
|
|
|
|
variants_file = 'variants-devel.xml'
|
|
sigkeys = ['6D745A60']
|
|
hashed_directories = True
|
|
|
|
# tree_arches = ['aarch64', 'i386', 'ppc64le', 'x86_64']
|
|
tree_arches = ['aarch64', 'i686', 'x86_64']
|
|
|
|
# PKGSET
|
|
koji_profile = "koji"
|
|
|
|
# PKGSET - KOJI
|
|
filter_system_release_packages = False
|
|
|
|
# GATHER
|
|
gather_prepopulate = "devel-prepopulate.json"
|
|
gather_selfhosting = True
|
|
gather_method = "deps"
|
|
|
|
gather_backend = "dnf"
|
|
check_deps = False
|
|
greedy_method = "none"
|
|
repoclosure_backend = "dnf"
|
|
|
|
# CHECKSUMS
|
|
media_checksums = ['sha256']
|
|
media_checksum_one_file = True
|
|
create_jigdo = False
|
|
|
|
|
|
buildinstall_skip = [
|
|
("^(devel|AppStream|PowerTools|HighAvailability|ResilientStorage)$", {
|
|
"*": True
|
|
}),
|
|
]
|
|
|
|
# LOOKASIDE
|
|
variant_as_lookaside = [
|
|
]
|
|
|
|
gather_lookaside_repos = [
|
|
]
|
|
|
|
productimg = False
|
|
|
|
comps_file = ""
|