From d7ff4f52962fd4cb89ecc49619b9e20223e9e428 Mon Sep 17 00:00:00 2001 From: Brian Stinson Date: Jul 03 2019 14:04:58 +0000 Subject: filter and include some packages --- diff --git a/c8.conf b/c8.conf index 6d85024..88fbd82 100644 --- a/c8.conf +++ b/c8.conf @@ -1,4 +1,5 @@ from multilib import * +from include-excludes import * # PRODUCT INFO release_name = "CentOS Linux" diff --git a/include-excludes.conf b/include-excludes.conf new file mode 100644 index 0000000..3b6040e --- /dev/null +++ b/include-excludes.conf @@ -0,0 +1,38 @@ +filter_packages = [ + ("^(BaseOS|AppStream)$", { + "*": [ + "python36", + ] + }), + + ("^BaseOS$", { + "*": [ + "compat-openssl10-devel", + "compat-openssl10-pkcs11-helper", + "openldap-servers-debuginfo", + "ongres-scram", + ] + }), +] + +additional_packages = [ + ("^AppStream$", { + "*": [ + "langpacks-*", + ] + }), + + ("^AppStream$", { + "x86_64": [ + + "libreoffice-langpack-*", + "libreoffice-help-*", + ] + }), + + ("^BaseOS$", { + "*": [ + "kernel-doc", + ] + }), +]