bstinson / centos / pungi-centos

Forked from centos/pungi-centos 4 years ago
Clone
Blob Blame History Raw
filter_packages = [
    ("^(BaseOS|AppStream|HighAvailability|NFV|RT|ResilientStorage)$", {
        "*": [
            "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
            "python36",  # RCM-42305 - ursine python36 should be only in buildroot
            "gcc-toolset-9-*-testsuite", #RCM-58061
            "gcc-toolset-9-gcc-plugin-devel", #RCM-58061
            "tuned-profiles-sap",       # RCM-53604 - This should be only in SAP
            "tuned-profiles-sap-hana",  # RCM-53604 - This should be only in SAPHANA
            "java-*slowdebug*",              # Jira: RHELCMP-1407 Jira: RHELCMP-1512 Jira: RHELCMP-4189
            "java-*fastdebug*",              # Jira: RHELCMP-1407 Jira: RHELCMP-1512 Jira: RHELCMP-4189
        ]
    }),

    ("^BaseOS$", {
        "*": [
            "compat-openssl10-devel",  # RCM-26416
            "compat-openssl10-pkcs11-helper",  # RCM-28614
            "openldap-servers-debuginfo",  # RCM-28225
            "ongres-scram",  # RCM-31750
            "libcomps-devel", #RhBug 1960616
        ]
    }),

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

    ("^.*$", {
        "*": [
            "kernel-*-internal",  # RCM-54000
            "kpatch-patch-*-internal", # RHELCMP-991
            "scap-security-guide-rule-playbooks",
        ]
    }),
]

filter_modules = [
    ("^AppStream$", {
       "aarch64":
             [
             "eclipse:rhel8",
             ],
       "ppc64le":
             [
             "eclipse:rhel8",
             ],
       "s390x": [
             "eclipse:rhel8",
             ]
           }),
]

additional_packages = [
    ("^AppStream$", {
        "*": [
            "libasan5", #RCM-61474
            "libubsan1",
            "gnome-software-editor",
            "pipewire-docs",
	    "python3-pyghmi", #RHELCMP-6299 RhBug 1992470
            "gcc-toolset-11-annobin-annocheck-debuginfo", #RHELCMP-5799
            "gcc-toolset-11-annobin-debuginfo", #RHELCMP-5799
            "gcc-toolset-11-annobin-plugin-gcc-debuginfo", #RHELCMP-5799
            "sblim-gather", #RHBug 1970346, RHELCMP-5640
            "coreos-installer", #RHBug 1973159, RHELCMP-5730
            "ansible-collection-microsoft-sql", #RHBug 1974786, RHELCMP-5772
            "tesseract",
            "gcc-toolset-11-annobin-debuginfo", #RHELCMP-5799
            "gcc-toolset-11-gcc-gdb-plugin-debuginfo", #RHELCMP-5799
            "gcc-toolset-11-systemtap-server-debuginfo", #RHELCMP-5799
            "samba-vfs-iouring", #RhBug 1974792
            "sevctl", #RHBug 1986032, RHELCMP-6101
            "coreos-installer-bootinfra", #RHELCMP-6277
        ]
    }),
    ("^BaseOS$", {
        "*": [
            "centos-stream-repos",
            "python3-debuginfo", # RCM-73713
            "compat-hwloc1", #RhBug 1979150
        ]
    }),

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