libreoffice 7.1.1.2

This commit is contained in:
Idris Kalp
2021-03-11 23:08:55 +03:00
parent 8729c187ad
commit c909d73ed8
5 changed files with 2436 additions and 64 deletions
+5 -3
View File
@@ -4,6 +4,7 @@
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
import subprocess
from pisi.actionsapi import get
from pisi.actionsapi import pisitools
from pisi.actionsapi import autotools
@@ -15,6 +16,8 @@ pixmaps = "/usr/share/pixmaps/"
LoVersion = "%s" % get.srcVERSION()
OurWorkDir = "%s/libreoffice-%s" % (get.workDIR(), LoVersion)
jobs = "-j"+ subprocess.check_output("nproc 2>/dev/null", shell=True).rstrip("\n")
#for support all languages.
langall="en-US af am ar as ast be bg bn bn-IN bo br brx bs ca ca-valencia cs cy da de dgo dsb dz el en-GB en-ZA eo es et eu fa fi fr fy ga gd gl gu gug he hsb hi hr hu id is it ja ka kab kk km kmr-Latn kn ko kok ks lb lo lt lv mai mk ml mn mni mr my nb ne nl nn nr nso oc om or pa-IN pl pt pt-BR ro ru rw sa-IN sat sd sr-Latn si sid sk sl sq sr ss st sv sw-TZ ta te tg th tn tr ts tt ug uk uz ve vec vi xh zh-CN zh-TW zu"
@@ -40,7 +43,6 @@ def setup():
--sysconfdir=/etc \
--with-vendor="Pisi Linux" \
--with-lang="%s" \
--disable-coinmp \
--disable-odk \
--enable-qt5 \
--enable-gtk3 \
@@ -104,11 +106,11 @@ def setup():
--without-system-firebird \
--without-system-libcmis \
--without-system-orcus \
--with-jdk-home=/usr/lib/jvm/java-8-openjdk \
--with-jdk-home=/usr/lib/jvm/java-openjdk \
--with-external-tar=external/tarballs \
--with-gdrive-client-id=413772536636.apps.googleusercontent.com \
--with-gdrive-client-secret=0ZChLK6AxeA3Isu96MkwqDR4 \
--with-parallelism=%s' % (langall, get.makeJOBS().replace("-j","")))
--with-parallelism=%s' % (langall, jobs.replace("-j","")))
def build():
autotools.make("build-nocheck")
@@ -0,0 +1,123 @@
From 937d1d5be8d0c783fb5740aa50456f9941ac638b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= <caolanm@redhat.com>
Date: Wed, 29 Jul 2020 21:05:27 +0100
Subject: [PATCH] rhbz#1861794 csv fixed width import missing split handle
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
regression from...
commit 1e97ca02773e2ba968606eed61d25d88f0d7e417
Author: Caolán McNamara <caolanm@redhat.com>
Date: Mon Oct 14 11:05:07 2019 +0100
EndMouseTracking was left uncalled
Change-Id: Ia952addac585737c3d3aa4fd68d772c3acbae848
---
sc/source/ui/dbgui/csvruler.cxx | 36 ++++++++++++++++-----------------
sc/source/ui/inc/csvruler.hxx | 7 ++++---
2 files changed, 21 insertions(+), 22 deletions(-)
diff --git a/sc/source/ui/dbgui/csvruler.cxx b/sc/source/ui/dbgui/csvruler.cxx
index 294f22526974..9fe9f6433359 100644
--- a/sc/source/ui/dbgui/csvruler.cxx
+++ b/sc/source/ui/dbgui/csvruler.cxx
@@ -106,7 +106,7 @@ void ScCsvRuler::SetDrawingArea(weld::DrawingArea* pDrawingArea)
{
ScCsvControl::SetDrawingArea(pDrawingArea);
- mnSplitSize = (GetCharWidth() * 3 / 5) | 1; // make an odd number
+ UpdateSplitSize();
Size aSize(1, GetTextHeight() + mnSplitSize + 2);
pDrawingArea->set_size_request(aSize.Width(), aSize.Height());
@@ -162,10 +162,17 @@ void ScCsvRuler::InitColors()
InvalidateGfx();
}
+void ScCsvRuler::UpdateSplitSize()
+{
+ mnSplitSize = (GetCharWidth() * 3 / 5) | 1; // make an odd number
+}
+
void ScCsvRuler::InitSizeData()
{
maWinSize = GetOutputSizePixel();
+ UpdateSplitSize();
+
sal_Int32 nActiveWidth = std::min( GetWidth() - GetHdrWidth(), GetPosCount() * GetCharWidth() );
sal_Int32 nActiveHeight = GetTextHeight();
@@ -409,7 +416,11 @@ bool ScCsvRuler::MouseButtonDown( const MouseEvent& rMEvt )
bool ScCsvRuler::MouseButtonUp( const MouseEvent& )
{
- mbTracking = false;
+ if (mbTracking)
+ {
+ EndMouseTracking();
+ mbTracking = false;
+ }
return true;
}
@@ -498,24 +509,11 @@ void ScCsvRuler::MoveMouseTracking( sal_Int32 nPos )
}
}
-void ScCsvRuler::EndMouseTracking( bool bApply )
+void ScCsvRuler::EndMouseTracking()
{
- if( bApply ) // tracking finished successfully
- {
- // remove on simple click on an existing split
- if( (mnPosMTCurr == mnPosMTStart) && maOldSplits.HasSplit( mnPosMTCurr ) && !mbPosMTMoved )
- Execute( CSVCMD_REMOVESPLIT, mnPosMTCurr );
- }
- else // tracking cancelled
- {
- MoveCursor( mnPosMTStart );
- // move split to origin
- if( maOldSplits.HasSplit( mnPosMTStart ) )
- MoveMouseTracking( mnPosMTStart );
- // remove temporarily inserted split
- else if( !maOldSplits.HasSplit( mnPosMTCurr ) )
- Execute( CSVCMD_REMOVESPLIT, mnPosMTCurr );
- }
+ // remove on simple click on an existing split
+ if( (mnPosMTCurr == mnPosMTStart) && maOldSplits.HasSplit( mnPosMTCurr ) && !mbPosMTMoved )
+ Execute( CSVCMD_REMOVESPLIT, mnPosMTCurr );
mnPosMTStart = CSV_POS_INVALID;
}
diff --git a/sc/source/ui/inc/csvruler.hxx b/sc/source/ui/inc/csvruler.hxx
index 32d72ef93b8f..0913ac09271f 100644
--- a/sc/source/ui/inc/csvruler.hxx
+++ b/sc/source/ui/inc/csvruler.hxx
@@ -137,9 +137,8 @@ private:
void StartMouseTracking( sal_Int32 nPos );
/** Moves tracking to a new position. */
void MoveMouseTracking( sal_Int32 nPos );
- /** Applies tracking action for the current tracking position.
- @param bApply sal_True = apply action, sal_False = cancel action. */
- void EndMouseTracking( bool bApply );
+ /** Applies tracking action for the current tracking position */
+ void EndMouseTracking();
// painting ---------------------------------------------------------------
protected:
@@ -154,6 +153,8 @@ private:
sal_Int32 GetWidth() const { return maWinSize.Width(); }
/** Returns the height of the control. */
sal_Int32 GetHeight() const { return maWinSize.Height(); }
+ /** Update the split size depending on the last width set by CSVCMD_SETCHARWIDTH */
+ void UpdateSplitSize();
/** Draws the background and active area to maBackgrDev (only the given X range). */
void ImplDrawArea( sal_Int32 nPosX, sal_Int32 nWidth );
--
2.26.2
@@ -0,0 +1,26 @@
From 8b8a49e14c1010c5ab325b64fc3b65524a6a6049 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= <caolanm@redhat.com>
Date: Wed, 20 Jan 2021 09:19:25 +0000
Subject: [PATCH] rhbz#1918152 fix FTBFS
Change-Id: I5c03c810d3b2572b0e58c62293add49bd7025e70
---
vcl/source/gdi/bitmap3.cxx | 2 --
1 file changed, 2 deletions(-)
diff --git a/vcl/source/gdi/bitmap3.cxx b/vcl/source/gdi/bitmap3.cxx
index ec80b03c6008..8ea5c31bee3e 100644
--- a/vcl/source/gdi/bitmap3.cxx
+++ b/vcl/source/gdi/bitmap3.cxx
@@ -17,8 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include <math.h>
-
#include <vcl/bitmapaccess.hxx>
#include <vcl/bitmapex.hxx>
#include <vcl/bitmap.hxx>
--
2.28.0
+96 -61
View File
@@ -13,69 +13,76 @@
<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="108a5efe59ba5242bf70aced1fe61f09c1c88896" type="tarxz">http://download.documentfoundation.org/libreoffice/src/6.4.4/libreoffice-6.4.4.2.tar.xz</Archive>
<Archive sha1sum="d489e66e633ade95e10cc44ece0003aa2f03b475" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://download.documentfoundation.org/libreoffice/src/6.4.4/libreoffice-dictionaries-6.4.4.2.tar.xz</Archive>
<Archive sha1sum="9b3978dc5b7d8960a09db0bc917dee3e14e51977" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://download.documentfoundation.org/libreoffice/src/6.4.4/libreoffice-help-6.4.4.2.tar.xz</Archive>
<Archive sha1sum="4b481868cc08ea83e5b388746a519b7c30bc08c9" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://download.documentfoundation.org/libreoffice/src/6.4.4/libreoffice-translations-6.4.4.2.tar.xz</Archive>
<Archive sha1sum="c0216a5064264f2be3c06366b072bb2f1dab95e1" type="tarxz">http://download.documentfoundation.org/libreoffice/src/7.1.1/libreoffice-7.1.1.2.tar.xz</Archive>
<Archive sha1sum="60b6a208e1b6351f8afd7a8fe77f91063ce9f51d" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://download.documentfoundation.org/libreoffice/src/7.1.1/libreoffice-dictionaries-7.1.1.2.tar.xz</Archive>
<Archive sha1sum="3c58d34e5dd50bf7eb2cd3eb883c8ec706d77593" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://download.documentfoundation.org/libreoffice/src/7.1.1/libreoffice-help-7.1.1.2.tar.xz</Archive>
<Archive sha1sum="22bbd873700531ca7be643223145e94003cf8d6b" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://download.documentfoundation.org/libreoffice/src/7.1.1/libreoffice-translations-7.1.1.2.tar.xz</Archive>
<Archive sha1sum="e75580df2f638ef7e99743eb54d7f8015bc8c812" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/xmlsec1-1.2.28.tar.gz</Archive>
<Archive sha1sum="1acea86fd399ed7817879d36370d3d1f8b109050" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip</Archive>
<Archive sha1sum="8a90669029e107b61953b90ba11545fef586c2ca" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip</Archive>
<Archive sha1sum="2d49e11b0b711970f494294dc3698f05eb294853" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip</Archive>
<Archive sha1sum="0a134d01e9aeb09b33f4c7450fb41abb7bed9db6" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/commons-logging-1.2-src.tar.gz</Archive>
<Archive sha1sum="43a7ff11dd15370d456b20a093e1ee81279163a0" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip</Archive>
<Archive sha1sum="b92930010622906778f713fb8f0153fa0683d018" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip</Archive>
<Archive sha1sum="3232dd31859be4f7eb443c33e8e3287f394789a0" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip</Archive>
<Archive sha1sum="47b58e0ef2d856df26372a7061ae43fae6e08051" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip</Archive>
<Archive sha1sum="5ecb895ffc1eff2c381fa78d2197d0c57422b3df" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip</Archive>
<Archive sha1sum="a637c0c3ad3be32d6814972e1c45e547c5f6359d" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip</Archive>
<Archive sha1sum="e393beea80d36ff27b732882c706826988a64f5c" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip</Archive>
<Archive sha1sum="b19ad429273abb116432eae3af955ecaf1ab5b17" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip</Archive>
<Archive sha1sum="65dfba9970bb862d09c1f9e636b86b22f05d3936" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip</Archive>
<Archive sha1sum="452eba922e4f41603539c9dc39947d2271e47093" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz</Archive>
<Archive sha1sum="64620c7e4e2b1c09a8ef9806e5e30fe0d52c4bba" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/language-subtag-registry-2019-04-03.tar.bz2</Archive>
<Archive sha1sum="6cc86629f8d276ab1c45c3f337674284fab4eff6" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/collada2gltf-master-6258611a6a.tar.bz2</Archive>
<Archive sha1sum="c4f5760a1d21213dc52e2cf3ad9c0b9112585f36" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/OpenCOLLADA-master-6509aa13af.tar.bz2</Archive>
<Archive sha1sum="7168b0f40aa5c72267899601c116d2348d2f56ec" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip</Archive>
<Archive sha1sum="3478ebc27bb76025f4b5c2ae6a9bac6090e2cb09" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip</Archive>
<Archive sha1sum="1acd76cd63f7b19f6a0252eb029c3cb13a25aa9b" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip</Archive>
<Archive sha1sum="f945b23b7801a3601998973028a054ee379967cb" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/libfreehand-0.1.2.tar.xz</Archive>
<Archive sha1sum="0f0bce8909509b30350a2318d31e74f8d9b8d349" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/liborcus-0.15.3.tar.gz</Archive>
<Archive sha1sum="76497846de1f3d2ef438d79e31328107658d10be" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip</Archive>
<Archive sha1sum="0556c392beb59433e577e3517575801212201df6" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz</Archive>
<Archive sha1sum="d90dceea7c1a04ad4324f5ee286f3eaa9129bdbd" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libabw-0.1.3.tar.xz</Archive>
<Archive sha1sum="feca71d94d2c6e6d5565ff2a3210ba61fb2451d9" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libcmis-0.5.2.tar.xz</Archive>
<Archive sha1sum="2b599daeeb07ecd14ea0f7633accd67ab3fedea9" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libnumbertext-1.0.5.tar.xz</Archive>
<Archive sha1sum="154279bc5939d7099697887ea15c5ca921abeaeb" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/lxml-4.1.1.tgz</Archive>
<Archive sha1sum="dd6b4163c752a44384f309f8dabb830161f5f85f" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/libexttextcat-3.4.5.tar.xz</Archive>
<Archive sha1sum="660d84f6b14b7b59028f1991640fcb667882f48f" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libmwaw-0.3.15.tar.xz</Archive>
<Archive sha1sum="d4f0ab61702fe24f3d89ec625616583e77a33697" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/libstaroffice-0.0.6.tar.xz</Archive>
<Archive sha1sum="c0dc491800f4aa24960d20fa38b9f84df1c15e07" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/libzmf-0.0.2.tar.xz</Archive>
<Archive sha1sum="18fde9588c236d51eea9437ed882d8b751daf01f" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libe-book-0.1.3.tar.xz</Archive>
<Archive sha1sum="48e81c60e173552fce77ce3b414e68b7d52a5301" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz</Archive>
<Archive sha1sum="f0e1b3d7996f2340a95309b61d9b27b596aca3da" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libqxp-0.0.2.tar.xz</Archive>
<Archive sha1sum="815216ecc4c8cac1cc5905ca3fb5d6168c1deac4" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz</Archive>
<Archive sha1sum="c038831d84882cdf639e038e44decb1e40527591" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz</Archive>
<Archive sha1sum="a428758999ff573e62d06892e3d2c0b0f335787c" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/libgpg-error-1.27.tar.bz2</Archive>
<Archive sha1sum="c283858b7cf63a0cd7c691aef4d45866b9c7051d" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/pdfium-3963.tar.bz2</Archive>
<Archive sha1sum="870719cd3d2ef6a7fcb1d6af9ce5446edba7bfc3" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/gpgme-1.9.0.tar.bz2</Archive>
<Archive sha1sum="e00d0bf270a99ded2a2f4abe7874b765cd338d1f" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libepoxy-1.5.3.tar.xz</Archive>
<Archive sha1sum="c8432695bf1daa914a92f51e911881ed93d50604" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/libassuan-2.5.1.tar.bz2</Archive>
<Archive sha1sum="df391cea80b616eec37a51eb8b2dddb0024c8e6a" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/QR-Code-generator-1.4.0.tar.gz</Archive>
<Archive sha1sum="e4a5d0ae688a754a9159be581c28b63a98777115" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/Firebird-3.0.0.32483-0.tar.bz2</Archive>
<Archive sha1sum="f52c74abcbf55c72cd89f709db658ea33ed45154" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/CoinMP-1.7.6.tgz</Archive>
<Archive sha1sum="842a219491c4119b2ef148adffe9d537723a493e" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/ltm-1.0.zip</Archive>
<Archive sha1sum="bd92f8c5ab55777c66492a6f3566d013f19c9bbe" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz</Archive>
<Archive sha1sum="d336802a36ed2c87dd243e7c2f1d0542dace5cca" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/extern/884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf</Archive>
<Archive sha1sum="bdec3915c01cd60e20892376aa5e5a0d3980c389" type="binary" target="libreoffice-6.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/b7cae45ad2c23551fd6ccb8ae2c1f59e-numbertext_0.9.5.oxt</Archive>
<Archive sha1sum="c8e34b20eac7a2ed23eb5696dcae793ffd78250b" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/xmlsec1-1.2.30.tar.gz</Archive>
<Archive sha1sum="1acea86fd399ed7817879d36370d3d1f8b109050" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip</Archive>
<Archive sha1sum="8a90669029e107b61953b90ba11545fef586c2ca" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip</Archive>
<Archive sha1sum="2d49e11b0b711970f494294dc3698f05eb294853" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip</Archive>
<Archive sha1sum="0a134d01e9aeb09b33f4c7450fb41abb7bed9db6" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/commons-logging-1.2-src.tar.gz</Archive>
<Archive sha1sum="43a7ff11dd15370d456b20a093e1ee81279163a0" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip</Archive>
<Archive sha1sum="b92930010622906778f713fb8f0153fa0683d018" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip</Archive>
<Archive sha1sum="3232dd31859be4f7eb443c33e8e3287f394789a0" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip</Archive>
<Archive sha1sum="47b58e0ef2d856df26372a7061ae43fae6e08051" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip</Archive>
<Archive sha1sum="5ecb895ffc1eff2c381fa78d2197d0c57422b3df" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip</Archive>
<Archive sha1sum="a637c0c3ad3be32d6814972e1c45e547c5f6359d" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip</Archive>
<Archive sha1sum="e393beea80d36ff27b732882c706826988a64f5c" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip</Archive>
<Archive sha1sum="b19ad429273abb116432eae3af955ecaf1ab5b17" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip</Archive>
<Archive sha1sum="65dfba9970bb862d09c1f9e636b86b22f05d3936" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip</Archive>
<Archive sha1sum="452eba922e4f41603539c9dc39947d2271e47093" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz</Archive>
<Archive sha1sum="e4889d950c38bf296d5f62afd98980c0e57b98ed" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/language-subtag-registry-2020-12-18.tar.bz2</Archive>
<Archive sha1sum="6cc86629f8d276ab1c45c3f337674284fab4eff6" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/collada2gltf-master-6258611a6a.tar.bz2</Archive>
<Archive sha1sum="c4f5760a1d21213dc52e2cf3ad9c0b9112585f36" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/OpenCOLLADA-master-6509aa13af.tar.bz2</Archive>
<Archive sha1sum="7168b0f40aa5c72267899601c116d2348d2f56ec" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip</Archive>
<Archive sha1sum="3478ebc27bb76025f4b5c2ae6a9bac6090e2cb09" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip</Archive>
<Archive sha1sum="1acd76cd63f7b19f6a0252eb029c3cb13a25aa9b" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip</Archive>
<Archive sha1sum="f945b23b7801a3601998973028a054ee379967cb" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/libfreehand-0.1.2.tar.xz</Archive>
<Archive sha1sum="ae88e7cf2ff7b6d388ac1fa2cd35b47c211f49a1" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/liborcus-0.16.1.tar.bz2</Archive>
<Archive sha1sum="76497846de1f3d2ef438d79e31328107658d10be" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip</Archive>
<Archive sha1sum="0556c392beb59433e577e3517575801212201df6" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz</Archive>
<Archive sha1sum="d90dceea7c1a04ad4324f5ee286f3eaa9129bdbd" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/libabw-0.1.3.tar.xz</Archive>
<Archive sha1sum="feca71d94d2c6e6d5565ff2a3210ba61fb2451d9" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/libcmis-0.5.2.tar.xz</Archive>
<Archive sha1sum="fa60020dab9db22903fc470c230ee6f4145d8991" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/libnumbertext-1.0.7.tar.xz</Archive>
<Archive sha1sum="154279bc5939d7099697887ea15c5ca921abeaeb" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/lxml-4.1.1.tgz</Archive>
<Archive sha1sum="dd6b4163c752a44384f309f8dabb830161f5f85f" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/libexttextcat-3.4.5.tar.xz</Archive>
<Archive sha1sum="e884ccf8f9a67e58a6a5581e10c45da4f0ff0e61" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/libmwaw-0.3.17.tar.xz</Archive>
<Archive sha1sum="9b168499b802eb63aa16be2a7a6f9112b4dbbac3" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/libstaroffice-0.0.7.tar.xz</Archive>
<Archive sha1sum="c0dc491800f4aa24960d20fa38b9f84df1c15e07" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/libzmf-0.0.2.tar.xz</Archive>
<Archive sha1sum="18fde9588c236d51eea9437ed882d8b751daf01f" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/libe-book-0.1.3.tar.xz</Archive>
<Archive sha1sum="48e81c60e173552fce77ce3b414e68b7d52a5301" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz</Archive>
<Archive sha1sum="f0e1b3d7996f2340a95309b61d9b27b596aca3da" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/libqxp-0.0.2.tar.xz</Archive>
<Archive sha1sum="815216ecc4c8cac1cc5905ca3fb5d6168c1deac4" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz</Archive>
<Archive sha1sum="c038831d84882cdf639e038e44decb1e40527591" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz</Archive>
<Archive sha1sum="6dff83371e0c03fe9ba468cc23d528a8c247785a" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/libgpg-error-1.37.tar.bz2</Archive>
<Archive sha1sum="54d08dff0044285fbdc82763f920987badee4a94" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/pdfium-4306.tar.bz2</Archive>
<Archive sha1sum="f87f34e695e8d74ccc7c8f42864d50630afebb0e" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/gpgme-1.13.1.tar.bz2</Archive>
<Archive sha1sum="e00d0bf270a99ded2a2f4abe7874b765cd338d1f" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/libepoxy-1.5.3.tar.xz</Archive>
<Archive sha1sum="6d81bf42fa91ed2894df8b65764ce899e39776f8" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/libassuan-2.5.3.tar.bz2</Archive>
<Archive sha1sum="df391cea80b616eec37a51eb8b2dddb0024c8e6a" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/QR-Code-generator-1.4.0.tar.gz</Archive>
<Archive sha1sum="e4a5d0ae688a754a9159be581c28b63a98777115" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/Firebird-3.0.0.32483-0.tar.bz2</Archive>
<Archive sha1sum="f52c74abcbf55c72cd89f709db658ea33ed45154" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/CoinMP-1.7.6.tgz</Archive>
<Archive sha1sum="842a219491c4119b2ef148adffe9d537723a493e" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/ltm-1.0.zip</Archive>
<Archive sha1sum="6d92d6b21d1bf0bb75f28b3edd27787eaef54631" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/box2d-2.3.1.tar.gz</Archive>
<Archive sha1sum="083509db5ad9d1680830be9add727d58b54ca0d3" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/dtoa-20180411.tgz</Archive>
<Archive sha1sum="bd92f8c5ab55777c66492a6f3566d013f19c9bbe" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz</Archive>
<Archive sha1sum="56b48c3a11edb63415f18395b940824bcd9efe93" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/mariadb-connector-c-3.1.8-src.tar.gz</Archive>
<Archive sha1sum="879ebbf154ec1a263506ca878ee337312ea6a39c" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/skia-m88-59bafeeaa7de9eb753e3778c414e01dcf013dcd8.tar.xz</Archive>
<Archive sha1sum="d336802a36ed2c87dd243e7c2f1d0542dace5cca" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/extern/884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf</Archive>
<Archive sha1sum="dd55efd721df8a013709e27836bdf26623e5320e" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/extern/f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf</Archive>
<Archive sha1sum="bdec3915c01cd60e20892376aa5e5a0d3980c389" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/b7cae45ad2c23551fd6ccb8ae2c1f59e-numbertext_0.9.5.oxt</Archive>
<!--for test suit-->
<Archive sha1sum="a2aaff3c6e19d7442295ca8a1c39e8c3a8b4081a" type="binary" target="libreoffice-6.4.4.2/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-6.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/extern/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar</Archive>
<Archive sha1sum="a2aaff3c6e19d7442295ca8a1c39e8c3a8b4081a" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/extern/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar</Archive>
<Archive sha1sum="61339dceb65aad4c81edf2169857e57863ec46db" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">https://dev-www.libreoffice.org/extern/odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar</Archive>
<Archive sha1sum="f4772556920231cf164348e51285b0c18dfc7f5b" type="binary" target="libreoffice-7.1.1.2/external/tarballs/">http://dev-www.libreoffice.org/extern/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar</Archive>
<Patches>
<Patch>make-pyuno-work-with-system-wide-module-install.diff</Patch>
<Patch>0001-don-t-suppress-crashes.patch</Patch>
<Patch level="1">0001-replace-boost-bimap-in-sdext-pdfimport.patch</Patch>
<Patch>0001-rhbz-1918152-fix-FTBFS.patch </Patch>
<!-- <Patch>0001-don-t-suppress-crashes.patch</Patch> -->
<!-- <Patch level="1">0001-replace-boost-bimap-in-sdext-pdfimport.patch</Patch> -->
</Patches>
<BuildDependencies>
<Dependency>xz-devel</Dependency>
@@ -89,7 +96,7 @@
<Dependency versionFrom="2.8">lcms2-devel</Dependency>
<Dependency>boost-devel</Dependency>
<Dependency>libSM-devel</Dependency>
<Dependency>jdk8-openjdk</Dependency>
<Dependency>jdk-openjdk</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libICE-devel</Dependency>
<Dependency>libxslt-devel</Dependency>
@@ -128,7 +135,7 @@
<Dependency>libvisio-devel</Dependency>
<Dependency>doxygen</Dependency>
<Dependency>liblangtag-devel</Dependency>
<Dependency versionFrom="1.4.1">mdds-devel</Dependency>
<Dependency versionFrom="1.7.0">mdds-devel</Dependency>
<Dependency>glew-devel</Dependency>
<Dependency>glm</Dependency>
<Dependency>cppunit-devel</Dependency>
@@ -211,7 +218,7 @@
<Dependency>libXinerama</Dependency>
<Dependency>libjpeg-turbo</Dependency>
<Dependency>gstreamer</Dependency>
<Dependency>jre8-openjdk-headless</Dependency>
<Dependency>jre-openjdk-headless</Dependency>
<Dependency versionFrom="3.22.8">gtk3</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libxcb</Dependency>
@@ -250,7 +257,10 @@
<Path fileType="data">/usr/share/mime-info</Path>
<Path fileType="data">/usr/share/pixmaps</Path>
<Path fileType="data">/usr/share/appdata</Path>
<Path fileType="data">/usr/share/metainfo</Path>
<Path fileType="data">/usr/share/bash-completion</Path>
<Path fileType="data">/usr/lib/libreoffice/share/numbertext/mt.sor</Path>
<Path fileType="data">/usr/lib/libreoffice/share/numbertext/lg.sor</Path>
<Path fileType="data">/usr/lib/python3.8</Path>
<Path fileType="library">/usr/lib/libreoffice/program/soffice*</Path>
<Path fileType="library">/usr/lib/libreoffice/program/ui-previewer</Path>
@@ -279,8 +289,11 @@
<Path fileType="library">/usr/lib/libreoffice/program/libcanvastoolslo.so</Path>
<Path fileType="library">/usr/lib/libreoffice/program/libchartcontrollerlo.so</Path>
<Path fileType="library">/usr/lib/libreoffice/program/libchartcorelo.so</Path>
<Path fileType="library">/usr/lib/libreoffice/program/libCgl.so.1</Path>
<Path fileType="library">/usr/lib/libreoffice/program/libclewlo.so</Path>
<Path fileType="library">/usr/lib/libreoffice/program/libClp.so.1</Path>
<Path fileType="library">/usr/lib/libreoffice/program/libcmdmaillo.so</Path>
<Path fileType="library">/usr/lib/libreoffice/program/libCoinMP.so.1</Path>
<Path fileType="library">/usr/lib/libreoffice/program/libcollator_data.so</Path>
<Path fileType="library">/usr/lib/libreoffice/program/libcomphelper.so</Path>
<Path fileType="library">/usr/lib/libreoffice/program/libconfigmgrlo.so</Path>
@@ -388,6 +401,8 @@
<Path fileType="library">/usr/lib/libreoffice/program/libOGLTranslo.so</Path>
<Path fileType="library">/usr/lib/libreoffice/program/libooxlo.so</Path>
<Path fileType="library">/usr/lib/libreoffice/program/libopencllo.so</Path>
<Path fileType="library">/usr/lib/libreoffice/program/libOsi.so.1</Path>
<Path fileType="library">/usr/lib/libreoffice/program/libOsiClp.so.1</Path>
<Path fileType="library">/usr/lib/libreoffice/program/libpackage2.so</Path>
<Path fileType="library">/usr/lib/libreoffice/program/libpasswordcontainerlo.so</Path>
<Path fileType="library">/usr/lib/libreoffice/program/libpcrlo.so</Path>
@@ -423,6 +438,7 @@
<Path fileType="library">/usr/lib/libreoffice/program/libsduilo.so</Path>
<Path fileType="library">/usr/lib/libreoffice/program/libsfxlo.so</Path>
<Path fileType="library">/usr/lib/libreoffice/program/libsimplecanvaslo.so</Path>
<Path fileType="library">/usr/lib/libreoffice/program/libskialo.so</Path>
<Path fileType="library">/usr/lib/libreoffice/program/libslideshowlo.so</Path>
<Path fileType="library">/usr/lib/libreoffice/program/libsmdlo.so</Path>
<Path fileType="library">/usr/lib/libreoffice/program/libsmlo.so</Path>
@@ -616,6 +632,10 @@
<Path fileType="data">/usr/lib/libreoffice/share/basic/Gimmicks</Path>
<Path fileType="data">/usr/lib/libreoffice/share/basic/ImportWizard</Path>
<Path fileType="data">/usr/lib/libreoffice/share/basic/ScriptBindingLibrary</Path>
<Path fileType="data">/usr/lib/libreoffice/share/basic/ScriptForge</Path>
<Path fileType="data">/usr/lib/libreoffice/share/basic/SFDatabases</Path>
<Path fileType="data">/usr/lib/libreoffice/share/basic/SFDialogs</Path>
<Path fileType="data">/usr/lib/libreoffice/share/basic/SFDocuments</Path>
<Path fileType="data">/usr/lib/libreoffice/share/basic/T*</Path>
<Path fileType="data">/usr/lib/libreoffice/share/basic/*.xlc</Path>
<Path fileType="data">/usr/lib/libreoffice/share/firebird/*</Path>
@@ -639,6 +659,9 @@
<Path fileType="data">/usr/lib/libreoffice/share/registry/impress.xcd</Path>
<Path fileType="data">/usr/lib/libreoffice/share/registry/math.xcd</Path>
<Path fileType="data">/usr/lib/libreoffice/share/registry/writer.xcd</Path>
<Path fileType="data">/usr/lib/libreoffice/share/skia</Path>
<Path fileType="data">/usr/lib/libreoffice/share/toolbarmode</Path>
<Path fileType="data">/usr/lib/libreoffice/share/extensions/dict-tr/</Path>
<Path fileType="data">/usr/lib/libreoffice/share/extensions/nlpsolver</Path>
<Path fileType="data">/usr/lib/libreoffice/share/extensions/wiki-publisher</Path>
<Path fileType="data">/usr/lib/libreoffice/share/extensions/package.txt</Path>
@@ -2163,6 +2186,7 @@
<Path fileType="data">/usr/lib/libreoffice/share/Scripts/python/LibreLogo/LibreLogo_et*</Path>
<Path fileType="data">/usr/lib/libreoffice/program/resource/et</Path>
<Path fileType="data">/usr/lib/libreoffice/share/numbertext/et.sor</Path>
<Path fileType="data">/usr/lib/libreoffice/share/autocorr/acor_vro-EE.dat</Path>
<Path fileType="data">/usr/lib/libreoffice/share/wizards/resources_et*</Path>
<Path fileType="data">/usr/lib/libreoffice/share/wordbook/et.dic</Path>
<Path fileType="data">/usr/lib/libreoffice/share/extensions/dict-et</Path>
@@ -2279,6 +2303,7 @@
<Path fileType="data">/usr/lib/libreoffice/program/resource/ga</Path>
<Path fileType="data">/usr/lib/libreoffice/share/autocorr/acor_ga-IE.dat</Path>
<Path fileType="data">/usr/lib/libreoffice/share/fingerprint/ga*</Path>
<Path fileType="data">/usr/lib/libreoffice/share/numbertext/ga.sor</Path>
<Path fileType="data">/usr/lib/libreoffice/share/Scripts/python/LibreLogo/LibreLogo_ga*</Path>
<Path fileType="data">/usr/lib/libreoffice/share/wizards/resources_ga*</Path>
</Files>
@@ -2466,6 +2491,7 @@
<Path fileType="data">/usr/lib/libreoffice/program/resource/hu</Path>
<Path fileType="data">/usr/lib/libreoffice/share/numbertext/hu.sor</Path>
<Path fileType="data">/usr/lib/libreoffice/share/numbertext/Hung.sor</Path>
<Path fileType="data">/usr/lib/libreoffice/share/numbertext/hu_Hung.sor</Path>
<Path fileType="data">/usr/lib/libreoffice/share/wizards/resources_hu*</Path>
<Path fileType="data">/usr/lib/libreoffice/share/wordbook/hu_AkH11.dic</Path>
<Path fileType="data">/usr/lib/libreoffice/share/extensions/dict-hu</Path>
@@ -2665,6 +2691,7 @@
<Path fileType="data">/usr/lib/libreoffice/share/registry/*ko.xcd</Path>
<Path fileType="data">/usr/lib/libreoffice/share/registry/res/*ko.xcd</Path>
<Path fileType="data">/usr/lib/libreoffice/share/autocorr/acor_ko-KR.dat</Path>
<Path fileType="data">/usr/lib/libreoffice/share/extensions/dict-ko</Path>
<Path fileType="data">/usr/lib/libreoffice/share/basic/Depot/Lang_ko.xba</Path>
<Path fileType="data">/usr/lib/libreoffice/share/fingerprint/ko*</Path>
<Path fileType="data">/usr/lib/libreoffice/share/Scripts/python/LibreLogo/LibreLogo_ko.properties</Path>
@@ -2882,6 +2909,7 @@
<Path fileType="data">/usr/lib/libreoffice/share/registry/res/*mr.xcd</Path>
<Path fileType="data">/usr/lib/libreoffice/program/resource/mr</Path>
<Path fileType="data">/usr/lib/libreoffice/share/fingerprint/mr*</Path>
<Path fileType="data">/usr/lib/libreoffice/share/numbertext/mr.sor</Path>
<Path fileType="data">/usr/lib/libreoffice/share/Scripts/python/LibreLogo/LibreLogo_mr*</Path>
<Path fileType="data">/usr/lib/libreoffice/share/wizards/resources_mr*</Path>
</Files>
@@ -3749,6 +3777,13 @@
</Package>
<History>
<Update release="18">
<Date>2021-03-10</Date>
<Version>7.1.1.2</Version>
<Comment>Version Bump</Comment>
<Name>İdris Kalp</Name>
<Email>idriskalp@gmail.com</Email>
</Update>
<Update release="17">
<Date>2020-05-26</Date>
<Version>6.4.4.2</Version>