Merge pull request #18244 from suvari/master
libreoffice: version bump to 26.2.0.3
This commit is contained in:
@@ -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 \
|
||||
|
||||
@@ -0,0 +1,143 @@
|
||||
From 3c29b709cd2b5b18776b3c15638b66bd8a7dcb07 Mon Sep 17 00:00:00 2001
|
||||
From: Xisco Fauli <xiscofauli@libreoffice.org>
|
||||
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<double, 6> &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<double, 6> 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<double, 6> 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<double, 6> &pMat) override;
|
||||
+#elif POPPLER_CHECK_VERSION(0, 71, 0)
|
||||
virtual void setDefaultCTM(const double *ctm) override;
|
||||
#else
|
||||
virtual void setDefaultCTM(double *ctm) override;
|
||||
@@ -13,134 +13,144 @@
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>LibreOffice office suite</Summary>
|
||||
<Description>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.</Description>
|
||||
<Archive sha1sum="2932b740ecff17d36622bf618c76bf13e71bde3d" type="tarxz">https://download.documentfoundation.org/libreoffice/src/25.8.1/libreoffice-25.8.1.1.tar.xz</Archive>
|
||||
<Archive sha1sum="ba20c917e525decd570ad577d14fe4ad88158625" type="tarxz">https://download.documentfoundation.org/libreoffice/src/25.8.1/libreoffice-dictionaries-25.8.1.1.tar.xz</Archive>
|
||||
<Archive sha1sum="432f32a74324085255ce824a873d96e2a0437c00" type="tarxz">https://download.documentfoundation.org/libreoffice/src/25.8.1/libreoffice-help-25.8.1.1.tar.xz</Archive>
|
||||
<Archive sha1sum="fc85778ed45279eeeca89697bb1bf6de26af2e46" type="tarxz">https://download.documentfoundation.org/libreoffice/src/25.8.1/libreoffice-translations-25.8.1.1.tar.xz</Archive>
|
||||
<Archive sha1sum="aadec3af24870da411e694bd57dee7baef336d3a" type="tarxz">https://download.documentfoundation.org/libreoffice/src/26.2.0/libreoffice-26.2.0.3.tar.xz</Archive>
|
||||
<Archive sha1sum="8d0156ccedc9552d9193485a77d5562fd651d2fe" type="tarxz">https://download.documentfoundation.org/libreoffice/src/26.2.0/libreoffice-dictionaries-26.2.0.3.tar.xz</Archive>
|
||||
<Archive sha1sum="a7e5363249cc5548f252fdeb26b2e1c8bb0c2963" type="tarxz">https://download.documentfoundation.org/libreoffice/src/26.2.0/libreoffice-help-26.2.0.3.tar.xz</Archive>
|
||||
<Archive sha1sum="08d55c8d5f9f49c9a1fa486853e935d846cdb4ab" type="tarxz">https://download.documentfoundation.org/libreoffice/src/26.2.0/libreoffice-translations-26.2.0.3.tar.xz</Archive>
|
||||
<!--External build deps-->
|
||||
<!--Archive sha1sum="d6a33131929a735d202a60076e7fa665688815f4" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/xmlsec1-1.3.2.tar.gz</Archive-->
|
||||
<Archive sha1sum="1acea86fd399ed7817879d36370d3d1f8b109050" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip</Archive>
|
||||
<!-- <Archive sha1sum="8a90669029e107b61953b90ba11545fef586c2ca" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip</Archive> -->
|
||||
<!-- <Archive sha1sum="12f9d6c069d2d5e64efc9d0514efcaca50ef9e94" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/rhino-1.7.15.zip</Archive> -->
|
||||
<Archive sha1sum="2d49e11b0b711970f494294dc3698f05eb294853" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip</Archive>
|
||||
<Archive sha1sum="0a134d01e9aeb09b33f4c7450fb41abb7bed9db6" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/commons-logging-1.2-src.tar.gz</Archive>
|
||||
<Archive sha1sum="43a7ff11dd15370d456b20a093e1ee81279163a0" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip</Archive>
|
||||
<Archive sha1sum="b92930010622906778f713fb8f0153fa0683d018" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip</Archive>
|
||||
<Archive sha1sum="3232dd31859be4f7eb443c33e8e3287f394789a0" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip</Archive>
|
||||
<Archive sha1sum="47b58e0ef2d856df26372a7061ae43fae6e08051" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip</Archive>
|
||||
<Archive sha1sum="5ecb895ffc1eff2c381fa78d2197d0c57422b3df" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip</Archive>
|
||||
<Archive sha1sum="a637c0c3ad3be32d6814972e1c45e547c5f6359d" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip</Archive>
|
||||
<Archive sha1sum="e393beea80d36ff27b732882c706826988a64f5c" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip</Archive>
|
||||
<Archive sha1sum="b19ad429273abb116432eae3af955ecaf1ab5b17" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip</Archive>
|
||||
<Archive sha1sum="65dfba9970bb862d09c1f9e636b86b22f05d3936" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip</Archive>
|
||||
<Archive sha1sum="452eba922e4f41603539c9dc39947d2271e47093" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz</Archive>
|
||||
<!-- <Archive sha1sum="e07689a71cf40399b9f3a0447987fa7e95ea0bb0" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/language-subtag-registry-2023-08-02.tar.bz2</Archive> -->
|
||||
<!-- <Archive sha1sum="39dcb18cd2c4eb19ce36f08cedebb4a4ee976d54" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/language-subtag-registry-2024-06-14.tar.bz2</Archive> -->
|
||||
<!-- <Archive sha1sum="0f2e3f3a10acf6c123e32f54e3eac46b38c63b9d" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/language-subtag-registry-2024-11-19.tar.bz2</Archive> -->
|
||||
<Archive sha1sum="456e9fc5f4e00934de9158db41eca637474fda77" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/language-subtag-registry-2025-08-25.tar.bz2</Archive>
|
||||
<Archive sha1sum="6cc86629f8d276ab1c45c3f337674284fab4eff6" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/collada2gltf-master-6258611a6a.tar.bz2</Archive>
|
||||
<Archive sha1sum="c4f5760a1d21213dc52e2cf3ad9c0b9112585f36" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/OpenCOLLADA-master-6509aa13af.tar.bz2</Archive>
|
||||
<Archive sha1sum="7168b0f40aa5c72267899601c116d2348d2f56ec" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip</Archive>
|
||||
<Archive sha1sum="f5fce3d5eb21294f9ffba40c34e7c736ab64d6b9" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/62c0b97e94fe47d5e50ff605d2edf37a-hsqldb-2.3.3.zip</Archive>
|
||||
<!-- <Archive sha1sum="e3dc86cee3c4acc0b9083e6f38587b2c3646fd11" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://sourceforge.net/projects/hsqldb/files/hsqldb/hsqldb_2_7/hsqldb-2.7.4.zip</Archive> -->
|
||||
<Archive sha1sum="3478ebc27bb76025f4b5c2ae6a9bac6090e2cb09" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip</Archive>
|
||||
<Archive sha1sum="1acd76cd63f7b19f6a0252eb029c3cb13a25aa9b" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip</Archive>
|
||||
<!--Archive sha1sum="f945b23b7801a3601998973028a054ee379967cb" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/libfreehand-0.1.2.tar.xz</Archive-->
|
||||
<!-- <Archive sha1sum="e5309d5617599de4741d4f0e3e0fd9eb2f28aefd" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/liborcus-0.19.2.tar.xz</Archive> -->
|
||||
<!-- <Archive sha1sum="02aa178dd890a3a363cdb4152e76c765da084e87" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/liborcus-0.20.0.tar.xz</Archive> -->
|
||||
<Archive sha1sum="aba033553f077c30bef222a8be26f61cf18c05fb" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/liborcus-0.20.1.tar.xz</Archive>
|
||||
<Archive sha1sum="a11eddd24e8a95e62d69d9c8765296474a5a92de" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/liborcus-0.21.0.tar.xz</Archive>
|
||||
<Archive sha1sum="76497846de1f3d2ef438d79e31328107658d10be" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip</Archive>
|
||||
<Archive sha1sum="0619865bfa592acb90ff7956c8d17319fe1d4292" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/bsh-2.1.1-src.zip</Archive>
|
||||
<Archive sha1sum="0556c392beb59433e577e3517575801212201df6" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz</Archive>
|
||||
<Archive sha1sum="d90dceea7c1a04ad4324f5ee286f3eaa9129bdbd" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/libabw-0.1.3.tar.xz</Archive>
|
||||
<Archive sha1sum="19fd50ab2145f57a76d0913f3bee13ae667f46c9" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/libcmis-0.6.1.tar.xz</Archive>
|
||||
<Archive sha1sum="0ee530972bdc99a4178cb05bf1886637b53bee86" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/libcmis-0.6.2.tar.xz</Archive>
|
||||
<Archive sha1sum="0631e2efa6d8580618fa39091bea80000fd44dbd" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/libnumbertext-1.0.11.tar.xz</Archive>
|
||||
<!-- <Archive sha1sum="b0242ca2de9868fe8ec9c1e8ddbb394d61e760c0" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/lxml-4.9.2.tgz</Archive> -->
|
||||
<!-- <Archive sha1sum="f32af1728752d41e58d0da33d5b7f6b9dd81f30a" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/lxml-5.2.2.tar.gz</Archive> -->
|
||||
<!-- <Archive sha1sum="02f8bafe67bd5f8c363baecd9aac227e781cf393" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/lxml-5.3.0.tar.gz</Archive> -->
|
||||
<!-- <Archive sha1sum="1d869e16ff6f3a1cae35c01a1fc92ce3098c1c25" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/lxml-5.4.0.tar.gz</Archive> -->
|
||||
<Archive sha1sum="2b37a3d8ad8afe74b7ec616dc695ccc25a73bd97" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/lxml-6.0.2.tar.gz</Archive>
|
||||
<Archive sha1sum="54978e00d5529eb3e1947e9809445602c7bd0037" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/libexttextcat-3.4.6.tar.xz</Archive>
|
||||
<Archive sha1sum="80501a0191ced6a0459417fac924947765cd9c33" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/libexttextcat-3.4.7.tar.xz</Archive>
|
||||
<Archive sha1sum="198d281b63ddfe0a6d3c9678ffe62b458fbbdabf" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/libmwaw-0.3.21.tar.xz</Archive>
|
||||
<Archive sha1sum="86bc49bfc8766cdcb079d46ca9c874e0d4c1f9d4" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/libmwaw-0.3.22.tar.xz</Archive>
|
||||
<Archive sha1sum="9b168499b802eb63aa16be2a7a6f9112b4dbbac3" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/libstaroffice-0.0.7.tar.xz</Archive>
|
||||
<!--Archive sha1sum="c0dc491800f4aa24960d20fa38b9f84df1c15e07" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/libzmf-0.0.2.tar.xz</Archive-->
|
||||
<Archive sha1sum="18fde9588c236d51eea9437ed882d8b751daf01f" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/libe-book-0.1.3.tar.xz</Archive>
|
||||
<Archive sha1sum="48e81c60e173552fce77ce3b414e68b7d52a5301" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz</Archive>
|
||||
<!--Archive sha1sum="f0e1b3d7996f2340a95309b61d9b27b596aca3da" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/libqxp-0.0.2.tar.xz</Archive-->
|
||||
<Archive sha1sum="815216ecc4c8cac1cc5905ca3fb5d6168c1deac4" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz</Archive>
|
||||
<Archive sha1sum="c0ffa7b8d49938ba213b4d3e894d56b3aba4e983" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/lp_solve_5.5.2.11.tar.gz</Archive>
|
||||
<Archive sha1sum="373f266a9fa9837c675b202ebe3399ef7f69bb39" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/mythes-1.2.5.tar.xz</Archive>
|
||||
<Archive sha1sum="986f8512b75b2a268e6ab31c23c84d01d6e53e72" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/pdfium-7012.tar.bz2</Archive>
|
||||
<!-- <Archive sha1sum="2cac7ab29cd9850b832198c913a529ffcee306a2" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/pdfium-6425.tar.bz2</Archive> -->
|
||||
<Archive sha1sum="2eb412983d83c3c6a213b91159000ddb8e8bd211" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/pdfium-6764.tar.bz2</Archive>
|
||||
<!-- <Archive sha1sum="42e5fd7c0612344de3f20a2422a24df0ba0bf0f0" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/pdfium-6887.tar.bz2</Archive> -->
|
||||
<Archive sha1sum="899478dcb3ce155264023ebc4c2370dac4734212" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/pdfium-7188.tar.bz2</Archive>
|
||||
<Archive sha1sum="cce2994151ccd58ccbb5db060374ec909e34cf8c" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/frozen-1.1.1.tar.gz</Archive>
|
||||
<Archive sha1sum="8ac42465e2fe7dad668b3c68b5d89e8e0cc90f4e" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/frozen-1.2.0.tar.gz</Archive>
|
||||
<Archive sha1sum="df391cea80b616eec37a51eb8b2dddb0024c8e6a" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/QR-Code-generator-1.4.0.tar.gz</Archive>
|
||||
<Archive sha1sum="15c5a11998ab606999b8ef61ff2c04d217064d62" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/Firebird-3.0.7.33374-0.tar.bz2</Archive>
|
||||
<Archive sha1sum="d881770fdef1adf91828057156387edb3c6c8d48" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/Firebird-5.0.0.1306-0-source.tar.xz</Archive>
|
||||
<Archive sha1sum="3acd305258bc017c7224b1933edd148deb03d79a" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/CoinMP-1.8.4.tgz</Archive>
|
||||
<!-- <Archive sha1sum="f59a9f1862d35f5e4251bcbb05f4ed43f3f97e46" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/ltm-1.2.1.tar.xz</Archive> -->
|
||||
<Archive sha1sum="d8edd632f37449e5954f4291db59239dc0ecf5df" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/ltm-1.3.0.tar.xz</Archive>
|
||||
<Archive sha1sum="bcf50ce79a21340388894cef522871b14926ad2d" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/box2d-2.4.1.tar.gz</Archive>
|
||||
<Archive sha1sum="02a0202dff44ec31cb4c0d203b36580b7f521a07" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/box2d-3.0.0.tar.gz</Archive>
|
||||
<Archive sha1sum="083509db5ad9d1680830be9add727d58b54ca0d3" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/dtoa-20180411.tgz</Archive>
|
||||
<Archive sha1sum="bd92f8c5ab55777c66492a6f3566d013f19c9bbe" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz</Archive>
|
||||
<!-- <Archive sha1sum="2ca6195ffc45e2ab0ea1e7dc2bc2aa64ad2a9122" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/mariadb-connector-c-3.3.7-src.tar.gz</Archive> -->
|
||||
<Archive sha1sum="feb9de9e45da59bdeed6098d4b7d86cb343b0b9f" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/mariadb-connector-c-3.3.8-src.tar.gz</Archive>
|
||||
<!-- <Archive sha1sum="a634dececb7c29c07bb85aa24f3a24f66a056ea9" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/skia-m129-dda581d538cb6532cda841444e7b4ceacde01ec9.tar.xz</Archive> -->
|
||||
<!-- <Archive sha1sum="52d8623582ba307c7f25a41a1cc67570ef34fbb5" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/skia-m130-3c64459d5df2fa9794b277f0959ed8a92552bf4c.tar.xz</Archive> -->
|
||||
<Archive sha1sum="7cd3e295cae4239fde6f12cb89ec9fa4f56de6d5" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/skia-m136-28685d899b0a35894743e2cedad4c9f525e90e1e.tar.xz</Archive>
|
||||
<Archive sha1sum="d451171d572eb1f99ba72f497db5ffb0434838e6" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/skia-m138-a46d5732d9fca93eaec23e502e2eef814b707e6b.tar.xz</Archive>
|
||||
<Archive sha1sum="85ec7044ceb79cfca2ca6e840edfc4686bebc3ca" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/skia-m139-4abe0638e35d34b6fdb70f1f5ce0f0e1879a021e.tar.xz</Archive>
|
||||
<!--Archive sha1sum="7023e01c77a16a2a768aaf9cc7b39d0f1903cfde" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/poppler-23.09.0.tar.xz</Archive>
|
||||
<Archive sha1sum="dc2c4360fb7de80dd5e1d0b4a1e74a4709dd2daf" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/poppler-data-0.4.12.tar.gz</Archive-->
|
||||
<Archive sha1sum="30019f0b0c682f14e58f0302a24d3cf2b1b0d4e5" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/libcuckoo-93217f8d391718380c508a722ab9acd5e9081233.tar.gz</Archive>
|
||||
<Archive sha1sum="d336802a36ed2c87dd243e7c2f1d0542dace5cca" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/extern/884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf</Archive>
|
||||
<Archive sha1sum="dd55efd721df8a013709e27836bdf26623e5320e" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/extern/f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf</Archive>
|
||||
<Archive sha1sum="bdec3915c01cd60e20892376aa5e5a0d3980c389" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/b7cae45ad2c23551fd6ccb8ae2c1f59e-numbertext_0.9.5.oxt</Archive>
|
||||
<Archive sha1sum="0631e2efa6d8580618fa39091bea80000fd44dbd" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/libnumbertext-1.0.11.tar.xz</Archive>
|
||||
<!--Archive sha1sum="d6a33131929a735d202a60076e7fa665688815f4" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/xmlsec1-1.3.2.tar.gz</Archive-->
|
||||
<Archive sha1sum="1acea86fd399ed7817879d36370d3d1f8b109050" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">http://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip</Archive>
|
||||
<!-- <Archive sha1sum="8a90669029e107b61953b90ba11545fef586c2ca" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">http://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip</Archive> -->
|
||||
<!-- <Archive sha1sum="12f9d6c069d2d5e64efc9d0514efcaca50ef9e94" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/rhino-1.7.15.zip</Archive> -->
|
||||
<Archive sha1sum="2d49e11b0b711970f494294dc3698f05eb294853" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">http://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip</Archive>
|
||||
<Archive sha1sum="0a134d01e9aeb09b33f4c7450fb41abb7bed9db6" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">http://dev-www.libreoffice.org/src/commons-logging-1.2-src.tar.gz</Archive>
|
||||
<Archive sha1sum="43a7ff11dd15370d456b20a093e1ee81279163a0" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">http://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip</Archive>
|
||||
<Archive sha1sum="b92930010622906778f713fb8f0153fa0683d018" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">http://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip</Archive>
|
||||
<Archive sha1sum="3232dd31859be4f7eb443c33e8e3287f394789a0" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">http://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip</Archive>
|
||||
<Archive sha1sum="47b58e0ef2d856df26372a7061ae43fae6e08051" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">http://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip</Archive>
|
||||
<Archive sha1sum="5ecb895ffc1eff2c381fa78d2197d0c57422b3df" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">http://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip</Archive>
|
||||
<Archive sha1sum="a637c0c3ad3be32d6814972e1c45e547c5f6359d" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">http://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip</Archive>
|
||||
<Archive sha1sum="e393beea80d36ff27b732882c706826988a64f5c" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">http://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip</Archive>
|
||||
<Archive sha1sum="b19ad429273abb116432eae3af955ecaf1ab5b17" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">http://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip</Archive>
|
||||
<Archive sha1sum="65dfba9970bb862d09c1f9e636b86b22f05d3936" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">http://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip</Archive>
|
||||
<Archive sha1sum="452eba922e4f41603539c9dc39947d2271e47093" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">http://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz</Archive>
|
||||
<!-- <Archive sha1sum="e07689a71cf40399b9f3a0447987fa7e95ea0bb0" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/language-subtag-registry-2023-08-02.tar.bz2</Archive> -->
|
||||
<!-- <Archive sha1sum="39dcb18cd2c4eb19ce36f08cedebb4a4ee976d54" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/language-subtag-registry-2024-06-14.tar.bz2</Archive> -->
|
||||
<!-- <Archive sha1sum="0f2e3f3a10acf6c123e32f54e3eac46b38c63b9d" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/language-subtag-registry-2024-11-19.tar.bz2</Archive> -->
|
||||
<Archive sha1sum="456e9fc5f4e00934de9158db41eca637474fda77" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/language-subtag-registry-2025-08-25.tar.bz2</Archive>
|
||||
<Archive sha1sum="6cc86629f8d276ab1c45c3f337674284fab4eff6" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">http://dev-www.libreoffice.org/src/collada2gltf-master-6258611a6a.tar.bz2</Archive>
|
||||
<Archive sha1sum="c4f5760a1d21213dc52e2cf3ad9c0b9112585f36" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">http://dev-www.libreoffice.org/src/OpenCOLLADA-master-6509aa13af.tar.bz2</Archive>
|
||||
<Archive sha1sum="7168b0f40aa5c72267899601c116d2348d2f56ec" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip</Archive>
|
||||
<Archive sha1sum="f5fce3d5eb21294f9ffba40c34e7c736ab64d6b9" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/62c0b97e94fe47d5e50ff605d2edf37a-hsqldb-2.3.3.zip</Archive>
|
||||
<!-- <Archive sha1sum="e3dc86cee3c4acc0b9083e6f38587b2c3646fd11" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://sourceforge.net/projects/hsqldb/files/hsqldb/hsqldb_2_7/hsqldb-2.7.4.zip</Archive> -->
|
||||
<Archive sha1sum="3478ebc27bb76025f4b5c2ae6a9bac6090e2cb09" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">http://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip</Archive>
|
||||
<Archive sha1sum="1acd76cd63f7b19f6a0252eb029c3cb13a25aa9b" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">http://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip</Archive>
|
||||
<!--Archive sha1sum="f945b23b7801a3601998973028a054ee379967cb" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">http://dev-www.libreoffice.org/src/libfreehand-0.1.2.tar.xz</Archive-->
|
||||
<!-- <Archive sha1sum="e5309d5617599de4741d4f0e3e0fd9eb2f28aefd" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/liborcus-0.19.2.tar.xz</Archive> -->
|
||||
<!-- <Archive sha1sum="02aa178dd890a3a363cdb4152e76c765da084e87" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/liborcus-0.20.0.tar.xz</Archive> -->
|
||||
<Archive sha1sum="aba033553f077c30bef222a8be26f61cf18c05fb" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/liborcus-0.20.1.tar.xz</Archive>
|
||||
<Archive sha1sum="a11eddd24e8a95e62d69d9c8765296474a5a92de" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/liborcus-0.21.0.tar.xz</Archive>
|
||||
<Archive sha1sum="76497846de1f3d2ef438d79e31328107658d10be" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">http://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip</Archive>
|
||||
<Archive sha1sum="0619865bfa592acb90ff7956c8d17319fe1d4292" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/bsh-2.1.1-src.zip</Archive>
|
||||
<Archive sha1sum="0556c392beb59433e577e3517575801212201df6" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">http://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz</Archive>
|
||||
<Archive sha1sum="d90dceea7c1a04ad4324f5ee286f3eaa9129bdbd" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/libabw-0.1.3.tar.xz</Archive>
|
||||
<Archive sha1sum="19fd50ab2145f57a76d0913f3bee13ae667f46c9" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/libcmis-0.6.1.tar.xz</Archive>
|
||||
<Archive sha1sum="0ee530972bdc99a4178cb05bf1886637b53bee86" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/libcmis-0.6.2.tar.xz</Archive>
|
||||
<Archive sha1sum="0631e2efa6d8580618fa39091bea80000fd44dbd" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/libnumbertext-1.0.11.tar.xz</Archive>
|
||||
<!-- <Archive sha1sum="b0242ca2de9868fe8ec9c1e8ddbb394d61e760c0" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/lxml-4.9.2.tgz</Archive> -->
|
||||
<!-- <Archive sha1sum="f32af1728752d41e58d0da33d5b7f6b9dd81f30a" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/lxml-5.2.2.tar.gz</Archive> -->
|
||||
<!-- <Archive sha1sum="02f8bafe67bd5f8c363baecd9aac227e781cf393" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/lxml-5.3.0.tar.gz</Archive> -->
|
||||
<!-- <Archive sha1sum="1d869e16ff6f3a1cae35c01a1fc92ce3098c1c25" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/lxml-5.4.0.tar.gz</Archive> -->
|
||||
<Archive sha1sum="2b37a3d8ad8afe74b7ec616dc695ccc25a73bd97" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/lxml-6.0.2.tar.gz</Archive>
|
||||
<Archive sha1sum="54978e00d5529eb3e1947e9809445602c7bd0037" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">http://dev-www.libreoffice.org/src/libexttextcat-3.4.6.tar.xz</Archive>
|
||||
<Archive sha1sum="80501a0191ced6a0459417fac924947765cd9c33" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/libexttextcat-3.4.7.tar.xz</Archive>
|
||||
<Archive sha1sum="198d281b63ddfe0a6d3c9678ffe62b458fbbdabf" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/libmwaw-0.3.21.tar.xz</Archive>
|
||||
<Archive sha1sum="86bc49bfc8766cdcb079d46ca9c874e0d4c1f9d4" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/libmwaw-0.3.22.tar.xz</Archive>
|
||||
<Archive sha1sum="9b168499b802eb63aa16be2a7a6f9112b4dbbac3" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">http://dev-www.libreoffice.org/src/libstaroffice-0.0.7.tar.xz</Archive>
|
||||
<!--Archive sha1sum="c0dc491800f4aa24960d20fa38b9f84df1c15e07" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">http://dev-www.libreoffice.org/src/libzmf-0.0.2.tar.xz</Archive-->
|
||||
<Archive sha1sum="18fde9588c236d51eea9437ed882d8b751daf01f" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/libe-book-0.1.3.tar.xz</Archive>
|
||||
<Archive sha1sum="48e81c60e173552fce77ce3b414e68b7d52a5301" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz</Archive>
|
||||
<!--Archive sha1sum="f0e1b3d7996f2340a95309b61d9b27b596aca3da" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/libqxp-0.0.2.tar.xz</Archive-->
|
||||
<Archive sha1sum="815216ecc4c8cac1cc5905ca3fb5d6168c1deac4" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">http://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz</Archive>
|
||||
<Archive sha1sum="c0ffa7b8d49938ba213b4d3e894d56b3aba4e983" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/lp_solve_5.5.2.11.tar.gz</Archive>
|
||||
<Archive sha1sum="373f266a9fa9837c675b202ebe3399ef7f69bb39" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/mythes-1.2.5.tar.xz</Archive>
|
||||
<!-- <Archive sha1sum="986f8512b75b2a268e6ab31c23c84d01d6e53e72" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/pdfium-7012.tar.bz2</Archive> -->
|
||||
<!-- <Archive sha1sum="2cac7ab29cd9850b832198c913a529ffcee306a2" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/pdfium-6425.tar.bz2</Archive> -->
|
||||
<!-- <Archive sha1sum="2eb412983d83c3c6a213b91159000ddb8e8bd211" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/pdfium-6764.tar.bz2</Archive> -->
|
||||
<!-- <Archive sha1sum="42e5fd7c0612344de3f20a2422a24df0ba0bf0f0" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/pdfium-6887.tar.bz2</Archive> -->
|
||||
<!-- <Archive sha1sum="899478dcb3ce155264023ebc4c2370dac4734212" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/pdfium-7188.tar.bz2</Archive> -->
|
||||
<Archive sha1sum="6081ee273f52b1d8e920ad2084c71ba8f690b557" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/pdfium-7471.tar.bz2</Archive>
|
||||
<Archive sha1sum="e1fe94936fb6fd4116c71fe7d1a4894df9880b44" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/pdfium-7691.tar.bz2</Archive>
|
||||
<Archive sha1sum="cce2994151ccd58ccbb5db060374ec909e34cf8c" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/frozen-1.1.1.tar.gz</Archive>
|
||||
<Archive sha1sum="8ac42465e2fe7dad668b3c68b5d89e8e0cc90f4e" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/frozen-1.2.0.tar.gz</Archive>
|
||||
<Archive sha1sum="df391cea80b616eec37a51eb8b2dddb0024c8e6a" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/QR-Code-generator-1.4.0.tar.gz</Archive>
|
||||
<Archive sha1sum="15c5a11998ab606999b8ef61ff2c04d217064d62" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/Firebird-3.0.7.33374-0.tar.bz2</Archive>
|
||||
<Archive sha1sum="d881770fdef1adf91828057156387edb3c6c8d48" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/Firebird-5.0.0.1306-0-source.tar.xz</Archive>
|
||||
<Archive sha1sum="3acd305258bc017c7224b1933edd148deb03d79a" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/CoinMP-1.8.4.tgz</Archive>
|
||||
<!-- <Archive sha1sum="f59a9f1862d35f5e4251bcbb05f4ed43f3f97e46" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/ltm-1.2.1.tar.xz</Archive> -->
|
||||
<Archive sha1sum="d8edd632f37449e5954f4291db59239dc0ecf5df" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/ltm-1.3.0.tar.xz</Archive>
|
||||
<Archive sha1sum="bcf50ce79a21340388894cef522871b14926ad2d" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/box2d-2.4.1.tar.gz</Archive>
|
||||
<Archive sha1sum="02a0202dff44ec31cb4c0d203b36580b7f521a07" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/box2d-3.0.0.tar.gz</Archive>
|
||||
<Archive sha1sum="083509db5ad9d1680830be9add727d58b54ca0d3" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/dtoa-20180411.tgz</Archive>
|
||||
<Archive sha1sum="bd92f8c5ab55777c66492a6f3566d013f19c9bbe" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz</Archive>
|
||||
<!-- <Archive sha1sum="2ca6195ffc45e2ab0ea1e7dc2bc2aa64ad2a9122" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/mariadb-connector-c-3.3.7-src.tar.gz</Archive> -->
|
||||
<!-- <Archive sha1sum="feb9de9e45da59bdeed6098d4b7d86cb343b0b9f" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/mariadb-connector-c-3.3.8-src.tar.gz</Archive> -->
|
||||
<Archive sha1sum="0ee18f6a3541ddd40bce81ce17a876d366063159" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/mariadb-connector-c-3.4.8-src.tar.gz</Archive>
|
||||
<!-- <Archive sha1sum="a634dececb7c29c07bb85aa24f3a24f66a056ea9" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/skia-m129-dda581d538cb6532cda841444e7b4ceacde01ec9.tar.xz</Archive> -->
|
||||
<!-- <Archive sha1sum="52d8623582ba307c7f25a41a1cc67570ef34fbb5" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/skia-m130-3c64459d5df2fa9794b277f0959ed8a92552bf4c.tar.xz</Archive> -->
|
||||
<!-- <Archive sha1sum="7cd3e295cae4239fde6f12cb89ec9fa4f56de6d5" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/skia-m136-28685d899b0a35894743e2cedad4c9f525e90e1e.tar.xz</Archive> -->
|
||||
<!-- <Archive sha1sum="d451171d572eb1f99ba72f497db5ffb0434838e6" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/skia-m138-a46d5732d9fca93eaec23e502e2eef814b707e6b.tar.xz</Archive> -->
|
||||
<!-- <Archive sha1sum="85ec7044ceb79cfca2ca6e840edfc4686bebc3ca" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/skia-m139-4abe0638e35d34b6fdb70f1f5ce0f0e1879a021e.tar.xz</Archive> -->
|
||||
<Archive sha1sum="6ecd6540a3f86273e966ebb0726b1ad7e9574755" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/skia-m142-f4ed99d2443962782cf5f8b4dd27179f131e7cbe.tar.xz</Archive>
|
||||
<Archive sha1sum="e8bcd735e0481c3ec6cb1c339d92345e88470ece" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/skia-m145-2ab8add5be2c46eb6238f4c217f6d6dbc9bccd23.tar.xz</Archive>
|
||||
<!--Archive sha1sum="7023e01c77a16a2a768aaf9cc7b39d0f1903cfde" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/poppler-23.09.0.tar.xz</Archive>
|
||||
<Archive sha1sum="dc2c4360fb7de80dd5e1d0b4a1e74a4709dd2daf" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/poppler-data-0.4.12.tar.gz</Archive-->
|
||||
<Archive sha1sum="30019f0b0c682f14e58f0302a24d3cf2b1b0d4e5" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/libcuckoo-93217f8d391718380c508a722ab9acd5e9081233.tar.gz</Archive>
|
||||
<Archive sha1sum="d336802a36ed2c87dd243e7c2f1d0542dace5cca" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/extern/884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf</Archive>
|
||||
<Archive sha1sum="dd55efd721df8a013709e27836bdf26623e5320e" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/extern/f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf</Archive>
|
||||
<Archive sha1sum="bdec3915c01cd60e20892376aa5e5a0d3980c389" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/b7cae45ad2c23551fd6ccb8ae2c1f59e-numbertext_0.9.5.oxt</Archive>
|
||||
<Archive sha1sum="0631e2efa6d8580618fa39091bea80000fd44dbd" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/libnumbertext-1.0.11.tar.xz</Archive>
|
||||
|
||||
<!-- FOR TEST SUIT -->
|
||||
<Archive sha1sum="a2aaff3c6e19d7442295ca8a1c39e8c3a8b4081a" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">http://dev-www.libreoffice.org/extern/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar</Archive>
|
||||
<Archive sha1sum="f4772556920231cf164348e51285b0c18dfc7f5b" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/extern/a1adc7a47ed126ed029893c23c8bdd43-officeotron-0.7.4-master.jar</Archive>
|
||||
<Archive sha1sum="02545575792c66a176969b71c09ae0e91ebd49a4" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/dragonbox-1.1.3.tar.gz</Archive>
|
||||
<!-- <Archive sha1sum="78f051918795f2885168cb4becde4e2c9f94c78c" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/libxml2-2.12.6.tar.xz</Archive> -->
|
||||
<!-- <Archive sha1sum="b16ce6bc1e90d711b5dc8b3a22a036ad4693e29b" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/libxml2-2.13.2.tar.xz</Archive> -->
|
||||
<!-- <Archive sha1sum="c49ba258746d36d3777195de12b319540ff1e176" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/libxml2-2.13.5.tar.xz</Archive> -->
|
||||
<!-- <Archive sha1sum="d4dbccdcf64b445fecf3822744f6ef8cb5fc3dbc" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/libxml2-2.14.3.tar.xz</Archive> -->
|
||||
<Archive sha1sum="92074785624b560355636ca6554463eda0390c64" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/libxml2-2.14.6.tar.xz</Archive>
|
||||
<!-- <Archive sha1sum="f941661a869df7347d7ca9208acb4e6d41f614de" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/libwebp-1.3.2.tar.gz</Archive> -->
|
||||
<!-- <Archive sha1sum="0b1c8bea200caaa010182609dbaaa91aec69b64d" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/libwebp-1.4.0.tar.gz</Archive> -->
|
||||
<!-- <Archive sha1sum="b21aa842136dc59a72a38776a5aa73f4d0b00ac5" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/libwebp-1.5.0.tar.gz</Archive> -->
|
||||
<Archive sha1sum="c65babfd749817e6d0f8233d653f8a85e4220b48" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/libwebp-1.6.0.tar.gz</Archive>
|
||||
<!-- <Archive sha1sum="fea1cb738eab1bc125e5422857999bb2f77ea701" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/tiff-4.6.0.tar.xz</Archive> -->
|
||||
<!-- <Archive sha1sum="48db1a74f3f556ea83d8cf84f02d9c2c1ef3b9a8" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/tiff-4.6.0t.tar.xz</Archive> -->
|
||||
<!-- <Archive sha1sum="ac047328eff842ff3d96777efb9c1b898e8af24e" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/tiff-4.7.0.tar.xz</Archive> -->
|
||||
<Archive sha1sum="9d8be825e847e9a54d8fe579d17a326da9aaca0e" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/tiff-4.7.1.tar.xz</Archive>
|
||||
<!-- <Archive sha1sum="f6f234ba5cbc448081ff10e7ed89a7afb42c4853" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/zxcvbn-c-2.5.tar.gz</Archive> -->
|
||||
<Archive sha1sum="2fdf62144b5d87649648496823b4bddac915906d" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/zxcvbn-c-2.6.tar.gz</Archive>
|
||||
<!-- <Archive sha1sum="67703956d32bd3c20baf8f1dd69efa579234381e" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/Java-WebSocket-1.5.4.tar.gz</Archive> -->
|
||||
<!-- <Archive sha1sum="e2a19bbbb5ecd57e358d2f0220b88a9eccf635d6" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/Java-WebSocket-1.5.7.tar.gz</Archive> -->
|
||||
<Archive sha1sum="ee561c270fa186bac51bb240d4ce2166f866795c" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/Java-WebSocket-1.5.6.tar.gz</Archive>
|
||||
<Archive sha1sum="ec18632a76819220dec2aab6935def2fb386e079" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/Java-WebSocket-1.6.0.tar.gz</Archive>
|
||||
<!-- <Archive sha1sum="4b1de90ec1ccfb6e91001e849f2cbe0222cc8b4c" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/phc-winner-argon2-20190702.tar.gz</Archive> -->
|
||||
<Archive sha1sum="9c0ae2843bccaa793bab4ad40f609a1139b0237b" type="binary" target="libreoffice-25.8.1.1/external/tarballs/">https://dev-www.libreoffice.org/src/libeot-0.01.tar.bz2</Archive>
|
||||
<Archive sha1sum="a2aaff3c6e19d7442295ca8a1c39e8c3a8b4081a" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">http://dev-www.libreoffice.org/extern/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar</Archive>
|
||||
<!-- <Archive sha1sum="f4772556920231cf164348e51285b0c18dfc7f5b" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/extern/a1adc7a47ed126ed029893c23c8bdd43-officeotron-0.7.4-master.jar</Archive> -->
|
||||
<Archive sha1sum="34db7fa10954c15a7561fa33c25c87380464b66a" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/extern/officeotron-0.8.8.jar</Archive>
|
||||
<Archive sha1sum="02545575792c66a176969b71c09ae0e91ebd49a4" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/dragonbox-1.1.3.tar.gz</Archive>
|
||||
<!-- <Archive sha1sum="78f051918795f2885168cb4becde4e2c9f94c78c" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/libxml2-2.12.6.tar.xz</Archive> -->
|
||||
<!-- <Archive sha1sum="b16ce6bc1e90d711b5dc8b3a22a036ad4693e29b" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/libxml2-2.13.2.tar.xz</Archive> -->
|
||||
<!-- <Archive sha1sum="c49ba258746d36d3777195de12b319540ff1e176" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/libxml2-2.13.5.tar.xz</Archive> -->
|
||||
<!-- <Archive sha1sum="d4dbccdcf64b445fecf3822744f6ef8cb5fc3dbc" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/libxml2-2.14.3.tar.xz</Archive> -->
|
||||
<!-- <Archive sha1sum="92074785624b560355636ca6554463eda0390c64" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/libxml2-2.14.6.tar.xz</Archive> -->
|
||||
<Archive sha1sum="8a5337a2d77caad438dd6f2f473ab29058d94a4b" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/libxml2-2.15.1.tar.xz</Archive>
|
||||
<!-- <Archive sha1sum="f941661a869df7347d7ca9208acb4e6d41f614de" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/libwebp-1.3.2.tar.gz</Archive> -->
|
||||
<!-- <Archive sha1sum="0b1c8bea200caaa010182609dbaaa91aec69b64d" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/libwebp-1.4.0.tar.gz</Archive> -->
|
||||
<!-- <Archive sha1sum="b21aa842136dc59a72a38776a5aa73f4d0b00ac5" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/libwebp-1.5.0.tar.gz</Archive> -->
|
||||
<Archive sha1sum="c65babfd749817e6d0f8233d653f8a85e4220b48" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/libwebp-1.6.0.tar.gz</Archive>
|
||||
<!-- <Archive sha1sum="fea1cb738eab1bc125e5422857999bb2f77ea701" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/tiff-4.6.0.tar.xz</Archive> -->
|
||||
<!-- <Archive sha1sum="48db1a74f3f556ea83d8cf84f02d9c2c1ef3b9a8" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/tiff-4.6.0t.tar.xz</Archive> -->
|
||||
<!-- <Archive sha1sum="ac047328eff842ff3d96777efb9c1b898e8af24e" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/tiff-4.7.0.tar.xz</Archive> -->
|
||||
<Archive sha1sum="9d8be825e847e9a54d8fe579d17a326da9aaca0e" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/tiff-4.7.1.tar.xz</Archive>
|
||||
<!-- <Archive sha1sum="f6f234ba5cbc448081ff10e7ed89a7afb42c4853" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/zxcvbn-c-2.5.tar.gz</Archive> -->
|
||||
<Archive sha1sum="2fdf62144b5d87649648496823b4bddac915906d" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/zxcvbn-c-2.6.tar.gz</Archive>
|
||||
<!-- <Archive sha1sum="67703956d32bd3c20baf8f1dd69efa579234381e" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/Java-WebSocket-1.5.4.tar.gz</Archive> -->
|
||||
<!-- <Archive sha1sum="e2a19bbbb5ecd57e358d2f0220b88a9eccf635d6" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/Java-WebSocket-1.5.7.tar.gz</Archive> -->
|
||||
<Archive sha1sum="ee561c270fa186bac51bb240d4ce2166f866795c" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/Java-WebSocket-1.5.6.tar.gz</Archive>
|
||||
<Archive sha1sum="ec18632a76819220dec2aab6935def2fb386e079" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/Java-WebSocket-1.6.0.tar.gz</Archive>
|
||||
<!-- <Archive sha1sum="4b1de90ec1ccfb6e91001e849f2cbe0222cc8b4c" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/phc-winner-argon2-20190702.tar.gz</Archive> -->
|
||||
<Archive sha1sum="9c0ae2843bccaa793bab4ad40f609a1139b0237b" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/libeot-0.01.tar.bz2</Archive>
|
||||
<Archive sha1sum="0ed4f3ca16fd94127a665b38fd3b3ace935a7658" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/antlr4-cpp-runtime-4.13.2-source.zip</Archive>
|
||||
<Archive sha1sum="f6ad1a87ee2c0a336fefbe56965d12d1acd651b8" type="binary" target="libreoffice-26.2.0.3/external/tarballs/">https://dev-www.libreoffice.org/src/afdko-4.0.3.tar.gz</Archive>
|
||||
<Patches>
|
||||
<Patch>make-pyuno-work-with-system-wide-module-install.diff</Patch>
|
||||
<!-- <Patch>libreoffice-25.2-cflags.patch</Patch> -->
|
||||
<Patch>poppler-26.02.patch</Patch>
|
||||
<!-- <Patch>libreoffice-25.2-cflags.patch</Patch> -->
|
||||
<!-- <Patch>623ea5c.diff</Patch> -->
|
||||
<!-- <Patch>mdds-3.0.0.patch</Patch> -->
|
||||
<!-- <Patch>fix_pdf_import_with_poppler_25.02.patch</Patch> -->
|
||||
|
||||
<!-- <Patch>fix_pdf_import_with_poppler_25.02.patch</Patch> -->
|
||||
<Patch>libreoffice-24.8.4.2-icu76_fixes-1.patch</Patch>
|
||||
<Patch>orcus-0.21.0.patch</Patch>
|
||||
<!-- <Patch>libreoffice-24.8.4.2-icu76_fixes-1.patch</Patch> -->
|
||||
<!-- <Patch>orcus-0.21.0.patch</Patch> -->
|
||||
<!-- <Patch>fix_build_with_poppler_25.05.patch</Patch> -->
|
||||
<!-- <Patch>libreoffice-25.2-cflags.patch</Patch> -->
|
||||
<!-- <Patch>libreoffice.gpgme-1.18.0.patch</Patch> -->
|
||||
@@ -149,6 +159,9 @@
|
||||
<BuildDependencies>
|
||||
<Dependency>xz-devel</Dependency>
|
||||
<Dependency>ant</Dependency>
|
||||
<Dependency>ant</Dependency>
|
||||
<Dependency>ant</Dependency>
|
||||
<Dependency>fast_float</Dependency>
|
||||
<Dependency>rhino</Dependency>
|
||||
<Dependency>gperf</Dependency>
|
||||
<Dependency>qt6-multimedia-devel</Dependency>
|
||||
@@ -156,6 +169,7 @@
|
||||
<Dependency>cups-devel</Dependency>
|
||||
<Dependency>curl-devel</Dependency>
|
||||
<Dependency>glew-devel</Dependency>
|
||||
<Dependency>md4c-devel</Dependency>
|
||||
<Dependency>libXt-devel</Dependency>
|
||||
<Dependency versionFrom="2.8">lcms2-devel</Dependency>
|
||||
<Dependency>boost-devel</Dependency>
|
||||
@@ -189,7 +203,7 @@
|
||||
<Dependency>gobject-introspection-devel</Dependency>
|
||||
<Dependency>graphite2-devel</Dependency>
|
||||
<Dependency>librevenge-devel</Dependency>
|
||||
<Dependency versionFrom="13.0.4">mesa-devel</Dependency>
|
||||
<Dependency versionFrom="25.3.5">mesa-devel</Dependency>
|
||||
<Dependency>neon-devel</Dependency>
|
||||
<Dependency>clucene-devel</Dependency>
|
||||
<Dependency>apr-devel</Dependency>
|
||||
@@ -302,6 +316,7 @@
|
||||
<Dependency>dbus</Dependency>
|
||||
<Dependency>nspr</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>md4c</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>expat</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
@@ -681,6 +696,7 @@
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/pagein-writer</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/swriter</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libchart2lo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libchart2apilo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/share/classification/example.xml</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/fonts</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/calc</Path>
|
||||
@@ -3957,6 +3973,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="32">
|
||||
<Date>2026-02-18</Date>
|
||||
<Version>26.2.0.3</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="31">
|
||||
<Date>2025-09-28</Date>
|
||||
<Version>25.8.1.1</Version>
|
||||
|
||||
Reference in New Issue
Block a user