mohanboddu / centos / pungi-centos

Forked from centos/pungi-centos 4 years ago
Clone
Brian Stinson 2f13b1
filter_packages = [
Brian Stinson c7600a
    ("^(BaseOS|AppStream|HighAvailability|NFV|RT|ResilientStorage)$", {
Brian Stinson 2f13b1
        "*": [
Brian Stinson 8d0e1b
            "centos-linux-repos", # We want to force-exclude centos-linux repos from the resolver otherwise this lands in BaseOS and centos-stream-repos lands in AppStream
3f4044
            "python36",
3f4044
            "gcc-toolset-9-*-testsuite",
3f4044
            "gcc-toolset-9-gcc-plugin-devel",
3f4044
            "tuned-profiles-sap",
3f4044
            "tuned-profiles-sap-hana",
3f4044
            "java-1.8.0-openjdk-headless-slowdebug",
3f4044
            "java-1.8.0-openjdk-slowdebug",
Brian Stinson 2f13b1
        ]
Brian Stinson 2f13b1
    }),
Brian Stinson 2f13b1
Brian Stinson c7600a
    ("^BaseOS$", {
Brian Stinson 2f13b1
        "*": [
Brian Stinson c7600a
            "compat-openssl10-devel",  
Brian Stinson c7600a
            "compat-openssl10-pkcs11-helper",  
Brian Stinson c7600a
            "openldap-servers-debuginfo",  
Brian Stinson c7600a
            "ongres-scram",  
Brian Stinson 2f13b1
        ]
Brian Stinson 2f13b1
    }),
Brian Stinson 2f13b1
Brian Stinson c7600a
    ("^RT$", {
Brian Stinson 2f13b1
        "*": [
Brian Stinson c7600a
            "kernel-rt-kvm-debuginfo",  
Brian Stinson c7600a
            "kernel-rt-debug-kvm-debuginfo",  
Brian Stinson 2f13b1
        ]
Brian Stinson 2f13b1
    }),
James Antill 1de7be
Brian Stinson c7600a
    ("^.*$", {
James Antill 1de7be
        "*": [
Brian Stinson c7600a
            "kernel-*-internal",  
3f4044
            "kpatch-patch-*-internal",
3f4044
            "java-11-openjdk-*slowdebug*",
James Antill 1de7be
        ]
James Antill 1de7be
    }),
Brian Stinson 2f13b1
]
Brian Stinson 2f13b1
Brian Stinson 2f13b1
additional_packages = [
Brian Stinson 2f13b1
    ("^AppStream$", {
Brian Stinson 2f13b1
        "*": [
Brian Stinson c7600a
            "libasan5", 
Brian Stinson c7600a
            "libubsan1",
3f4044
            "dotnet5.0",
3f4044
            "gcc-toolset-10-dyninst-devel",
Brian Stinson c7600a
            "gnome-software-editor",
Brian Stinson c7600a
            "pipewire-docs",
3f4044
            "rt-tests",
3f4044
            "micropipenv",
9cfc91
            "nispor",
9cfc91
            "nispor-devel",
9cfc91
            "python3-nispor",
9cfc91
            "libnumbertext",
9cfc91
            "dotnet-sdk-3.1",
9cfc91
            "perl-IO-String",
9cfc91
            "dejavu-lgc-sans-fonts",
9cfc91
            "xorg-x11-drivers",
9cfc91
            "fstrm",
9cfc91
            "ucx-cma",
9cfc91
            "ucx-ib",
9cfc91
            "ucx-rdmacm"
9cfc91
            "ucx-devel",
9cfc91
            "mpich-doc",
9cfc91
            "mvapich2-devel",
9cfc91
            "mvapich2-psm2-devel",
9cfc91
            "mvapich2-doc",
9cfc91
            "libecpg",
9cfc91
            "rsyslog-udpspoof",
9cfc91
            "mysql-selinux",
Brian Stinson 2f13b1
        ]
Brian Stinson 2f13b1
    }),
Brian Stinson 2f13b1
Brian Stinson 2f13b1
    ("^BaseOS$", {
Brian Stinson 2f13b1
        "*": [
3f4044
            "python3-debuginfo",
9cfc91
            "python3-pyverbs",
9cfc91
            "syslinux-tftpboot",
9cfc91
            "samba-winexe",
Brian Stinson c7600a
        ]
Brian Stinson 2f13b1
    }),
368dac
    ("^BaseOS$", {
368dac
        "x86_64": [
368dac
            # Keep alsa-sof-firmware synchronized with
368dac
            # alsa-sof-firmware in the comps file
368dac
            "alsa-sof-firmware-debug",
368dac
        ],
368dac
    }),
Brian Stinson c7600a
Brian Stinson c7600a
    ("^Buildroot$", {
Brian Stinson c7600a
        "*": [
Brian Stinson c7600a
            "*",
Brian Stinson c7600a
        ]
Brian Stinson c7600a
    })
Brian Stinson 2f13b1
]