From 4d38dc95d4039c074a9f18f94917c52b9f71ff68 Mon Sep 17 00:00:00 2001 From: suvari Date: Sun, 22 Feb 2026 06:29:40 +0300 Subject: [PATCH] libreoffice: version bump to 26.2.0.3 --- office/libreoffice/libreoffice/actions.py | 1 + .../libreoffice/files/poppler-26.02.patch | 143 ++++++++++ office/libreoffice/libreoffice/pspec.xml | 261 ++++++++++-------- 3 files changed, 286 insertions(+), 119 deletions(-) create mode 100644 office/libreoffice/libreoffice/files/poppler-26.02.patch diff --git a/office/libreoffice/libreoffice/actions.py b/office/libreoffice/libreoffice/actions.py index 42c6dde246..8d9d7dc642 100644 --- a/office/libreoffice/libreoffice/actions.py +++ b/office/libreoffice/libreoffice/actions.py @@ -74,6 +74,7 @@ def setup(): --with-system-gpgmepp \ --without-system-dicts \ --without-fonts \ + --without-system-afdko \ --without-system-altlinuxhyph \ --without-system-beanshell \ --without-system-box2d \ diff --git a/office/libreoffice/libreoffice/files/poppler-26.02.patch b/office/libreoffice/libreoffice/files/poppler-26.02.patch new file mode 100644 index 0000000000..e290912f01 --- /dev/null +++ b/office/libreoffice/libreoffice/files/poppler-26.02.patch @@ -0,0 +1,143 @@ +From 3c29b709cd2b5b18776b3c15638b66bd8a7dcb07 Mon Sep 17 00:00:00 2001 +From: Xisco Fauli +Date: Fri, 6 Feb 2026 00:53:12 +0100 +Subject: [PATCH] poppler: upgrade to 26.02.0 + +stripped of all the bundled update stuff ... + +--- + .../pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx | 22 +++++++++- + .../pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx | 21 +++++++++- + 2 files changed, 41 insertions(+), 2 deletions(-) + +diff --git a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx +index 6b9184809803d..f1487453eb503 100644 +--- a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx ++++ b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx +@@ -711,13 +711,17 @@ void PDFOutDev::restoreState(GfxState*) + printf( "restoreState\n" ); + } + +-#if POPPLER_CHECK_VERSION(0, 71, 0) ++#if POPPLER_CHECK_VERSION(26, 2, 0) ++void PDFOutDev::setDefaultCTM(const std::array &pMat) ++#elif POPPLER_CHECK_VERSION(0, 71, 0) + void PDFOutDev::setDefaultCTM(const double *pMat) + #else + void PDFOutDev::setDefaultCTM(double *pMat) + #endif + { ++#if !POPPLER_CHECK_VERSION(26, 2, 0) + assert(pMat); ++#endif + + OutputDev::setDefaultCTM(pMat); + +@@ -737,8 +741,12 @@ void PDFOutDev::updateCTM(GfxState* state, + { + assert(state); + ++#if POPPLER_CHECK_VERSION(26, 2, 0) ++ const std::array pMat = state->getCTM(); ++#else + const double* const pMat = state->getCTM(); + assert(pMat); ++#endif + + printf( "updateCtm %f %f %f %f %f %f\n", + normalize(pMat[0]), +@@ -1044,7 +1052,11 @@ void PDFOutDev::drawChar(GfxState *state, double x, double y, + + double csdx = 0.0; + double csdy = 0.0; ++#if POPPLER_CHECK_VERSION(26, 2, 0) ++ if (!state->getFont() || GfxFont::WritingMode::Horizontal == state->getFont()->getWMode()) ++#else + if (!state->getFont() || !state->getFont()->getWMode()) ++#endif + { + csdx = state->getCharSpace(); + if (*u == ' ') +@@ -1067,7 +1079,11 @@ void PDFOutDev::drawChar(GfxState *state, double x, double y, + const double aPositionX(x-originX); + const double aPositionY(y-originY); + ++#if POPPLER_CHECK_VERSION(26, 2, 0) ++ const std::array pTextMat=state->getTextMat(); ++#else + const double* pTextMat=state->getTextMat(); ++#endif + printf( "drawChar %f %f %f %f %f %f %f %f %f ", + normalize(aPositionX), + normalize(aPositionY), +@@ -1348,7 +1364,11 @@ poppler_bool PDFOutDev::tilingPatternFill(GfxState *state, Gfx *, Catalog *, + + const int nDPI = 72; // GfxState seems to have 72.0 as magic for some reason + auto pSplashGfxState = new GfxState(nDPI, nDPI, &aBox, 0, false); ++#if POPPLER_CHECK_VERSION(26, 2, 0) ++ auto pSplashOut = new SplashOutputDev(splashModeRGB8, 1, nullptr); ++#else + auto pSplashOut = new SplashOutputDev(splashModeRGB8, 1, false, nullptr); ++#endif + pSplashOut->setEnableFreeType(false); + pSplashOut->startDoc(m_pDoc); + pSplashOut->startPage(0 /* pageNum */, pSplashGfxState, nullptr /* xref */); +diff --git a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx +index b7bd912406b58..da587b1522d61 100644 +--- a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx ++++ b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx +@@ -85,13 +85,21 @@ namespace pdfi + isUnderline(rSrc.isUnderline), + size(rSrc.size) + { ++#if POPPLER_CHECK_VERSION(26, 2, 0) ++ familyName.append(rSrc.getFamilyName()); ++#else + familyName.append(&rSrc.getFamilyName()); ++#endif + } + + FontAttributes& operator=( const FontAttributes& rSrc ) + { + familyName.clear(); ++#if POPPLER_CHECK_VERSION(26, 2, 0) ++ familyName.append(rSrc.getFamilyName()); ++#else + familyName.append(&rSrc.getFamilyName()); ++#endif + + isEmbedded = rSrc.isEmbedded; + maFontWeight= rSrc.maFontWeight; +@@ -104,12 +112,21 @@ namespace pdfi + + bool operator==(const FontAttributes& rFont) const + { ++#if POPPLER_CHECK_VERSION(26, 2, 0) ++ return getFamilyName().compare(rFont.getFamilyName())==0 && ++ isEmbedded == rFont.isEmbedded && ++ maFontWeight == rFont.maFontWeight && ++ isItalic == rFont.isItalic && ++ isUnderline == rFont.isUnderline && ++ size == rFont.size; ++#else + return getFamilyName().cmp(&rFont.getFamilyName())==0 && + isEmbedded == rFont.isEmbedded && + maFontWeight == rFont.maFontWeight && + isItalic == rFont.isItalic && + isUnderline == rFont.isUnderline && + size == rFont.size; ++#endif + } + + GooString familyName; +@@ -172,7 +189,9 @@ namespace pdfi + //----- initialization and control + + // Set default transform matrix. +-#if POPPLER_CHECK_VERSION(0, 71, 0) ++#if POPPLER_CHECK_VERSION(26, 2, 0) ++void setDefaultCTM(const std::array &pMat) override; ++#elif POPPLER_CHECK_VERSION(0, 71, 0) + virtual void setDefaultCTM(const double *ctm) override; + #else + virtual void setDefaultCTM(double *ctm) override; \ No newline at end of file diff --git a/office/libreoffice/libreoffice/pspec.xml b/office/libreoffice/libreoffice/pspec.xml index 7185d19e40..4a4a10c3c9 100644 --- a/office/libreoffice/libreoffice/pspec.xml +++ b/office/libreoffice/libreoffice/pspec.xml @@ -13,134 +13,144 @@ 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. - https://download.documentfoundation.org/libreoffice/src/25.8.1/libreoffice-25.8.1.1.tar.xz - https://download.documentfoundation.org/libreoffice/src/25.8.1/libreoffice-dictionaries-25.8.1.1.tar.xz - https://download.documentfoundation.org/libreoffice/src/25.8.1/libreoffice-help-25.8.1.1.tar.xz - https://download.documentfoundation.org/libreoffice/src/25.8.1/libreoffice-translations-25.8.1.1.tar.xz + https://download.documentfoundation.org/libreoffice/src/26.2.0/libreoffice-26.2.0.3.tar.xz + https://download.documentfoundation.org/libreoffice/src/26.2.0/libreoffice-dictionaries-26.2.0.3.tar.xz + https://download.documentfoundation.org/libreoffice/src/26.2.0/libreoffice-help-26.2.0.3.tar.xz + https://download.documentfoundation.org/libreoffice/src/26.2.0/libreoffice-translations-26.2.0.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-2025-08-25.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.20.1.tar.xz - https://dev-www.libreoffice.org/src/liborcus-0.21.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-6.0.2.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-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-m136-28685d899b0a35894743e2cedad4c9f525e90e1e.tar.xz - https://dev-www.libreoffice.org/src/skia-m138-a46d5732d9fca93eaec23e502e2eef814b707e6b.tar.xz - https://dev-www.libreoffice.org/src/skia-m139-4abe0638e35d34b6fdb70f1f5ce0f0e1879a021e.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-08-25.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.20.1.tar.xz + https://dev-www.libreoffice.org/src/liborcus-0.21.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-6.0.2.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-7471.tar.bz2 + https://dev-www.libreoffice.org/src/pdfium-7691.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.4.8-src.tar.gz + + + + + + https://dev-www.libreoffice.org/src/skia-m142-f4ed99d2443962782cf5f8b4dd27179f131e7cbe.tar.xz + https://dev-www.libreoffice.org/src/skia-m145-2ab8add5be2c46eb6238f4c217f6d6dbc9bccd23.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.14.6.tar.xz - - - - https://dev-www.libreoffice.org/src/libwebp-1.6.0.tar.gz - - - - https://dev-www.libreoffice.org/src/tiff-4.7.1.tar.xz - - https://dev-www.libreoffice.org/src/zxcvbn-c-2.6.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/libeot-0.01.tar.bz2 + http://dev-www.libreoffice.org/extern/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar + + https://dev-www.libreoffice.org/extern/officeotron-0.8.8.jar + https://dev-www.libreoffice.org/src/dragonbox-1.1.3.tar.gz + + + + + + https://dev-www.libreoffice.org/src/libxml2-2.15.1.tar.xz + + + + https://dev-www.libreoffice.org/src/libwebp-1.6.0.tar.gz + + + + https://dev-www.libreoffice.org/src/tiff-4.7.1.tar.xz + + https://dev-www.libreoffice.org/src/zxcvbn-c-2.6.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/libeot-0.01.tar.bz2 + https://dev-www.libreoffice.org/src/antlr4-cpp-runtime-4.13.2-source.zip + https://dev-www.libreoffice.org/src/afdko-4.0.3.tar.gz make-pyuno-work-with-system-wide-module-install.diff - + poppler-26.02.patch + - libreoffice-24.8.4.2-icu76_fixes-1.patch - orcus-0.21.0.patch + + @@ -149,6 +159,9 @@ xz-devel ant + ant + ant + fast_float rhino gperf qt6-multimedia-devel @@ -156,6 +169,7 @@ cups-devel curl-devel glew-devel + md4c-devel libXt-devel lcms2-devel boost-devel @@ -189,7 +203,7 @@ gobject-introspection-devel graphite2-devel librevenge-devel - mesa-devel + mesa-devel neon-devel clucene-devel apr-devel @@ -302,6 +316,7 @@ dbus nspr zlib + md4c cairo expat glib2 @@ -681,6 +696,7 @@ /usr/lib/libreoffice/program/pagein-writer /usr/lib/libreoffice/program/swriter /usr/lib/libreoffice/program/libchart2lo.so + /usr/lib/libreoffice/program/libchart2apilo.so /usr/lib/libreoffice/share/classification/example.xml /usr/lib/libreoffice/share/fonts /usr/lib/libreoffice/share/calc @@ -3957,6 +3973,13 @@ + + 2026-02-18 + 26.2.0.3 + Version Bump + Kamil Atlı + suvari@pisilinux.org + 2025-09-28 25.8.1.1