bin/checkExternalLibraries.py |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit eb33bed51830fe99c21c9742e7cf6b00949940d5
Author:     Xisco Fauli <[email protected]>
AuthorDate: Tue Dec 30 12:24:19 2025 +0100
Commit:     Xisco Fauli <[email protected]>
CommitDate: Tue Dec 30 21:16:23 2025 +0100

    checkExternalLibraries: add culmus fonts
    
    Change-Id: Iae0969f9eec39452600458c798dae336ed0885c2
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/196329
    Tested-by: Jenkins
    Reviewed-by: Xisco Fauli <[email protected]>

diff --git a/bin/checkExternalLibraries.py b/bin/checkExternalLibraries.py
index 6f7580aa7398..a66679f92e6b 100755
--- a/bin/checkExternalLibraries.py
+++ b/bin/checkExternalLibraries.py
@@ -56,6 +56,7 @@ libraryNames = {
     "y-crdt": "y-crdt",
     "sqlite": "sqlite",
     "reemkufi": "aliftype-reem-kufi-fonts",
+    "culmus": "culmus-fonts",
 }
 
 def get_current_version(libName):
@@ -86,7 +87,8 @@ def get_library_list(fileName):
         if "JFREEREPORT_" in variableName:
             continue
 
-        if "FONT_" in variableName and "REEM" not in variableName and "NOTO" 
not in variableName:
+        if "FONT_" in variableName and "REEM" not in variableName and "NOTO" 
not in variableName and \
+                "CULMUS" not in variableName:
             continue
 
         libraryName = decodedName.split("=")[1]

Reply via email to