From 2e6e757b1c7fbad868bb7c7e4597dcc7a349e7cf Mon Sep 17 00:00:00 2001 From: suvari Date: Thu, 3 Jul 2025 16:36:21 +0300 Subject: [PATCH] 25.2.4.3 --- office/libreoffice/libreoffice/actions.py | 3 + .../files/fix_build_with_poppler_25.05.patch | 39 +++ .../files/libreoffice-25.2-cflags.patch | 3 +- .../files/libreoffice.gpgme-1.18.0.patch | 47 ++++ .../files/libreoffice.lxml.gcc.patch | 17 ++ office/libreoffice/libreoffice/pspec.xml | 225 ++++++++++-------- 6 files changed, 230 insertions(+), 104 deletions(-) create mode 100644 office/libreoffice/libreoffice/files/fix_build_with_poppler_25.05.patch create mode 100644 office/libreoffice/libreoffice/files/libreoffice.gpgme-1.18.0.patch create mode 100644 office/libreoffice/libreoffice/files/libreoffice.lxml.gcc.patch diff --git a/office/libreoffice/libreoffice/actions.py b/office/libreoffice/libreoffice/actions.py index 199c772806..47e3fec610 100644 --- a/office/libreoffice/libreoffice/actions.py +++ b/office/libreoffice/libreoffice/actions.py @@ -31,6 +31,8 @@ def setup(): pisitools.cflags.add("-g2") pisitools.cxxflags.add("-g2") + + # shelltools.export("LDFLAGS", "%s" % get.LDFLAGS()) # http://site.icu-project.org/download/61#TOC-Migration-Issues pisitools.cxxflags.add("-DU_USING_ICU_NAMESPACE=1") @@ -70,6 +72,7 @@ def setup(): --with-java \ --with-system-libs \ --with-system-argon2 \ + --with-system-gpgmepp \ --without-system-dicts \ --without-fonts \ --without-system-altlinuxhyph \ diff --git a/office/libreoffice/libreoffice/files/fix_build_with_poppler_25.05.patch b/office/libreoffice/libreoffice/files/fix_build_with_poppler_25.05.patch new file mode 100644 index 0000000000..ac6263a104 --- /dev/null +++ b/office/libreoffice/libreoffice/files/fix_build_with_poppler_25.05.patch @@ -0,0 +1,39 @@ +From 0ee2636304ac049f21415c67e92040f7d6c14d35 Mon Sep 17 00:00:00 2001 +From: Xisco Fauli +Date: Mon, 5 May 2025 10:03:10 +0200 +Subject: poppler: uggrade to 25.05 + +Change-Id: Icd2b318cc01bedc5baeb4445a463a136ed6d7c48 +Reviewed-on: https://gerrit.libreoffice.org/c/core/+/184953 +Tested-by: Jenkins +Reviewed-by: Xisco Fauli +--- + sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx | 8 ++++++++ + 3 files changed, 17 insertions(+), 9 deletions(-) + +diff --git a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx +index dcc1932f7ad7..604ba3b7db2c 100644 +--- a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx ++++ b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx +@@ -1320,11 +1320,19 @@ poppler_bool PDFOutDev::tilingPatternFill(GfxState *state, Gfx *, Catalog *, + } + } + ++#if POPPLER_CHECK_VERSION(25, 5, 0) ++ std::unique_ptr pRgbStr(new MemStream(pBitmapData, 0, ++ nBitmapWidth * nBitmapHeight * 3, Object::null())); ++ std::unique_ptr pAlphaStr(new MemStream(reinterpret_cast(pSplashBitmap->getAlphaPtr()), ++ 0, nBitmapWidth * nBitmapHeight, Object::null())); ++ auto aDecode = Object::null(); ++#else + std::unique_ptr pRgbStr(new MemStream(pBitmapData, 0, + nBitmapWidth * nBitmapHeight * 3, Object(objNull))); + std::unique_ptr pAlphaStr(new MemStream(reinterpret_cast(pSplashBitmap->getAlphaPtr()), + 0, nBitmapWidth * nBitmapHeight, Object(objNull))); + auto aDecode = Object(objNull); ++#endif + #if POPPLER_CHECK_VERSION(24, 10, 0) + std::unique_ptr pRgbIdentityColorMap(new GfxImageColorMap(8, &aDecode, + std::make_unique())); +-- +cgit v1.2.3 diff --git a/office/libreoffice/libreoffice/files/libreoffice-25.2-cflags.patch b/office/libreoffice/libreoffice/files/libreoffice-25.2-cflags.patch index eea1bfbe0f..ae6bf93476 100644 --- a/office/libreoffice/libreoffice/files/libreoffice-25.2-cflags.patch +++ b/office/libreoffice/libreoffice/files/libreoffice-25.2-cflags.patch @@ -207,4 +207,5 @@ Some parts of the build will use e.g. -O2 -mtune=generic otherwise. -gb_COMPILEROPTFLAGS := -O2 +gb_COMPILEROPTFLAGS := - include $(GBUILDDIR)/platform/com_GCC_defs.mk \ No newline at end of file + include $(GBUILDDIR)/platform/com_GCC_defs.mk + \ No newline at end of file diff --git a/office/libreoffice/libreoffice/files/libreoffice.gpgme-1.18.0.patch b/office/libreoffice/libreoffice/files/libreoffice.gpgme-1.18.0.patch new file mode 100644 index 0000000000..e69d61eb09 --- /dev/null +++ b/office/libreoffice/libreoffice/files/libreoffice.gpgme-1.18.0.patch @@ -0,0 +1,47 @@ +https://bugs.gentoo.org/865321 +https://lists.freedesktop.org/archives/libreoffice/2022-August/089261.html +https://github.com/LibreOffice/core/commit/aa0b2b756c17d43d2e8c828a909ee2815e332377 + +From: Rene Engelhard +Date: Wed, 24 Aug 2022 09:55:33 +0200 +Subject: [PATCH] Make configure work with gpgme >= 1.18 +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Sam James wrote: +> gpgme-1.18.0 dropped a bunch of internal symbols, +> including progress_callback (see e.g. callbacks.h +> which has a comment at the top saying it's internal). + +Plausibly the workaround to not link against older KDE-specific distro +packages is not needed anymore. + +Check for main as a workaround as we do for other C++ libraries, too. + +Change-Id: I57065a5b5b23b9eadb73b01e4f3a289552c3bde4 +Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138667 +Tested-by: Jenkins +Reviewed-by: Sam James +Reviewed-by: René Engelhard +(cherry picked from commit b4a94d681a99a6a3eeb6aaa4d2f4dfab8f7c000b) +Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138553 +Tested-by: René Engelhard +--- a/configure.ac ++++ b/configure.ac +@@ -12537,12 +12537,11 @@ elif test \( \( "$_os" = "Linux" -o "$_os" = "Darwin" \) -a "$ENABLE_NSS" = TRUE + # C++ library doesn't come with fancy gpgmepp-config, check for headers the old-fashioned way + AC_CHECK_HEADER(gpgme++/gpgmepp_version.h, [ GPGMEPP_CFLAGS=-I/usr/include/gpgme++ ], + [AC_MSG_ERROR([gpgmepp headers not found, install gpgmepp >= 1.14 development package])], []) +- # progress_callback is the only func with plain C linkage +- # checking for it also filters out older, KDE-dependent libgpgmepp versions +- AC_CHECK_LIB(gpgmepp, progress_callback, [ GPGMEPP_LIBS=-lgpgmepp ], +- [AC_MSG_ERROR(gpgmepp not found or not functional)], []) + AC_CHECK_HEADER(gpgme.h, [], + [AC_MSG_ERROR([gpgme headers not found, install gpgme development package])], []) ++ AC_CHECK_LIB(gpgmepp, main, [], ++ [AC_MSG_ERROR(gpgmepp not found or not functional)], []) ++ GPGMEPP_LIBS=-lgpgmepp + else + AC_MSG_RESULT([internal]) + BUILD_TYPE="$BUILD_TYPE LIBGPGERROR LIBASSUAN GPGMEPP" \ No newline at end of file diff --git a/office/libreoffice/libreoffice/files/libreoffice.lxml.gcc.patch b/office/libreoffice/libreoffice/files/libreoffice.lxml.gcc.patch new file mode 100644 index 0000000000..65bf199cb9 --- /dev/null +++ b/office/libreoffice/libreoffice/files/libreoffice.lxml.gcc.patch @@ -0,0 +1,17 @@ +--- libreoffice-25.2.1.2/external/lxml/ExternalProject_lxml.mk.orig 2025-02-23 10:58:03.000000000 -0800 ++++ libreoffice-25.2.1.2/external/lxml/ExternalProject_lxml.mk 2025-03-02 13:04:43.873380618 -0800 +@@ -27,11 +27,13 @@ + export PYTHONPATH=$${PYTHONPATH:+$$PYTHONPATH:}$(gb_UnpackedTarball_workdir)/lxml/install && \ + $(if $(PYTHON_FOR_BUILD), \ + unset MACOSX_DEPLOYMENT_TARGET && , \ ++ CC="gcc" && \ ++ CXX="g++" && \ + CFLAGS="$$CFLAGS -I$(gb_UnpackedTarball_workdir)/python3" && \ + CFLAGS="$$CFLAGS -I$(gb_UnpackedTarball_workdir)/python3/Include" && \ + LDFLAGS="$$LDFLAGS -L$(gb_UnpackedTarball_workdir)/python3" && \ + _PYTHON_PROJECT_BASE=$(gb_UnpackedTarball_workdir)/python3 && \ +- export CFLAGS LDFLAGS _PYTHON_PROJECT_BASE && ) \ ++ export CC CXX CFLAGS LDFLAGS _PYTHON_PROJECT_BASE && ) \ + $(lxml_PYTHON) -Wi setup.py build \ + $(if $(SYSTEM_LIBXML),,--with-xml2-config=$(gb_UnpackedTarball_workdir)/libxml2/xml2-config) \ + $(if $(SYSTEM_LIBXSLT),,--with-xslt-config=$(gb_UnpackedTarball_workdir)/libxslt/xslt-config) && \ \ No newline at end of file diff --git a/office/libreoffice/libreoffice/pspec.xml b/office/libreoffice/libreoffice/pspec.xml index 3d2c93c7cb..ddee96efc4 100644 --- a/office/libreoffice/libreoffice/pspec.xml +++ b/office/libreoffice/libreoffice/pspec.xml @@ -13,116 +13,127 @@ app:gui LibreOffice office suite LibreOffice is an open source, multi-platform office productivity suite. It includes key desktop applications such as a word processor, a spreadsheet application, a presentation creator-viewer, a formula editor and a drawing program, with a user interface and feature set similar to other office suites. Sophisticated and flexible, LibreOffice also works transparently with a variety of file formats, including those of Microsoft Office. - http://download.documentfoundation.org/libreoffice/src/25.2.1/libreoffice-25.2.1.2.tar.xz - http://download.documentfoundation.org/libreoffice/src/25.2.1/libreoffice-dictionaries-25.2.1.2.tar.xz - http://download.documentfoundation.org/libreoffice/src/25.2.1/libreoffice-help-25.2.1.2.tar.xz - http://download.documentfoundation.org/libreoffice/src/25.2.1/libreoffice-translations-25.2.1.2.tar.xz + http://download.documentfoundation.org/libreoffice/src/25.2.4/libreoffice-25.2.4.3.tar.xz + http://download.documentfoundation.org/libreoffice/src/25.2.4/libreoffice-dictionaries-25.2.4.3.tar.xz + http://download.documentfoundation.org/libreoffice/src/25.2.4/libreoffice-help-25.2.4.3.tar.xz + http://download.documentfoundation.org/libreoffice/src/25.2.4/libreoffice-translations-25.2.4.3.tar.xz - - http://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip - - - http://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip - http://dev-www.libreoffice.org/src/commons-logging-1.2-src.tar.gz - http://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip - http://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip - http://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip - http://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip - http://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip - http://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip - http://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip - http://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip - http://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip - http://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz - - - https://dev-www.libreoffice.org/src/language-subtag-registry-2024-11-19.tar.bz2 - http://dev-www.libreoffice.org/src/collada2gltf-master-6258611a6a.tar.bz2 - http://dev-www.libreoffice.org/src/OpenCOLLADA-master-6509aa13af.tar.bz2 - https://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip - https://dev-www.libreoffice.org/src/62c0b97e94fe47d5e50ff605d2edf37a-hsqldb-2.3.3.zip - http://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip - http://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip - - https://dev-www.libreoffice.org/src/liborcus-0.19.2.tar.xz - https://dev-www.libreoffice.org/src/liborcus-0.20.0.tar.xz - http://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip - https://dev-www.libreoffice.org/src/bsh-2.1.1-src.zip - http://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz - https://dev-www.libreoffice.org/src/libabw-0.1.3.tar.xz - https://dev-www.libreoffice.org/src/libcmis-0.6.1.tar.xz - https://dev-www.libreoffice.org/src/libcmis-0.6.2.tar.xz - https://dev-www.libreoffice.org/src/libnumbertext-1.0.11.tar.xz - - - https://dev-www.libreoffice.org/src/lxml-5.3.0.tar.gz - http://dev-www.libreoffice.org/src/libexttextcat-3.4.6.tar.xz - https://dev-www.libreoffice.org/src/libexttextcat-3.4.7.tar.xz - https://dev-www.libreoffice.org/src/libmwaw-0.3.21.tar.xz - https://dev-www.libreoffice.org/src/libmwaw-0.3.22.tar.xz - http://dev-www.libreoffice.org/src/libstaroffice-0.0.7.tar.xz - - https://dev-www.libreoffice.org/src/libe-book-0.1.3.tar.xz - https://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz - - http://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz - https://dev-www.libreoffice.org/src/lp_solve_5.5.2.11.tar.gz - https://dev-www.libreoffice.org/src/mythes-1.2.5.tar.xz - https://dev-www.libreoffice.org/src/pdfium-7012.tar.bz2 - https://dev-www.libreoffice.org/src/pdfium-6425.tar.bz2 - https://dev-www.libreoffice.org/src/pdfium-6764.tar.bz2 - https://dev-www.libreoffice.org/src/pdfium-6887.tar.bz2 - https://dev-www.libreoffice.org/src/frozen-1.1.1.tar.gz - https://dev-www.libreoffice.org/src/frozen-1.2.0.tar.gz - https://dev-www.libreoffice.org/src/QR-Code-generator-1.4.0.tar.gz - https://dev-www.libreoffice.org/src/Firebird-3.0.7.33374-0.tar.bz2 - https://dev-www.libreoffice.org/src/Firebird-5.0.0.1306-0-source.tar.xz - https://dev-www.libreoffice.org/src/CoinMP-1.8.4.tgz - - https://dev-www.libreoffice.org/src/ltm-1.3.0.tar.xz - https://dev-www.libreoffice.org/src/box2d-2.4.1.tar.gz - https://dev-www.libreoffice.org/src/dtoa-20180411.tgz - https://dev-www.libreoffice.org/src/a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz - - https://dev-www.libreoffice.org/src/mariadb-connector-c-3.3.8-src.tar.gz - - https://dev-www.libreoffice.org/src/skia-m130-3c64459d5df2fa9794b277f0959ed8a92552bf4c.tar.xz - - https://dev-www.libreoffice.org/src/libcuckoo-93217f8d391718380c508a722ab9acd5e9081233.tar.gz - https://dev-www.libreoffice.org/extern/884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf - https://dev-www.libreoffice.org/extern/f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf - https://dev-www.libreoffice.org/src/b7cae45ad2c23551fd6ccb8ae2c1f59e-numbertext_0.9.5.oxt - https://dev-www.libreoffice.org/src/libnumbertext-1.0.11.tar.xz + + http://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip + + + http://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip + http://dev-www.libreoffice.org/src/commons-logging-1.2-src.tar.gz + http://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip + http://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip + http://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip + http://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip + http://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip + http://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip + http://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip + http://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip + http://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip + http://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz + + + + https://dev-www.libreoffice.org/src/language-subtag-registry-2025-05-15.tar.bz2 + http://dev-www.libreoffice.org/src/collada2gltf-master-6258611a6a.tar.bz2 + http://dev-www.libreoffice.org/src/OpenCOLLADA-master-6509aa13af.tar.bz2 + https://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip + + + http://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip + http://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip + + + https://dev-www.libreoffice.org/src/liborcus-0.20.0.tar.xz + https://dev-www.libreoffice.org/src/liborcus-0.20.1.tar.xz + http://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip + https://dev-www.libreoffice.org/src/bsh-2.1.1-src.zip + http://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz + https://dev-www.libreoffice.org/src/libabw-0.1.3.tar.xz + https://dev-www.libreoffice.org/src/libcmis-0.6.1.tar.xz + https://dev-www.libreoffice.org/src/libcmis-0.6.2.tar.xz + https://dev-www.libreoffice.org/src/libnumbertext-1.0.11.tar.xz + + + + https://dev-www.libreoffice.org/src/lxml-5.4.0.tar.gz + http://dev-www.libreoffice.org/src/libexttextcat-3.4.6.tar.xz + https://dev-www.libreoffice.org/src/libexttextcat-3.4.7.tar.xz + https://dev-www.libreoffice.org/src/libmwaw-0.3.21.tar.xz + https://dev-www.libreoffice.org/src/libmwaw-0.3.22.tar.xz + http://dev-www.libreoffice.org/src/libstaroffice-0.0.7.tar.xz + + https://dev-www.libreoffice.org/src/libe-book-0.1.3.tar.xz + https://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz + + http://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz + https://dev-www.libreoffice.org/src/lp_solve_5.5.2.11.tar.gz + https://dev-www.libreoffice.org/src/mythes-1.2.5.tar.xz + + + https://dev-www.libreoffice.org/src/pdfium-6764.tar.bz2 + + https://dev-www.libreoffice.org/src/pdfium-7188.tar.bz2 + https://dev-www.libreoffice.org/src/frozen-1.1.1.tar.gz + https://dev-www.libreoffice.org/src/frozen-1.2.0.tar.gz + https://dev-www.libreoffice.org/src/QR-Code-generator-1.4.0.tar.gz + https://dev-www.libreoffice.org/src/Firebird-3.0.7.33374-0.tar.bz2 + https://dev-www.libreoffice.org/src/Firebird-5.0.0.1306-0-source.tar.xz + https://dev-www.libreoffice.org/src/CoinMP-1.8.4.tgz + + https://dev-www.libreoffice.org/src/ltm-1.3.0.tar.xz + https://dev-www.libreoffice.org/src/box2d-2.4.1.tar.gz + https://dev-www.libreoffice.org/src/box2d-3.0.0.tar.gz + https://dev-www.libreoffice.org/src/dtoa-20180411.tgz + https://dev-www.libreoffice.org/src/a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz + + https://dev-www.libreoffice.org/src/mariadb-connector-c-3.3.8-src.tar.gz + + https://dev-www.libreoffice.org/src/skia-m130-3c64459d5df2fa9794b277f0959ed8a92552bf4c.tar.xz + https://dev-www.libreoffice.org/src/skia-m138-a46d5732d9fca93eaec23e502e2eef814b707e6b.tar.xz + + https://dev-www.libreoffice.org/src/libcuckoo-93217f8d391718380c508a722ab9acd5e9081233.tar.gz + https://dev-www.libreoffice.org/extern/884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf + https://dev-www.libreoffice.org/extern/f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf + https://dev-www.libreoffice.org/src/b7cae45ad2c23551fd6ccb8ae2c1f59e-numbertext_0.9.5.oxt + https://dev-www.libreoffice.org/src/libnumbertext-1.0.11.tar.xz - http://dev-www.libreoffice.org/extern/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar - https://dev-www.libreoffice.org/extern/a1adc7a47ed126ed029893c23c8bdd43-officeotron-0.7.4-master.jar - https://dev-www.libreoffice.org/src/dragonbox-1.1.3.tar.gz - - - https://dev-www.libreoffice.org/src/libxml2-2.13.5.tar.xz - - - https://dev-www.libreoffice.org/src/libwebp-1.5.0.tar.gz - - - https://dev-www.libreoffice.org/src/tiff-4.7.0.tar.xz - https://dev-www.libreoffice.org/src/zxcvbn-c-2.5.tar.gz - - - https://dev-www.libreoffice.org/src/Java-WebSocket-1.5.6.tar.gz - https://dev-www.libreoffice.org/src/Java-WebSocket-1.6.0.tar.gz - https://dev-www.libreoffice.org/src/phc-winner-argon2-20190702.tar.gz + http://dev-www.libreoffice.org/extern/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar + https://dev-www.libreoffice.org/extern/a1adc7a47ed126ed029893c23c8bdd43-officeotron-0.7.4-master.jar + https://dev-www.libreoffice.org/src/dragonbox-1.1.3.tar.gz + + + + https://dev-www.libreoffice.org/src/libxml2-2.14.3.tar.xz + + + https://dev-www.libreoffice.org/src/libwebp-1.5.0.tar.gz + + + https://dev-www.libreoffice.org/src/tiff-4.7.0.tar.xz + https://dev-www.libreoffice.org/src/zxcvbn-c-2.5.tar.gz + + + https://dev-www.libreoffice.org/src/Java-WebSocket-1.5.6.tar.gz + https://dev-www.libreoffice.org/src/Java-WebSocket-1.6.0.tar.gz + https://dev-www.libreoffice.org/src/phc-winner-argon2-20190702.tar.gz make-pyuno-work-with-system-wide-module-install.diff mdds-3.0.0.patch - fix_pdf_import_with_poppler_25.02.patch + + + libreoffice-24.8.4.2-icu76_fixes-1.patch - - + fix_build_with_poppler_25.05.patch + libreoffice-25.2-cflags.patch + @@ -202,7 +213,7 @@ attica-devel libassuan-devel libgpg-error-devel - gpgme-devel + gpgmepp-devel libepoxy-devel ccache zxing-cpp-devel @@ -264,6 +275,7 @@ llvm-clang-devel wget which + @@ -282,7 +294,7 @@ cairo expat glib2 - gpgme + gpgmepp icu4c lcms2 libSM @@ -3929,6 +3941,13 @@ + + 2025-06-30 + 25.2.4.3 + Version Bump + Kamil Atlı + suvari@pisilinux.org + 2025-03-01 25.2.1.2