mirror of
https://git.rockylinux.org/rocky/pungi-rocky.git
synced 2024-11-21 20:31:30 +00:00
re-arrange to match r9
This commit is contained in:
parent
d429fd84d2
commit
d2104c3938
@ -1,4 +1,4 @@
|
||||
from common/extras import *
|
||||
from shared/extras import *
|
||||
|
||||
release_name = "Rocky Linux Extras"
|
||||
release_short = "Extras"
|
||||
|
@ -87,7 +87,6 @@ createrepo_extra_args = ['--distro=cpe:/o:rocky:rocky:8,Rocky Linux 8', '--revis
|
||||
# CHECKSUMS
|
||||
media_checksums = ['sha256']
|
||||
media_checksum_one_file = True
|
||||
create_jigdo = False
|
||||
|
||||
# BUILDINSTALL
|
||||
bootable = True
|
409
prepopulate.yaml
409
prepopulate.yaml
File diff suppressed because it is too large
Load Diff
@ -1,3 +0,0 @@
|
||||
from r8 import *
|
||||
#from images import *
|
||||
release_type = 'updates'
|
31
rocky-beta.conf
Normal file
31
rocky-beta.conf
Normal file
@ -0,0 +1,31 @@
|
||||
from shared/variables import *
|
||||
from rocky/variables import *
|
||||
# override lookahead here
|
||||
from rocky/beta_variables import *
|
||||
# continue
|
||||
from shared/all import *
|
||||
from rocky/override import *
|
||||
|
||||
koji_profile = "koji"
|
||||
filter_system_release_packages = False
|
||||
createiso_break_hardlinks = True
|
||||
|
||||
# GATHER
|
||||
gather_prepopulate = "prepopulate.json"
|
||||
|
||||
greedy_method = "none"
|
||||
|
||||
# CHECKSUMS
|
||||
media_checksums = ['sha256']
|
||||
media_checksum_one_file = True
|
||||
create_jigdo = False
|
||||
|
||||
image_name_format = {
|
||||
"^BaseOS$": "{compose_id}-{arch}-{disc_type}{disc_num}{suffix}",
|
||||
"^Minimal$": "{compose_id}-{arch}-minimal{suffix}",
|
||||
".*": "{compose_id}-{arch}-{disc_type}{disc_num}{suffix}",
|
||||
}
|
||||
|
||||
image_volid_formats = [ '{release_short}-8.8-LH-{arch}-{disc_type}', ]
|
||||
|
||||
|
2
rocky-updates.conf
Normal file
2
rocky-updates.conf
Normal file
@ -0,0 +1,2 @@
|
||||
from rocky import *
|
||||
release_type = 'updates'
|
19
rocky.conf
Normal file
19
rocky.conf
Normal file
@ -0,0 +1,19 @@
|
||||
from shared/variables import *
|
||||
from rocky/variables import *
|
||||
from shared/all import *
|
||||
from rocky/override import *
|
||||
|
||||
koji_profile = "koji"
|
||||
filter_system_release_packages = False
|
||||
createiso_break_hardlinks = True
|
||||
|
||||
# GATHER
|
||||
gather_prepopulate = "prepopulate.json"
|
||||
|
||||
greedy_method = "none"
|
||||
|
||||
# CHECKSUMS
|
||||
media_checksums = ['sha256']
|
||||
media_checksum_one_file = True
|
||||
create_jigdo = False
|
||||
|
8
rocky/beta_variables.conf
Normal file
8
rocky/beta_variables.conf
Normal file
@ -0,0 +1,8 @@
|
||||
# Sets the values of variables
|
||||
|
||||
PKGSET_KOJI_TAG = 'dist-rocky8-prep-compose'
|
||||
PKGSET_KOJI_MODULE_TAG = 'dist-rocky8-prep-module-compose'
|
||||
RUNROOT_TAG = 'dist-rocky8-prep-build'
|
||||
|
||||
VARIANTS_BRANCH = 'r8-beta'
|
||||
GATHER_PREPOPULATE_BRANCH = 'r8-beta'
|
8
rocky/lh_variables.conf
Normal file
8
rocky/lh_variables.conf
Normal file
@ -0,0 +1,8 @@
|
||||
# Sets the values of variables
|
||||
|
||||
PKGSET_KOJI_TAG = 'dist-rocky8-lookahead-compose'
|
||||
PKGSET_KOJI_MODULE_TAG = 'dist-rocky8-lookahead-module-compose'
|
||||
RUNROOT_TAG = 'dist-rocky8-lookahead-build'
|
||||
|
||||
VARIANTS_BRANCH = 'r8s'
|
||||
GATHER_PREPOPULATE_BRANCH = 'r8s'
|
7
rocky/override.conf
Normal file
7
rocky/override.conf
Normal file
@ -0,0 +1,7 @@
|
||||
# Overrides default variables
|
||||
|
||||
sigkeys = ['6D745A60']
|
||||
tree_arches = ['aarch64', 'i386', 'x86_64']
|
||||
translate_paths = [
|
||||
("/mnt/koji", "https://koji.rockylinux.org/kojifiles")
|
||||
]
|
49
rocky/variables.conf
Normal file
49
rocky/variables.conf
Normal file
@ -0,0 +1,49 @@
|
||||
# Sets the values of variables
|
||||
|
||||
RELEASE_NAME = 'Rocky Linux'
|
||||
RELEASE_SHORT = 'Rocky'
|
||||
RELEASE_VERSION = '8.8'
|
||||
VERSION = '8.8'
|
||||
|
||||
PKGSET_KOJI_TAG = 'dist-rocky8-compose'
|
||||
PKGSET_KOJI_MODULE_TAG = 'dist-rocky8-module-compose'
|
||||
|
||||
RUNROOT_CHANNEL = 'image'
|
||||
RUNROOT_TAG = 'dist-rocky8-build'
|
||||
|
||||
COMPS_REPO = 'https://git.rockylinux.org/rocky/comps.git'
|
||||
COMPS_BRANCH = 'main'
|
||||
COMPS_FILE = 'comps-rocky-%s.xml' % VERSION
|
||||
COMPS_COMMAND = ''
|
||||
|
||||
MODULE_DEFAULTS_REPO = 'https://git.rockylinux.org/rocky/rocky-module-defaults.git'
|
||||
MODULE_DEFAULTS_BRANCH = 'r8.8'
|
||||
|
||||
VARIANTS_SCM = 'git'
|
||||
VARIANTS_REPO = 'https://git.rockylinux.org/rocky/pungi-rocky.git'
|
||||
VARIANTS_BRANCH = 'r8'
|
||||
VARIANTS_FILE = 'variants.xml'
|
||||
|
||||
GATHER_PREPOPULATE_REPO = 'https://git.rockylinux.org/rocky/pungi-rocky.git'
|
||||
GATHER_PREPOPULATE_BRANCH = 'r8'
|
||||
GATHER_PREPOPULATE_FILE = 'prepopulate.json'
|
||||
GATHER_PREPOPULATE_COMMAND = ''
|
||||
|
||||
EXTRA_FILES = [
|
||||
{
|
||||
"scm": "git",
|
||||
"repo": "https://git.rockylinux.org/original/rpms/rocky-release.git",
|
||||
"branch": "r8",
|
||||
"file": [
|
||||
'SOURCES/LICENSE',
|
||||
'SOURCES/EULA',
|
||||
'SOURCES/COMMUNITY-CHARTER',
|
||||
'SOURCES/RPM-GPG-KEY-rockyofficial',
|
||||
],
|
||||
"target": "",
|
||||
}
|
||||
]
|
||||
|
||||
EXTRA_BUILDINSTALL_SKIP = [("^(AppStream|PowerTools|HighAvailability|ResilientStorage|RT|NFV)$", {"*": True})]
|
||||
|
||||
EXTRA_ISO_ARCHES = ['aarch64', 'x86_64']
|
31
rockylh.conf
Normal file
31
rockylh.conf
Normal file
@ -0,0 +1,31 @@
|
||||
from shared/variables import *
|
||||
from rocky/variables import *
|
||||
# override lookahead here
|
||||
from rocky/lh_variables import *
|
||||
# continue
|
||||
from shared/all import *
|
||||
from rocky/override import *
|
||||
|
||||
koji_profile = "koji"
|
||||
filter_system_release_packages = False
|
||||
createiso_break_hardlinks = True
|
||||
|
||||
# GATHER
|
||||
gather_prepopulate = "prepopulate.json"
|
||||
|
||||
greedy_method = "none"
|
||||
|
||||
# CHECKSUMS
|
||||
media_checksums = ['sha256']
|
||||
media_checksum_one_file = True
|
||||
create_jigdo = False
|
||||
|
||||
image_name_format = {
|
||||
"^BaseOS$": "{compose_id}-{arch}-{disc_type}{disc_num}{suffix}",
|
||||
"^Minimal$": "{compose_id}-{arch}-minimal{suffix}",
|
||||
".*": "{compose_id}-{arch}-{disc_type}{disc_num}{suffix}",
|
||||
}
|
||||
|
||||
image_volid_formats = [ '{release_short}-8.8-LH-{arch}-{disc_type}', ]
|
||||
|
||||
|
@ -4,7 +4,7 @@ source "$(dirname "$0")/common-8"
|
||||
export PATH=/usr/sbin:/usr/bin:/root/bin
|
||||
TARGET_DIR="/mnt/compose/8-BETA"
|
||||
SHORT=Rocky
|
||||
CONFIG=/etc/pungi-beta/r8-beta.conf
|
||||
CONFIG=/etc/pungi-beta/rocky-beta.conf
|
||||
# Unused for now
|
||||
OLDCOMPOSE_ID=$(cat $TARGET_DIR/latest-$SHORT-8/COMPOSE_ID)
|
||||
SKIP=""
|
||||
|
@ -4,7 +4,7 @@ source "$(dirname "$0")/common-8"
|
||||
export PATH=/usr/sbin:/usr/bin:/root/bin
|
||||
TARGET_DIR="/mnt/compose/8-LookAhead"
|
||||
SHORT=Rocky
|
||||
CONFIG=/etc/pungi-lh/r8lh.conf
|
||||
CONFIG=/etc/pungi-lh/rockylh.conf
|
||||
# Unused for now
|
||||
OLDCOMPOSE_ID=$(cat $TARGET_DIR/latest-$SHORT-8/COMPOSE_ID)
|
||||
SKIP=""
|
||||
|
@ -4,7 +4,7 @@ source "$(dirname "$0")/common-8"
|
||||
export PATH=/usr/sbin:/usr/bin:/root/bin
|
||||
TARGET_DIR="/mnt/compose/8"
|
||||
SHORT=Rocky
|
||||
CONFIG=/etc/pungi-prod/r8.conf
|
||||
CONFIG=/etc/pungi-prod/rocky.conf
|
||||
# Unused for now
|
||||
OLDCOMPOSE_ID=$(cat $TARGET_DIR/latest-$SHORT-8/COMPOSE_ID)
|
||||
SKIP=""
|
||||
|
@ -4,7 +4,7 @@ source "$(dirname "$0")/common-8"
|
||||
export PATH=/usr/sbin:/usr/bin:/root/bin
|
||||
TARGET_DIR="/mnt/compose/8"
|
||||
SHORT=Rocky
|
||||
CONFIG=/etc/pungi-prod/r8-updates.conf
|
||||
CONFIG=/etc/pungi-prod/rocky-updates.conf
|
||||
# Unused for now
|
||||
OLDCOMPOSE_ID=$(cat $TARGET_DIR/latest-$SHORT-8/COMPOSE_ID)
|
||||
SKIP="--skip-phase buildinstall --skip-phase createiso --skip-phase extra_isos --skip-phase productimg"
|
||||
|
1468
shared/additional_and_filter_packages.conf
Normal file
1468
shared/additional_and_filter_packages.conf
Normal file
File diff suppressed because it is too large
Load Diff
11
shared/all.conf
Normal file
11
shared/all.conf
Normal file
@ -0,0 +1,11 @@
|
||||
from general import *
|
||||
from multilib import *
|
||||
from additional_and_filter_packages import *
|
||||
from runroot import *
|
||||
from pkgset import *
|
||||
from gather import *
|
||||
from createrepo import *
|
||||
from createiso import *
|
||||
from buildinstall import *
|
||||
from lookaside import *
|
||||
from extra_isos import *
|
24
shared/buildinstall.conf
Normal file
24
shared/buildinstall.conf
Normal file
@ -0,0 +1,24 @@
|
||||
bootable = True
|
||||
buildinstall_method = "lorax"
|
||||
lorax_options = [
|
||||
("^.*$", {
|
||||
"*": {
|
||||
"noupgrade": False,
|
||||
"bugurl": "https://bugs.rockylinux.org"
|
||||
}
|
||||
})
|
||||
]
|
||||
|
||||
image_name_format = {
|
||||
"^BaseOS$": "{release_short}-8.8-{arch}-{disc_type}{disc_num}{suffix}",
|
||||
"^Minimal$": "{release_short}-8.8-{arch}-minimal{suffix}",
|
||||
".*": "{release_short}-8.8-{arch}-{disc_type}{disc_num}{suffix}",
|
||||
}
|
||||
|
||||
image_volid_formats = [ '{release_short}-8.8-{arch}-{disc_type}', ]
|
||||
|
||||
buildinstall_skip = [
|
||||
("^(AppStream|PowerTools|HighAvailability|ResilientStorage|RT|NFV)$", {
|
||||
"*": True
|
||||
}),
|
||||
]
|
9
shared/createiso.conf
Normal file
9
shared/createiso.conf
Normal file
@ -0,0 +1,9 @@
|
||||
create_optional_isos = False
|
||||
createiso_skip = [
|
||||
('^(BaseOS|AppStream|Minimal|PowerTools|HighAvailability|ResilientStorage|RT|NFV)$', {
|
||||
'*': True,
|
||||
'src':True
|
||||
}),
|
||||
]
|
||||
|
||||
restricted_volid = True
|
8
shared/createrepo.conf
Normal file
8
shared/createrepo.conf
Normal file
@ -0,0 +1,8 @@
|
||||
createrepo_deltas = False
|
||||
createrepo_database = True
|
||||
createrepo_c = True
|
||||
createrepo_checksum = "sha256"
|
||||
createrepo_use_xz = True
|
||||
createrepo_num_threads = 8
|
||||
createrepo_num_workers = 8
|
||||
createrepo_extra_args = ['--distro=cpe:/o:rocky:rocky:8,Rocky Linux 8', '--revision=8.8']
|
12
shared/extra_isos.conf
Normal file
12
shared/extra_isos.conf
Normal file
@ -0,0 +1,12 @@
|
||||
extra_isos = {
|
||||
"BaseOS": [{
|
||||
"include_variants": ["AppStream"],
|
||||
"filename": "{release_short}-8.8-{arch}-{disc_type}{disc_num}{suffix}",
|
||||
"skip_src": True,
|
||||
}],
|
||||
"Minimal": [{
|
||||
"include_variants": ["BaseOS"],
|
||||
"filename": "{release_short}-8.8-{arch}-minimal{suffix}",
|
||||
"skip_src": True,
|
||||
}]
|
||||
}
|
317
shared/extras.conf
Normal file
317
shared/extras.conf
Normal file
@ -0,0 +1,317 @@
|
||||
filter_packages = [
|
||||
("^.*$", {
|
||||
"*": [
|
||||
"*",
|
||||
]
|
||||
}),
|
||||
]
|
||||
|
||||
#filter_modules = [
|
||||
# "*": [
|
||||
# "*",
|
||||
# ]
|
||||
# }),
|
||||
#]
|
||||
|
||||
additional_packages = [
|
||||
# Consolidation
|
||||
('^extras$', {
|
||||
'*': [
|
||||
'rpaste',
|
||||
'epel-release',
|
||||
'rpmfusion-free-release',
|
||||
'rpmfusion-free-release-tainted',
|
||||
'anaconda-live',
|
||||
'rocky-release-cloud',
|
||||
'rocky-release-core',
|
||||
'centos-release-advanced-virtualization',
|
||||
'centos-release-ansible-29',
|
||||
'centos-release-ceph-nautilus',
|
||||
'centos-release-ceph-octopus',
|
||||
'centos-release-ceph-pacific',
|
||||
'centos-release-ceph-quincy',
|
||||
'centos-release-configmanagement',
|
||||
'centos-release-gluster6',
|
||||
'centos-release-gluster7',
|
||||
'centos-release-gluster8',
|
||||
'centos-release-gluster9',
|
||||
'centos-release-gluster10',
|
||||
'centos-release-kmods',
|
||||
'centos-release-kmods-rebuild',
|
||||
'centos-release-nfs-ganesha28',
|
||||
'centos-release-nfs-ganesha30',
|
||||
'centos-release-nfv-common',
|
||||
'centos-release-nfv-extras',
|
||||
'centos-release-nfv-openvswitch',
|
||||
'centos-release-openstack-train',
|
||||
'centos-release-openstack-ussuri',
|
||||
'centos-release-openstack-victoria',
|
||||
'centos-release-openstack-wallaby',
|
||||
'centos-release-openstack-xena',
|
||||
'centos-release-openstack-yoga',
|
||||
'centos-release-opstools',
|
||||
'centos-release-ovirt44',
|
||||
'centos-release-samba411',
|
||||
'centos-release-samba412',
|
||||
'centos-release-samba413',
|
||||
'centos-release-samba414',
|
||||
'centos-release-samba415',
|
||||
'centos-release-samba416',
|
||||
'centos-release-samba417',
|
||||
'centos-release-storage-common',
|
||||
'centos-release-virt-common',
|
||||
'centos-release-messaging',
|
||||
'centos-release-qpid-proton',
|
||||
'centos-release-rabbitmq-38'
|
||||
],
|
||||
}),
|
||||
|
||||
('^extras$', {
|
||||
'x86_64': [
|
||||
'elrepo-release',
|
||||
],
|
||||
'aarch64': [
|
||||
'rocky-release-altarch',
|
||||
"rocky-release-rpi",
|
||||
"LibRaw",
|
||||
"LibRaw-devel",
|
||||
"alsa-sof-firmware",
|
||||
"autocorr-af",
|
||||
"autocorr-bg",
|
||||
"autocorr-ca",
|
||||
"autocorr-cs",
|
||||
"autocorr-da",
|
||||
"autocorr-de",
|
||||
"autocorr-en",
|
||||
"autocorr-es",
|
||||
"autocorr-fa",
|
||||
"autocorr-fi",
|
||||
"autocorr-fr",
|
||||
"autocorr-ga",
|
||||
"autocorr-hr",
|
||||
"autocorr-hu",
|
||||
"autocorr-is",
|
||||
"autocorr-it",
|
||||
"autocorr-ja",
|
||||
"autocorr-ko",
|
||||
"autocorr-lb",
|
||||
"autocorr-lt",
|
||||
"autocorr-mn",
|
||||
"autocorr-nl",
|
||||
"autocorr-pl",
|
||||
"autocorr-pt",
|
||||
"autocorr-ro",
|
||||
"autocorr-ru",
|
||||
"autocorr-sk",
|
||||
"autocorr-sl",
|
||||
"autocorr-sr",
|
||||
"autocorr-sv",
|
||||
"autocorr-tr",
|
||||
"autocorr-vi",
|
||||
"autocorr-zh",
|
||||
"brasero",
|
||||
"brasero-nautilus",
|
||||
"cheese",
|
||||
"edk2-ovmf",
|
||||
"eog",
|
||||
"flute",
|
||||
"fprintd",
|
||||
"fprintd-pam",
|
||||
"gegl04",
|
||||
"gegl04-devel",
|
||||
"gfbgraph",
|
||||
"gnome-color-manager",
|
||||
"gnome-online-miners",
|
||||
"gnome-photos",
|
||||
"gnome-photos-tests",
|
||||
"gnome-video-effects",
|
||||
"gom",
|
||||
"grilo-plugins",
|
||||
"gupnp-av",
|
||||
"gupnp-dlna",
|
||||
"hexchat",
|
||||
"hexchat-devel",
|
||||
"hyperv-daemons-license",
|
||||
"hyperv-tools",
|
||||
"libreoffice-base",
|
||||
"libreoffice-calc",
|
||||
"libreoffice-core",
|
||||
"libreoffice-data",
|
||||
"libreoffice-draw",
|
||||
"libreoffice-emailmerge",
|
||||
"libreoffice-filters",
|
||||
"libreoffice-gdb-debug-support",
|
||||
"libreoffice-graphicfilter",
|
||||
"libreoffice-gtk3",
|
||||
"libreoffice-help-ar",
|
||||
"libreoffice-help-bg",
|
||||
"libreoffice-help-bn",
|
||||
"libreoffice-help-ca",
|
||||
"libreoffice-help-cs",
|
||||
"libreoffice-help-da",
|
||||
"libreoffice-help-de",
|
||||
"libreoffice-help-dz",
|
||||
"libreoffice-help-el",
|
||||
"libreoffice-help-en",
|
||||
"libreoffice-help-es",
|
||||
"libreoffice-help-et",
|
||||
"libreoffice-help-eu",
|
||||
"libreoffice-help-fi",
|
||||
"libreoffice-help-fr",
|
||||
"libreoffice-help-gl",
|
||||
"libreoffice-help-gu",
|
||||
"libreoffice-help-he",
|
||||
"libreoffice-help-hi",
|
||||
"libreoffice-help-hr",
|
||||
"libreoffice-help-hu",
|
||||
"libreoffice-help-id",
|
||||
"libreoffice-help-it",
|
||||
"libreoffice-help-ja",
|
||||
"libreoffice-help-ko",
|
||||
"libreoffice-help-lt",
|
||||
"libreoffice-help-lv",
|
||||
"libreoffice-help-nb",
|
||||
"libreoffice-help-nl",
|
||||
"libreoffice-help-nn",
|
||||
"libreoffice-help-pl",
|
||||
"libreoffice-help-pt-BR",
|
||||
"libreoffice-help-pt-PT",
|
||||
"libreoffice-help-ro",
|
||||
"libreoffice-help-ru",
|
||||
"libreoffice-help-si",
|
||||
"libreoffice-help-sk",
|
||||
"libreoffice-help-sl",
|
||||
"libreoffice-help-sv",
|
||||
"libreoffice-help-ta",
|
||||
"libreoffice-help-tr",
|
||||
"libreoffice-help-uk",
|
||||
"libreoffice-help-zh-Hans",
|
||||
"libreoffice-help-zh-Hant",
|
||||
"libreoffice-impress",
|
||||
"libreoffice-langpack-af",
|
||||
"libreoffice-langpack-ar",
|
||||
"libreoffice-langpack-as",
|
||||
"libreoffice-langpack-bg",
|
||||
"libreoffice-langpack-bn",
|
||||
"libreoffice-langpack-br",
|
||||
"libreoffice-langpack-ca",
|
||||
"libreoffice-langpack-cs",
|
||||
"libreoffice-langpack-cy",
|
||||
"libreoffice-langpack-da",
|
||||
"libreoffice-langpack-de",
|
||||
"libreoffice-langpack-dz",
|
||||
"libreoffice-langpack-el",
|
||||
"libreoffice-langpack-en",
|
||||
"libreoffice-langpack-es",
|
||||
"libreoffice-langpack-et",
|
||||
"libreoffice-langpack-eu",
|
||||
"libreoffice-langpack-fa",
|
||||
"libreoffice-langpack-fi",
|
||||
"libreoffice-langpack-fr",
|
||||
"libreoffice-langpack-ga",
|
||||
"libreoffice-langpack-gl",
|
||||
"libreoffice-langpack-gu",
|
||||
"libreoffice-langpack-he",
|
||||
"libreoffice-langpack-hi",
|
||||
"libreoffice-langpack-hr",
|
||||
"libreoffice-langpack-hu",
|
||||
"libreoffice-langpack-id",
|
||||
"libreoffice-langpack-it",
|
||||
"libreoffice-langpack-ja",
|
||||
"libreoffice-langpack-kk",
|
||||
"libreoffice-langpack-kn",
|
||||
"libreoffice-langpack-ko",
|
||||
"libreoffice-langpack-lt",
|
||||
"libreoffice-langpack-lv",
|
||||
"libreoffice-langpack-mai",
|
||||
"libreoffice-langpack-ml",
|
||||
"libreoffice-langpack-mr",
|
||||
"libreoffice-langpack-nb",
|
||||
"libreoffice-langpack-nl",
|
||||
"libreoffice-langpack-nn",
|
||||
"libreoffice-langpack-nr",
|
||||
"libreoffice-langpack-nso",
|
||||
"libreoffice-langpack-or",
|
||||
"libreoffice-langpack-pa",
|
||||
"libreoffice-langpack-pl",
|
||||
"libreoffice-langpack-pt-BR",
|
||||
"libreoffice-langpack-pt-PT",
|
||||
"libreoffice-langpack-ro",
|
||||
"libreoffice-langpack-ru",
|
||||
"libreoffice-langpack-si",
|
||||
"libreoffice-langpack-sk",
|
||||
"libreoffice-langpack-sl",
|
||||
"libreoffice-langpack-sr",
|
||||
"libreoffice-langpack-ss",
|
||||
"libreoffice-langpack-st",
|
||||
"libreoffice-langpack-sv",
|
||||
"libreoffice-langpack-ta",
|
||||
"libreoffice-langpack-te",
|
||||
"libreoffice-langpack-th",
|
||||
"libreoffice-langpack-tn",
|
||||
"libreoffice-langpack-tr",
|
||||
"libreoffice-langpack-ts",
|
||||
"libreoffice-langpack-uk",
|
||||
"libreoffice-langpack-ve",
|
||||
"libreoffice-langpack-xh",
|
||||
"libreoffice-langpack-zh-Hans",
|
||||
"libreoffice-langpack-zh-Hant",
|
||||
"libreoffice-langpack-zu",
|
||||
"libreoffice-math",
|
||||
"libreoffice-ogltrans",
|
||||
"libreoffice-opensymbol-fonts",
|
||||
"libreoffice-pdfimport",
|
||||
"libreoffice-pyuno",
|
||||
"libreoffice-sdk",
|
||||
"libreoffice-sdk-doc",
|
||||
"libreoffice-ure",
|
||||
"libreoffice-ure-common",
|
||||
"libreoffice-voikko",
|
||||
"libreoffice-wiki-publisher",
|
||||
"libreoffice-writer",
|
||||
"libreoffice-x11",
|
||||
"libreoffice-xsltfilter",
|
||||
"libreofficekit",
|
||||
"libabw",
|
||||
"libbase",
|
||||
"libcdr",
|
||||
"libcmis",
|
||||
"libdmapsharing",
|
||||
"libexttextcat",
|
||||
"libfonts",
|
||||
"libformula",
|
||||
"libfprint",
|
||||
"libfreehand",
|
||||
"liblayout",
|
||||
"libloader",
|
||||
"libmediaart",
|
||||
"libmspub",
|
||||
"libmwaw",
|
||||
"liborcus",
|
||||
"libpagemaker",
|
||||
"libqxp",
|
||||
"librepository",
|
||||
"libserializer",
|
||||
"libstaroffice",
|
||||
"libzmf",
|
||||
"lpsolve",
|
||||
"mesa-vulkan-drivers",
|
||||
"pidgin",
|
||||
"pidgin-devel",
|
||||
"pidgin-sipe",
|
||||
"redhat-menus",
|
||||
"rhythmbox",
|
||||
"sac",
|
||||
"seabios-bin",
|
||||
"seavgabios-bin",
|
||||
"sgabios-bin",
|
||||
"spice-qxl-wddm-dod",
|
||||
"syslinux-extlinux-nonlinux",
|
||||
"syslinux-nonlinux",
|
||||
"syslinux-tftpboot",
|
||||
"totem",
|
||||
"totem-nautilus",
|
||||
"virtio-win",
|
||||
]
|
||||
}),
|
||||
]
|
21
shared/gather.conf
Normal file
21
shared/gather.conf
Normal file
@ -0,0 +1,21 @@
|
||||
gather_backend = "dnf"
|
||||
check_deps = False
|
||||
|
||||
gather_method = {
|
||||
"^(?!(AppStream|PowerTools)).*$":{
|
||||
"comps": "deps"
|
||||
},
|
||||
"^(AppStream|PowerTools)$": "hybrid",
|
||||
}
|
||||
|
||||
hashed_directories = True
|
||||
gather_allow_reuse = True
|
||||
repoclosure_backend = "dnf"
|
||||
|
||||
gather_prepopulate = {
|
||||
'scm': 'file',
|
||||
'repo': GATHER_PREPOPULATE_REPO,
|
||||
'branch': GATHER_PREPOPULATE_BRANCH,
|
||||
'file': GATHER_PREPOPULATE_FILE,
|
||||
'command': GATHER_PREPOPULATE_COMMAND
|
||||
}
|
36
shared/general.conf
Normal file
36
shared/general.conf
Normal file
@ -0,0 +1,36 @@
|
||||
release_name = RELEASE_NAME
|
||||
release_short = RELEASE_SHORT
|
||||
release_version = RELEASE_VERSION
|
||||
version = VERSION
|
||||
|
||||
link_type = 'copy'
|
||||
productimg = False
|
||||
create_jigdo = False
|
||||
|
||||
comps_file = {
|
||||
'scm': 'git',
|
||||
'repo': COMPS_REPO,
|
||||
'branch': COMPS_BRANCH,
|
||||
'file': COMPS_FILE,
|
||||
'command': COMPS_COMMAND
|
||||
}
|
||||
|
||||
module_defaults_dir = {
|
||||
'scm': 'git',
|
||||
'repo': MODULE_DEFAULTS_REPO,
|
||||
'branch': MODULE_DEFAULTS_BRANCH,
|
||||
'dir': '.',
|
||||
}
|
||||
|
||||
variants_file = {
|
||||
'scm': 'git',
|
||||
'repo': VARIANTS_REPO,
|
||||
'branch': VARIANTS_BRANCH,
|
||||
'file': VARIANTS_FILE,
|
||||
}
|
||||
|
||||
extra_files = [
|
||||
("^.*$", {
|
||||
"*": EXTRA_FILES,
|
||||
}),
|
||||
]
|
@ -3,7 +3,7 @@ live_media = {
|
||||
'^Workstation$': [
|
||||
{
|
||||
'name': 'Rocky-Workstation-8',
|
||||
'version': '8.7',
|
||||
'version': '8.8',
|
||||
'arches': ['x86_64'],
|
||||
'kickstart': 'Rocky-8-Workstation.ks',
|
||||
'repo': ['BaseOS', 'AppStream', 'PowerTools', 'extras'],
|
15
shared/lookaside.conf
Normal file
15
shared/lookaside.conf
Normal file
@ -0,0 +1,15 @@
|
||||
variant_as_lookaside = [
|
||||
('AppStream', 'BaseOS'),
|
||||
('PowerTools', 'BaseOS'),
|
||||
('PowerTools', 'AppStream'),
|
||||
('HighAvailability', 'BaseOS'),
|
||||
('HighAvailability', 'AppStream'),
|
||||
("ResilientStorage", "BaseOS"),
|
||||
("ResilientStorage", "AppStream"),
|
||||
("RT", "BaseOS"),
|
||||
("RT", "AppStream"),
|
||||
("NFV", "BaseOS"),
|
||||
("NFV", "AppStream"),
|
||||
("Minimal", "BaseOS"),
|
||||
("Minimal", "AppStream"),
|
||||
]
|
34
shared/multilib.conf
Normal file
34
shared/multilib.conf
Normal file
@ -0,0 +1,34 @@
|
||||
# format: {arch|*: [packages]}
|
||||
|
||||
multilib = [
|
||||
('^.*$', {
|
||||
'x86_64': ['devel', 'runtime']
|
||||
}),
|
||||
]
|
||||
|
||||
multilib_blacklist = {
|
||||
"*": [
|
||||
"libvirt*",
|
||||
"java-*",
|
||||
"totem",
|
||||
"ocaml*",
|
||||
"fwupd*",
|
||||
"gcc-toolset-10-systemtap*",
|
||||
"gcc-toolset-10-dyninst-*",
|
||||
"sblim-gather*",
|
||||
],
|
||||
}
|
||||
|
||||
# format: {arch|*: [packages]}
|
||||
multilib_whitelist = {
|
||||
"*": [
|
||||
"valgrind",
|
||||
"papi",
|
||||
"gcc-toolset-9-valgrind",
|
||||
"gcc-toolset-10-valgrind",
|
||||
"gcc-toolset-11-valgrind",
|
||||
"p11-kit-trust",
|
||||
"glibc-gconv-extra",
|
||||
"gcc-toolset-12-libgccjit",
|
||||
],
|
||||
}
|
5
shared/pkgset.conf
Normal file
5
shared/pkgset.conf
Normal file
@ -0,0 +1,5 @@
|
||||
pkgset_source = "koji"
|
||||
pkiset_koji_tag = PKGSET_KOJI_TAG
|
||||
pkiset_koji_module_tag = PKGSET_KOJI_TAG
|
||||
pkgset_koji_inherit = False
|
||||
pkgset_allow_reuse = True
|
10
shared/runroot.conf
Normal file
10
shared/runroot.conf
Normal file
@ -0,0 +1,10 @@
|
||||
runroot = True
|
||||
|
||||
global_runroot_method = "koji"
|
||||
|
||||
runroot_method = {
|
||||
"createiso": "local"
|
||||
}
|
||||
|
||||
runroot_channel = RUNROOT_CHANNEL
|
||||
runroot_tag = RUNROOT_TAG
|
37
shared/variables.conf
Normal file
37
shared/variables.conf
Normal file
@ -0,0 +1,37 @@
|
||||
global RELEASE_NAME
|
||||
global RELEASE_SHORT
|
||||
global RELEASE_VERSION
|
||||
global PKGSET_KOJI_TAG
|
||||
global PKGSET_KOJI_MODULE_TAG
|
||||
global RUNROOT_CHANNEL
|
||||
global RUNROOT_TAG
|
||||
global RELEASE_VERSION
|
||||
global RELEASE_VERSION_X
|
||||
global RELEASE_VERSION_Y
|
||||
global RELEASE_VERSION_Z
|
||||
global RELEASE_VERSION_XY
|
||||
global RELEASE_VERSION_XYZ
|
||||
global COMPS_REPO
|
||||
global COMPS_BRANCH
|
||||
global COMPS_FILE
|
||||
global COMPS_COMMAND
|
||||
global MODULE_DEFAULTS_REPO
|
||||
global MODULE_DEFAULTS_BRANCH
|
||||
global VARIANTS_REPO
|
||||
global VARIANTS_BRANCH
|
||||
global VARIANTS_FILE
|
||||
global GATHER_PREPOPULATE_REPO
|
||||
global GATHER_PREPOPULATE_BRANCH
|
||||
global GATHER_PREPOPULATE_FILE
|
||||
global EXTRA_BUILDINSTALL_SKIP
|
||||
EXTRA_BUILDINSTALL_SKIP = ("^$", {"*": False})
|
||||
global GATHER_PREPOPULATE_REPO
|
||||
global GATHER_PREPOPULATE_BRANCH
|
||||
global GATHER_PREPOPULATE_FILE
|
||||
global GATHER_PREPOPULATE_COMMAND
|
||||
global EXTRA_FILES
|
||||
EXTRA_FILES = []
|
||||
global EXTRA_ISOS_ARCHES
|
||||
EXTRA_ISOS_ARCHES = []
|
||||
global IMAGE_BUILD_SCRATCH
|
||||
IMAGE_BUILD_SCRATCH = False
|
Loading…
Reference in New Issue
Block a user