mohanboddu / centos / pungi-centos

Forked from centos/pungi-centos 4 years ago
Clone
Blob Blame History Raw
filter_packages = [
    ("^(BaseOS|AppStream|HighAvailability|NFV|RT|ResilientStorage)$", {
        "*": [
            "python36",
            "gcc-toolset-9-*-testsuite",
            "gcc-toolset-9-gcc-plugin-devel",
            "tuned-profiles-sap",
            "tuned-profiles-sap-hana",
            "java-1.8.0-openjdk-headless-slowdebug",
            "java-1.8.0-openjdk-slowdebug",
        ]
    }),

    ("^BaseOS$", {
        "*": [
            "compat-openssl10-devel",  
            "compat-openssl10-pkcs11-helper",  
            "openldap-servers-debuginfo",  
            "ongres-scram",  
        ]
    }),

    ("^RT$", {
        "*": [
            "kernel-rt-kvm-debuginfo",  
            "kernel-rt-debug-kvm-debuginfo",  
        ]
    }),

    ("^.*$", {
        "*": [
            "kernel-*-internal",  
            "kpatch-patch-*-internal",
            "java-11-openjdk-*slowdebug*",
        ]
    }),
]

additional_packages = [
    ("^AppStream$", {
        "*": [
            "libasan5", 
            "libubsan1",
            "dotnet5.0",
            "gcc-toolset-10-dyninst-devel",
            "gnome-software-editor",
            "pipewire-docs",
            "rt-tests",
            "micropipenv",
        ]
    }),

    ("^BaseOS$", {
        "*": [
            "python3-debuginfo",
        ]
    }),
    ("^BaseOS$", {
        "x86_64": [
            # Keep alsa-sof-firmware synchronized with
            # alsa-sof-firmware in the comps file
            "alsa-sof-firmware-debug",
        ],
    }),

    ("^Buildroot$", {
        "*": [
            "*",
        ]
    })
]