diff --git a/office/libreoffice/libreoffice/actions.py b/office/libreoffice/libreoffice/actions.py index 1a667fe253..32ac87d16e 100644 --- a/office/libreoffice/libreoffice/actions.py +++ b/office/libreoffice/libreoffice/actions.py @@ -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") diff --git a/office/libreoffice/libreoffice/files/0001-Related-tdf-127782-resize-the-print-dialog-to-its-op.patch b/office/libreoffice/libreoffice/files/0001-Related-tdf-127782-resize-the-print-dialog-to-its-op.patch new file mode 100644 index 0000000000..0a0b1aaa24 --- /dev/null +++ b/office/libreoffice/libreoffice/files/0001-Related-tdf-127782-resize-the-print-dialog-to-its-op.patch @@ -0,0 +1,2186 @@ +From d613261e913f96cb088fa97c7f4a85b0e57e32c3 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= +Date: Fri, 10 Jan 2020 17:27:04 +0000 +Subject: [PATCH] Related: tdf#127782 resize the print dialog to its optimum + size... +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +after expander is activated + +Change-Id: I3f87243f0502829e048173987c8998898d351adf +Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86575 +Tested-by: Jenkins +Reviewed-by: Heiko Tietze +(cherry picked from commit fa412876add97cab38d404723c49d35775f8efea) + +Related: tdf#127782 use size groups to avoid changing widths on using expanders + +Change-Id: I07335d466cf8f9fa1692372eeecbb484a2f4386d +Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86923 +Tested-by: Jenkins +Reviewed-by: Caolán McNamara +(cherry picked from commit 0874fa237b3b6be3890915a744c5d34ba2bef8f7) + +change label in print dialog from "OK" to "Print" + +Change-Id: I1d6b04678ab039138908bc9555763bea057fa996 +Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88212 +Tested-by: Jenkins +Reviewed-by: Heiko Tietze +(cherry picked from commit aec3cce9e4aa12e6cfe229e11d6548f0c3a7cbb5) + +tdf#130517 improve accelerators on Print dialog page + +- add accelerator for Print +- change accelerators for other "p" items + - All Pages to A + - Preview to v + - Order (not needed, because _r on checkbox is enough) + +Change-Id: I7db4153829132dcbbb7c7356591f43df809583ca +Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89127 +Tested-by: Jenkins +Reviewed-by: Seth Chaiklin +Reviewed-by: Heiko Tietze +(cherry picked from commit 5c3604542191b3c69da2d9d912c5c5a20c7143e9) + +missing use_underlines + +Change-Id: I2953069ee266c2a7850181826b299f0037a936ea +Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90662 +Tested-by: Jenkins +Reviewed-by: Caolán McNamara +(cherry picked from commit 80b4419d94e74b79330945aa76f06b0e62fe0d88) + +tdf#127782 - New Print dialog is too high + +ScrollWindow behind the tab control + +Change-Id: I5560f4368f94a45eeb1e3af3bf18df0f305ab3da +Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92758 +Tested-by: Jenkins +Reviewed-by: Heiko Tietze +(cherry picked from commit 26ada4335a5804735ae37cf9a89f8145e0931fd7) +--- + sw/inc/strings.hrc | 2 +- + vcl/inc/printdlg.hxx | 4 + + vcl/source/window/printdlg.cxx | 9 + + vcl/uiconfig/ui/printdialog.ui | 1721 ++++++++++++++++---------------- + 4 files changed, 887 insertions(+), 849 deletions(-) + +diff --git a/sw/inc/strings.hrc b/sw/inc/strings.hrc +index 8c771426ef00..074681b65fae 100644 +--- a/sw/inc/strings.hrc ++++ b/sw/inc/strings.hrc +@@ -621,7 +621,7 @@ + #define STR_PRINTOPTUI_BROCHURE NC_("STR_PRINTOPTUI_BROCHURE", "Broch~ure") + #define STR_PRINTOPTUI_LEFT_SCRIPT NC_("STR_PRINTOPTUI_LEFT_SCRIPT", "Left-to-right script") + #define STR_PRINTOPTUI_RIGHT_SCRIPT NC_("STR_PRINTOPTUI_RIGHT_SCRIPT", "Right-to-left script") +-#define STR_PRINTOPTUI_PRINTALLPAGES NC_("STR_PRINTOPTUI_PRINTALLPAGES", "All ~Pages") ++#define STR_PRINTOPTUI_PRINTALLPAGES NC_("STR_PRINTOPTUI_PRINTALLPAGES", "~All Pages") + #define STR_PRINTOPTUI_PRINTPAGES NC_("STR_PRINTOPTUI_PRINTPAGES", "Pa~ges:") + #define STR_PRINTOPTUI_PRINTEVENPAGES NC_("STR_PRINTOPTUI_PRINTEVENPAGES", "~Even pages") + #define STR_PRINTOPTUI_PRINTODDPAGES NC_("STR_PRINTOPTUI_PRINTODDPAGES", "~Odd pages") +diff --git a/vcl/inc/printdlg.hxx b/vcl/inc/printdlg.hxx +index 5e8289d6b4d1..9db2e07ca698 100644 +--- a/vcl/inc/printdlg.hxx ++++ b/vcl/inc/printdlg.hxx +@@ -186,6 +186,8 @@ namespace vcl + std::unique_ptr mxNupOrderWin; + /// border around each page + std::unique_ptr mxBorderCB; ++ std::unique_ptr mxRangeExpander; ++ std::unique_ptr mxLayoutExpander; + std::unique_ptr mxCustom; + + OUString const maPrintToFileText; +@@ -234,6 +236,8 @@ namespace vcl + DECL_LINK( UIOption_SpinModifyHdl, weld::SpinButton&, void ); + DECL_LINK( UIOption_EntryModifyHdl, weld::Entry&, void ); + ++ DECL_LINK( ExpandHdl, weld::Expander&, void ); ++ + css::beans::PropertyValue* getValueForWindow(weld::Widget*) const; + + void preparePreview( bool i_bMayUseCache ); +diff --git a/vcl/source/window/printdlg.cxx b/vcl/source/window/printdlg.cxx +index 7d340559806a..ceb25a7e8609 100644 +--- a/vcl/source/window/printdlg.cxx ++++ b/vcl/source/window/printdlg.cxx +@@ -566,6 +566,8 @@ PrintDialog::PrintDialog(weld::Window* i_pWindow, const std::shared_ptrweld_check_button("bordercb")) ++ , mxRangeExpander(m_xBuilder->weld_expander("exRangeExpander")) ++ , mxLayoutExpander(m_xBuilder->weld_expander("exLayoutExpander")) + , mxCustom(m_xBuilder->weld_widget("customcontents")) + , maPrintToFileText( VclResId( SV_PRINT_TOFILE_TXT ) ) + , maDefPrtText( VclResId( SV_PRINT_DEFPRT_TXT ) ) +@@ -695,9 +697,16 @@ PrintDialog::PrintDialog(weld::Window* i_pWindow, const std::shared_ptrconnect_value_changed( LINK( this, PrintDialog, MetricSpinModifyHdl ) ); + mxSheetMarginEdt->connect_value_changed( LINK( this, PrintDialog, MetricSpinModifyHdl ) ); + ++ mxRangeExpander->connect_expanded(LINK( this, PrintDialog, ExpandHdl)); ++ mxLayoutExpander->connect_expanded(LINK( this, PrintDialog, ExpandHdl)); ++ + updateNupFromPages(); + } + ++IMPL_LINK_NOARG(PrintDialog, ExpandHdl, weld::Expander&, void) ++{ ++ m_xDialog->resize_to_request(); ++} + + PrintDialog::~PrintDialog() + { +diff --git a/vcl/uiconfig/ui/printdialog.ui b/vcl/uiconfig/ui/printdialog.ui +index fc98a18a89a9..d0ebb7abe103 100644 +--- a/vcl/uiconfig/ui/printdialog.ui ++++ b/vcl/uiconfig/ui/printdialog.ui +@@ -1,5 +1,5 @@ + +- ++ + + + +@@ -66,7 +66,7 @@ + 0 + 0 + dialog +- ++ + + + +@@ -100,6 +100,7 @@ + True + True + 10 ++ True + + + False +@@ -109,13 +110,13 @@ + + + +- gtk-ok ++ _Print + True + True + True + True + True +- True ++ True + + + False +@@ -145,38 +146,30 @@ + + + +- ++ + True + False +- 6 ++ True ++ True + +- ++ + True + False ++ 6 ++ vertical ++ 12 + +- ++ + True +- True ++ False + vertical +- 6 + +- ++ + True + False +- vertical +- +- +- True +- False +- GDK_STRUCTURE_MASK | GDK_SCROLL_MASK +- Print preview +- +- +- True +- True +- 0 +- +- ++ GDK_STRUCTURE_MASK | GDK_SCROLL_MASK ++ Print preview ++ 6 + + + True +@@ -184,103 +177,29 @@ + 0 + + ++ ++ ++ True ++ True ++ 0 ++ ++ ++ ++ ++ True ++ False + +- ++ + True + False ++ 6 + +- ++ + True +- False +- 10 +- 6 +- +- +- True +- True +- True +- Last page +- imgLast +- +- +- False +- True +- end +- 0 +- +- +- +- +- True +- True +- True +- Next page +- imgForward +- +- +- False +- False +- end +- 1 +- +- +- +- +- True +- False +- / %n +- +- +- False +- True +- end +- 2 +- +- +- +- +- True +- True +- 3 +- 1 +- +- +- False +- True +- end +- 3 +- +- +- +- +- True +- True +- True +- Previous page +- imgBack +- +- +- False +- False +- end +- 4 +- +- +- +- +- True +- True +- True +- First page +- imgFirst +- +- +- False +- False +- end +- 5 +- +- ++ True ++ True ++ Last page ++ imgLast + + + False +@@ -290,49 +209,121 @@ + + + +- ++ ++ True ++ True ++ True ++ Next page ++ imgForward ++ ++ ++ False ++ False ++ end ++ 1 ++ ++ ++ ++ + True + False +- 10 +- 3 +- +- +- Preview +- True +- True +- False +- center +- True +- True +- True +- +- +- False +- True +- end +- 0 +- +- ++ / %n ++ ++ ++ False ++ True ++ end ++ 2 ++ ++ ++ ++ ++ True ++ True ++ 3 ++ 1 + + + False + True ++ end ++ 3 ++ ++ ++ ++ ++ True ++ True ++ True ++ Previous page ++ imgBack ++ ++ ++ False ++ False ++ end + 4 + + ++ ++ ++ True ++ True ++ True ++ First page ++ imgFirst ++ ++ ++ False ++ False ++ end ++ 5 ++ ++ + + + False + True + end +- 1 ++ 0 ++ ++ ++ ++ ++ True ++ False ++ 3 ++ ++ ++ Pre_view ++ True ++ True ++ False ++ center ++ True ++ True ++ True ++ ++ ++ False ++ True ++ end ++ 0 ++ ++ ++ ++ ++ False ++ True ++ 4 + + + + +- True ++ False + True +- 0 ++ end ++ 1 + + + +@@ -343,65 +334,52 @@ + + + +- ++ + True +- False +- vertical ++ True ++ 6 ++ True ++ True + +- ++ + True + True +- True +- True ++ in ++ 500 ++ 450 + +- ++ + True + False +- 6 +- vertical +- 12 + +- ++ + True + False +- 0 +- none ++ 6 ++ vertical ++ 12 + +- ++ + True + False +- 6 +- 12 ++ 0 ++ none + +- ++ + True + False +- vertical +- 6 +- +- +- True +- False +- +- +- False +- True +- 0 +- +- ++ 6 ++ 12 + +- ++ + True + False ++ vertical + 6 + +- ++ + True + False +- Status: +- +- +- + + + False +@@ -410,13 +388,55 @@ + + + +- ++ + True + False +- Default Printer +- +- +- ++ 6 ++ ++ ++ True ++ False ++ Status: ++ ++ ++ ++ ++ ++ False ++ True ++ 0 ++ ++ ++ ++ ++ True ++ False ++ Default Printer ++ ++ ++ ++ ++ ++ False ++ True ++ 1 ++ ++ ++ ++ ++ Properties... ++ True ++ True ++ True ++ end ++ ++ ++ False ++ True ++ end ++ 2 ++ ++ + + + False +@@ -424,217 +444,82 @@ + 1 + + +- +- +- Properties... +- True +- True +- True +- end +- +- +- False +- True +- end +- 2 +- +- + +- +- False +- True +- 1 +- + + + ++ ++ ++ True ++ False ++ Printer ++ True ++ printersbox ++ ++ ++ ++ ++ + ++ ++ False ++ True ++ 0 ++ + +- +- +- True +- False +- Printer +- True +- printersbox +- +- +- +- +- +- +- +- False +- True +- 0 +- +- +- +- +- True +- False +- 0 +- none + +- ++ + True + False +- 6 +- 12 ++ 0 ++ none + +- ++ + True + False +- 2 +- 6 +- +- +- _All pages +- True +- True +- False +- start +- 2 +- True +- True +- True +- +- +- 0 +- 0 +- 2 +- +- +- +- +- _Pages: +- True +- True +- False +- start +- 2 +- 2 +- True +- True +- rbAllPages +- +- +- 0 +- 1 +- +- +- +- +- True +- True +- True +- True +- e.g.: 1, 3-5, 7, 9 +- +- +- 1 +- 1 +- +- +- +- +- _Even pages +- True +- True +- False +- start +- 2 +- 2 +- True +- True +- rbAllPages +- +- +- 0 +- 2 +- 2 +- +- +- +- +- _Odd pages +- True +- True +- False +- start +- 2 +- 2 +- True +- True +- rbAllPages +- +- +- 0 +- 3 +- 2 +- +- ++ 6 ++ 12 + +- +- _Selection +- True +- False +- start +- 2 +- True +- True +- rbAllPages +- +- +- 0 +- 4 +- 2 +- +- +- +- ++ + True +- True +- True +- True ++ False ++ 6 + +- ++ + True + False + 2 + 6 + +- +- False ++ ++ _All pages ++ True ++ True ++ False + start +- _From which print: ++ 2 + True +- printextrabox ++ True ++ True + + + 0 + 0 +- +- +- +- +- False +- True +- +- +- 1 +- 0 + 2 + + + +- ++ ++ _Pages: + True +- False ++ True ++ False + start +- Paper _sides: ++ 2 ++ 2 + True +- sidesbox ++ True ++ rbAllPages + + + 0 +@@ -642,635 +527,763 @@ + + + +- ++ + True +- False ++ True + True +- +- Print on one side (simplex) +- Print on both sides (duplex long edge) +- Print on both sides (duplex short edge) +- ++ True ++ e.g.: 1, 3-5, 7, 9 + + + 1 + 1 +- 2 + + + +- ++ ++ _Even pages + True +- False ++ True ++ False + start +- _Number of copies: ++ 2 ++ 2 + True +- copycount ++ True ++ rbAllPages + + + 0 + 2 ++ 2 + + + +- ++ ++ _Odd pages + True + True +- center +- True +- True +- 1 +- adjustment2 +- 1 ++ False ++ start ++ 2 ++ 2 ++ True ++ True ++ rbAllPages + + +- 1 +- 2 ++ 0 ++ 3 ++ 2 ++ ++ ++ ++ ++ _Selection ++ True ++ False ++ start ++ 2 ++ True ++ True ++ rbAllPages ++ ++ ++ 0 ++ 4 ++ 2 + + ++ ++ ++ 0 ++ 0 ++ ++ ++ ++ ++ True ++ True ++ True + +- ++ + True + False +- end +- 4 ++ 2 ++ 6 ++ ++ ++ False ++ start ++ _From which print: ++ True ++ printextrabox ++ ++ ++ 0 ++ 0 ++ ++ ++ ++ ++ False ++ True ++ ++ ++ 1 ++ 0 ++ ++ ++ ++ ++ True ++ False ++ start ++ Paper _sides: ++ True ++ sidesbox ++ ++ ++ 0 ++ 1 ++ ++ ++ ++ ++ True ++ False ++ True ++ ++ Print on one side (simplex) ++ Print on both sides (duplex long edge) ++ Print on both sides (duplex short edge) ++ ++ ++ ++ 1 ++ 1 ++ ++ ++ ++ ++ True ++ False ++ start ++ _Number of copies: ++ True ++ copycount ++ ++ ++ 0 ++ 2 ++ ++ ++ ++ ++ True ++ True ++ center ++ True ++ True ++ 1 ++ adjustment2 ++ 1 ++ ++ ++ 1 ++ 2 ++ ++ ++ ++ ++ True ++ False ++ start ++ Order: ++ True ++ reverseorder ++ ++ ++ 0 ++ 4 ++ 2 ++ ++ + +- +- _Collate ++ ++ Print in _reverse order + True + True + False ++ start + True + True + + +- False +- True +- 0 ++ 1 ++ 4 + + + +- ++ + True + False +- gtk-missing-image ++ start ++ 4 ++ ++ ++ _Collate ++ True ++ True ++ False ++ True ++ True ++ ++ ++ False ++ True ++ 0 ++ ++ ++ ++ ++ True ++ False ++ gtk-missing-image ++ ++ ++ False ++ True ++ 1 ++ ++ + + +- False +- True +- 1 ++ 1 ++ 3 + + ++ ++ ++ + +- +- 2 +- 2 +- + +- +- ++ ++ + True + False +- start +- _Order: +- True +- reverseorder +- +- +- 0 +- 3 +- +- +- +- +- Print in _reverse order +- True +- True +- False +- start ++ _more + True +- True + +- +- 1 +- 3 +- 2 +- + + +- +- +- +- True +- False +- _more +- True +- ++ ++ 0 ++ 1 ++ + + +- +- 0 +- 5 +- 2 +- + + + ++ ++ ++ True ++ False ++ Range and Copies ++ ++ ++ ++ ++ + ++ ++ False ++ True ++ 1 ++ + +- +- +- True +- False +- Range and Copies +- grid1 +- +- +- +- +- +- +- +- False +- True +- 1 +- +- +- +- +- True +- False +- 0 +- none + +- ++ + True + False +- 6 +- 12 ++ 0 ++ none + +- ++ + True + False +- 6 +- 6 ++ 6 ++ 12 + +- ++ + True + False +- start +- Orientation: +- True +- pageorientationbox +- +- +- 0 +- 1 +- +- +- +- +- True +- False +- start +- Paper size: +- True +- papersizebox +- +- +- 0 +- 0 +- +- +- +- +- True +- False +- True +- 0 +- +- Automatic +- Portrait +- Landscape +- +- +- +- 1 +- 1 +- +- +- +- +- True +- False +- True +- +- +- 1 +- 0 +- +- +- +- +- True +- True +- True +- True ++ 6 + +- ++ + True + False + 6 + 6 + +- ++ + True + False +- 3 +- +- +- Pages per sheet: +- True +- True +- False +- start +- True +- True +- True +- +- +- +- +- +- False +- True +- 0 +- +- +- +- +- True +- False +- +- +- False +- True +- 1 +- +- ++ start ++ Orientation: ++ True ++ pageorientationbox + + + 0 +- 0 ++ 1 + + + +- ++ + True +- False +- True +- 0 +- +- 1 +- 2 +- 4 +- 6 +- 9 +- 16 +- Custom +- +- +- +- +- +- +- 1 +- 0 +- 3 +- +- +- +- + False + start +- Pages: ++ Paper size: + True +- pagerows ++ papersizebox + + + 0 +- 1 +- +- +- +- +- True +- True +- 1 +- adjustment3 +- 1 +- +- +- 1 +- 1 ++ 0 + + + +- ++ ++ True + False +- by +- True +- pagecols +- +- +- 2 +- 1 +- +- +- +- +- True +- True +- 1 +- adjustment4 +- 1 ++ True ++ 0 ++ ++ Automatic ++ Portrait ++ Landscape ++ + + +- 3 ++ 1 + 1 + + + +- ++ ++ True + False +- start +- Margin: +- True +- pagemarginsb +- +- +- 0 +- 2 +- +- +- +- +- True +- True +- 0 +- adjustment5 ++ True + + + 1 +- 2 ++ 0 + + ++ ++ ++ 0 ++ 0 ++ ++ ++ ++ ++ True ++ True ++ True + +- ++ ++ True + False +- start +- between pages +- +- +- 2 +- 2 +- 2 +- +- +- +- +- False +- start +- Distance: +- True +- sheetmarginsb +- +- +- 0 +- 3 +- +- +- +- +- True +- True +- 0 +- adjustment6 +- +- +- 1 +- 3 +- +- +- +- +- False +- start +- to sheet border +- +- +- 2 +- 3 +- 2 +- +- +- +- +- True +- False +- start +- Order: +- True +- orderbox ++ 6 ++ 6 ++ ++ ++ True ++ False ++ 3 ++ ++ ++ Pages per sheet: ++ True ++ True ++ False ++ start ++ True ++ True ++ True ++ ++ ++ ++ ++ ++ False ++ True ++ 0 ++ ++ ++ ++ ++ True ++ False ++ ++ ++ False ++ True ++ 1 ++ ++ ++ ++ ++ 0 ++ 0 ++ ++ ++ ++ ++ True ++ False ++ True ++ 0 ++ ++ 1 ++ 2 ++ 4 ++ 6 ++ 9 ++ 16 ++ Custom ++ ++ ++ ++ ++ ++ ++ 1 ++ 0 ++ 3 ++ ++ ++ ++ ++ False ++ start ++ Pages: ++ True ++ pagerows ++ ++ ++ 0 ++ 1 ++ ++ ++ ++ ++ True ++ True ++ 1 ++ adjustment3 ++ 1 ++ ++ ++ 1 ++ 1 ++ ++ ++ ++ ++ False ++ by ++ True ++ pagecols ++ ++ ++ 2 ++ 1 ++ ++ ++ ++ ++ True ++ True ++ 1 ++ adjustment4 ++ 1 ++ ++ ++ 3 ++ 1 ++ ++ ++ ++ ++ False ++ start ++ Margin: ++ True ++ pagemarginsb ++ ++ ++ 0 ++ 2 ++ ++ ++ ++ ++ True ++ True ++ 0 ++ adjustment5 ++ ++ ++ 1 ++ 2 ++ ++ ++ ++ ++ False ++ start ++ between pages ++ ++ ++ 2 ++ 2 ++ 2 ++ ++ ++ ++ ++ False ++ start ++ Distance: ++ True ++ sheetmarginsb ++ ++ ++ 0 ++ 3 ++ ++ ++ ++ ++ True ++ True ++ 0 ++ adjustment6 ++ ++ ++ 1 ++ 3 ++ ++ ++ ++ ++ False ++ start ++ to sheet border ++ ++ ++ 2 ++ 3 ++ 2 ++ ++ ++ ++ ++ True ++ False ++ start ++ Order: ++ True ++ orderbox ++ ++ ++ 0 ++ 4 ++ ++ ++ ++ ++ True ++ False ++ True ++ ++ Left to right, then down ++ Top to bottom, then right ++ Top to bottom, then left ++ Right to left, then down ++ ++ ++ ++ 1 ++ 4 ++ 3 ++ ++ ++ ++ ++ Draw a border around each page ++ True ++ True ++ False ++ start ++ True ++ True ++ ++ ++ 0 ++ 5 ++ 4 ++ ++ ++ ++ ++ Brochure ++ True ++ True ++ False ++ start ++ True ++ True ++ pagespersheetbtn ++ ++ ++ 0 ++ 6 ++ ++ ++ ++ ++ False ++ ++ ++ 1 ++ 6 ++ 3 ++ ++ ++ ++ ++ True ++ False ++ Collation preview ++ center ++ start ++ ++ ++ 4 ++ 4 ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + +- +- 0 +- 4 +- + +- +- ++ ++ + True + False +- True +- +- Left to right, then down +- Top to bottom, then right +- Top to bottom, then left +- Right to left, then down +- +- +- +- 1 +- 4 +- 3 +- +- +- +- +- Draw a border around each page +- True +- True +- False +- start ++ m_ore + True +- True + +- +- 0 +- 5 +- 4 +- + +- +- +- Brochure +- True +- True +- False +- start +- True +- True +- pagespersheetbtn +- +- +- 0 +- 6 +- +- +- +- +- False +- +- +- 1 +- 6 +- 3 +- +- +- +- +- True +- False +- Collation preview +- center +- start +- +- +- 4 +- 4 +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- True +- False +- m_ore +- True + ++ ++ 0 ++ 1 ++ + + +- +- 0 +- 2 +- 2 +- + + + ++ ++ ++ True ++ False ++ Page Layout ++ ++ ++ ++ ++ + +- +- +- +- True +- False +- Page Layout +- +- +- +- ++ ++ False ++ True ++ 2 ++ + + +- +- False +- True +- 2 +- + + + +- +- +- True +- False +- General +- +- +- False +- +- ++ ++ ++ ++ ++ True ++ False ++ General ++ ++ ++ False ++ ++ ++ ++ ++ True ++ False ++ 6 ++ vertical + +- +- True +- False +- 6 +- vertical +- +- +- +- +- +- 1 +- +- +- +- +- True +- False +- custom +- +- +- 1 +- False +- ++ + + + +- True +- True +- 0 ++ 1 ++ ++ ++ ++ ++ True ++ False ++ custom ++ ++ ++ 1 ++ False + + + + +- True ++ False + True + 1 + + + + +- True ++ False + True + 0 + +@@ -1278,6 +1291,18 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + + +-- +2.25.3 + diff --git a/office/libreoffice/libreoffice/files/0001-rhbz-1861794-csv-fixed-width-import-missing-split-ha.patch b/office/libreoffice/libreoffice/files/0001-rhbz-1861794-csv-fixed-width-import-missing-split-ha.patch new file mode 100644 index 0000000000..b76549d619 --- /dev/null +++ b/office/libreoffice/libreoffice/files/0001-rhbz-1861794-csv-fixed-width-import-missing-split-ha.patch @@ -0,0 +1,123 @@ +From 937d1d5be8d0c783fb5740aa50456f9941ac638b Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= +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 +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 + diff --git a/office/libreoffice/libreoffice/files/0001-rhbz-1918152-fix-FTBFS.patch b/office/libreoffice/libreoffice/files/0001-rhbz-1918152-fix-FTBFS.patch new file mode 100644 index 0000000000..b2502d108c --- /dev/null +++ b/office/libreoffice/libreoffice/files/0001-rhbz-1918152-fix-FTBFS.patch @@ -0,0 +1,26 @@ +From 8b8a49e14c1010c5ab325b64fc3b65524a6a6049 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= +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 +- + #include + #include + #include +-- +2.28.0 + diff --git a/office/libreoffice/libreoffice/pspec.xml b/office/libreoffice/libreoffice/pspec.xml index d60c5a0b8f..77ce0f66a5 100644 --- a/office/libreoffice/libreoffice/pspec.xml +++ b/office/libreoffice/libreoffice/pspec.xml @@ -13,69 +13,76 @@ app:gui LibreOffice office suite LibreOffice is an open source, multi-platform office productivity suite. It includes key desktop applications such as a word processor, a spreadsheet application, a presentation creator-viewer, a formula editor and a drawing program, with a user interface and feature set similar to other office suites. Sophisticated and flexible, LibreOffice also works transparently with a variety of file formats, including those of Microsoft Office. - http://download.documentfoundation.org/libreoffice/src/6.4.4/libreoffice-6.4.4.2.tar.xz - http://download.documentfoundation.org/libreoffice/src/6.4.4/libreoffice-dictionaries-6.4.4.2.tar.xz - http://download.documentfoundation.org/libreoffice/src/6.4.4/libreoffice-help-6.4.4.2.tar.xz - http://download.documentfoundation.org/libreoffice/src/6.4.4/libreoffice-translations-6.4.4.2.tar.xz + http://download.documentfoundation.org/libreoffice/src/7.1.1/libreoffice-7.1.1.2.tar.xz + http://download.documentfoundation.org/libreoffice/src/7.1.1/libreoffice-dictionaries-7.1.1.2.tar.xz + http://download.documentfoundation.org/libreoffice/src/7.1.1/libreoffice-help-7.1.1.2.tar.xz + http://download.documentfoundation.org/libreoffice/src/7.1.1/libreoffice-translations-7.1.1.2.tar.xz - https://dev-www.libreoffice.org/src/xmlsec1-1.2.28.tar.gz - http://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip - http://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip - http://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip - http://dev-www.libreoffice.org/src/commons-logging-1.2-src.tar.gz - http://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip - http://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip - http://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip - http://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip - http://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip - http://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip - http://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip - http://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip - http://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip - http://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz - https://dev-www.libreoffice.org/src/language-subtag-registry-2019-04-03.tar.bz2 - http://dev-www.libreoffice.org/src/collada2gltf-master-6258611a6a.tar.bz2 - http://dev-www.libreoffice.org/src/OpenCOLLADA-master-6509aa13af.tar.bz2 - http://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip - http://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip - http://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip - http://dev-www.libreoffice.org/src/libfreehand-0.1.2.tar.xz - https://dev-www.libreoffice.org/src/liborcus-0.15.3.tar.gz - http://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip - http://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz - https://dev-www.libreoffice.org/src/libabw-0.1.3.tar.xz - https://dev-www.libreoffice.org/src/libcmis-0.5.2.tar.xz - https://dev-www.libreoffice.org/src/libnumbertext-1.0.5.tar.xz - https://dev-www.libreoffice.org/src/lxml-4.1.1.tgz - http://dev-www.libreoffice.org/src/libexttextcat-3.4.5.tar.xz - https://dev-www.libreoffice.org/src/libmwaw-0.3.15.tar.xz - http://dev-www.libreoffice.org/src/libstaroffice-0.0.6.tar.xz - http://dev-www.libreoffice.org/src/libzmf-0.0.2.tar.xz - https://dev-www.libreoffice.org/src/libe-book-0.1.3.tar.xz - https://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz - https://dev-www.libreoffice.org/src/libqxp-0.0.2.tar.xz - http://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz - http://dev-www.libreoffice.org/src/a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz - http://dev-www.libreoffice.org/src/libgpg-error-1.27.tar.bz2 - https://dev-www.libreoffice.org/src/pdfium-3963.tar.bz2 - http://dev-www.libreoffice.org/src/gpgme-1.9.0.tar.bz2 - https://dev-www.libreoffice.org/src/libepoxy-1.5.3.tar.xz - http://dev-www.libreoffice.org/src/libassuan-2.5.1.tar.bz2 - https://dev-www.libreoffice.org/src/QR-Code-generator-1.4.0.tar.gz - https://dev-www.libreoffice.org/src/Firebird-3.0.0.32483-0.tar.bz2 - https://dev-www.libreoffice.org/src/CoinMP-1.7.6.tgz - https://dev-www.libreoffice.org/src/ltm-1.0.zip - https://dev-www.libreoffice.org/src/a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz - https://dev-www.libreoffice.org/extern/884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf - https://dev-www.libreoffice.org/src/b7cae45ad2c23551fd6ccb8ae2c1f59e-numbertext_0.9.5.oxt + https://dev-www.libreoffice.org/src/xmlsec1-1.2.30.tar.gz + http://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip + http://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip + http://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip + http://dev-www.libreoffice.org/src/commons-logging-1.2-src.tar.gz + http://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip + http://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip + http://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip + http://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip + http://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip + http://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip + http://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip + http://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip + http://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip + http://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz + https://dev-www.libreoffice.org/src/language-subtag-registry-2020-12-18.tar.bz2 + http://dev-www.libreoffice.org/src/collada2gltf-master-6258611a6a.tar.bz2 + http://dev-www.libreoffice.org/src/OpenCOLLADA-master-6509aa13af.tar.bz2 + http://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip + http://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip + http://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip + http://dev-www.libreoffice.org/src/libfreehand-0.1.2.tar.xz + https://dev-www.libreoffice.org/src/liborcus-0.16.1.tar.bz2 + http://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip + http://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz + https://dev-www.libreoffice.org/src/libabw-0.1.3.tar.xz + https://dev-www.libreoffice.org/src/libcmis-0.5.2.tar.xz + https://dev-www.libreoffice.org/src/libnumbertext-1.0.7.tar.xz + https://dev-www.libreoffice.org/src/lxml-4.1.1.tgz + http://dev-www.libreoffice.org/src/libexttextcat-3.4.5.tar.xz + https://dev-www.libreoffice.org/src/libmwaw-0.3.17.tar.xz + http://dev-www.libreoffice.org/src/libstaroffice-0.0.7.tar.xz + http://dev-www.libreoffice.org/src/libzmf-0.0.2.tar.xz + https://dev-www.libreoffice.org/src/libe-book-0.1.3.tar.xz + https://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz + https://dev-www.libreoffice.org/src/libqxp-0.0.2.tar.xz + http://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz + http://dev-www.libreoffice.org/src/a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz + http://dev-www.libreoffice.org/src/libgpg-error-1.37.tar.bz2 + https://dev-www.libreoffice.org/src/pdfium-4306.tar.bz2 + https://dev-www.libreoffice.org/src/gpgme-1.13.1.tar.bz2 + https://dev-www.libreoffice.org/src/libepoxy-1.5.3.tar.xz + https://dev-www.libreoffice.org/src/libassuan-2.5.3.tar.bz2 + https://dev-www.libreoffice.org/src/QR-Code-generator-1.4.0.tar.gz + https://dev-www.libreoffice.org/src/Firebird-3.0.0.32483-0.tar.bz2 + https://dev-www.libreoffice.org/src/CoinMP-1.7.6.tgz + https://dev-www.libreoffice.org/src/ltm-1.0.zip + https://dev-www.libreoffice.org/src/box2d-2.3.1.tar.gz + https://dev-www.libreoffice.org/src/dtoa-20180411.tgz + https://dev-www.libreoffice.org/src/a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz + https://dev-www.libreoffice.org/src/mariadb-connector-c-3.1.8-src.tar.gz + https://dev-www.libreoffice.org/src/skia-m88-59bafeeaa7de9eb753e3778c414e01dcf013dcd8.tar.xz + https://dev-www.libreoffice.org/extern/884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf + https://dev-www.libreoffice.org/extern/f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf + https://dev-www.libreoffice.org/src/b7cae45ad2c23551fd6ccb8ae2c1f59e-numbertext_0.9.5.oxt - http://dev-www.libreoffice.org/extern/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar - http://dev-www.libreoffice.org/extern/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar + http://dev-www.libreoffice.org/extern/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar + https://dev-www.libreoffice.org/extern/odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar + http://dev-www.libreoffice.org/extern/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar make-pyuno-work-with-system-wide-module-install.diff - 0001-don-t-suppress-crashes.patch - 0001-replace-boost-bimap-in-sdext-pdfimport.patch + 0001-rhbz-1918152-fix-FTBFS.patch + + xz-devel @@ -89,7 +96,7 @@ lcms2-devel boost-devel libSM-devel - jdk8-openjdk + jdk-openjdk libX11-devel libICE-devel libxslt-devel @@ -128,7 +135,7 @@ libvisio-devel doxygen liblangtag-devel - mdds-devel + mdds-devel glew-devel glm cppunit-devel @@ -211,7 +218,7 @@ libXinerama libjpeg-turbo gstreamer - jre8-openjdk-headless + jre-openjdk-headless gtk3 libX11 libxcb @@ -250,7 +257,10 @@ /usr/share/mime-info /usr/share/pixmaps /usr/share/appdata + /usr/share/metainfo /usr/share/bash-completion + /usr/lib/libreoffice/share/numbertext/mt.sor + /usr/lib/libreoffice/share/numbertext/lg.sor /usr/lib/python3.8 /usr/lib/libreoffice/program/soffice* /usr/lib/libreoffice/program/ui-previewer @@ -279,8 +289,11 @@ /usr/lib/libreoffice/program/libcanvastoolslo.so /usr/lib/libreoffice/program/libchartcontrollerlo.so /usr/lib/libreoffice/program/libchartcorelo.so + /usr/lib/libreoffice/program/libCgl.so.1 /usr/lib/libreoffice/program/libclewlo.so + /usr/lib/libreoffice/program/libClp.so.1 /usr/lib/libreoffice/program/libcmdmaillo.so + /usr/lib/libreoffice/program/libCoinMP.so.1 /usr/lib/libreoffice/program/libcollator_data.so /usr/lib/libreoffice/program/libcomphelper.so /usr/lib/libreoffice/program/libconfigmgrlo.so @@ -388,6 +401,8 @@ /usr/lib/libreoffice/program/libOGLTranslo.so /usr/lib/libreoffice/program/libooxlo.so /usr/lib/libreoffice/program/libopencllo.so + /usr/lib/libreoffice/program/libOsi.so.1 + /usr/lib/libreoffice/program/libOsiClp.so.1 /usr/lib/libreoffice/program/libpackage2.so /usr/lib/libreoffice/program/libpasswordcontainerlo.so /usr/lib/libreoffice/program/libpcrlo.so @@ -423,6 +438,7 @@ /usr/lib/libreoffice/program/libsduilo.so /usr/lib/libreoffice/program/libsfxlo.so /usr/lib/libreoffice/program/libsimplecanvaslo.so + /usr/lib/libreoffice/program/libskialo.so /usr/lib/libreoffice/program/libslideshowlo.so /usr/lib/libreoffice/program/libsmdlo.so /usr/lib/libreoffice/program/libsmlo.so @@ -616,6 +632,10 @@ /usr/lib/libreoffice/share/basic/Gimmicks /usr/lib/libreoffice/share/basic/ImportWizard /usr/lib/libreoffice/share/basic/ScriptBindingLibrary + /usr/lib/libreoffice/share/basic/ScriptForge + /usr/lib/libreoffice/share/basic/SFDatabases + /usr/lib/libreoffice/share/basic/SFDialogs + /usr/lib/libreoffice/share/basic/SFDocuments /usr/lib/libreoffice/share/basic/T* /usr/lib/libreoffice/share/basic/*.xlc /usr/lib/libreoffice/share/firebird/* @@ -639,6 +659,9 @@ /usr/lib/libreoffice/share/registry/impress.xcd /usr/lib/libreoffice/share/registry/math.xcd /usr/lib/libreoffice/share/registry/writer.xcd + /usr/lib/libreoffice/share/skia + /usr/lib/libreoffice/share/toolbarmode + /usr/lib/libreoffice/share/extensions/dict-tr/ /usr/lib/libreoffice/share/extensions/nlpsolver /usr/lib/libreoffice/share/extensions/wiki-publisher /usr/lib/libreoffice/share/extensions/package.txt @@ -2163,6 +2186,7 @@ /usr/lib/libreoffice/share/Scripts/python/LibreLogo/LibreLogo_et* /usr/lib/libreoffice/program/resource/et /usr/lib/libreoffice/share/numbertext/et.sor + /usr/lib/libreoffice/share/autocorr/acor_vro-EE.dat /usr/lib/libreoffice/share/wizards/resources_et* /usr/lib/libreoffice/share/wordbook/et.dic /usr/lib/libreoffice/share/extensions/dict-et @@ -2279,6 +2303,7 @@ /usr/lib/libreoffice/program/resource/ga /usr/lib/libreoffice/share/autocorr/acor_ga-IE.dat /usr/lib/libreoffice/share/fingerprint/ga* + /usr/lib/libreoffice/share/numbertext/ga.sor /usr/lib/libreoffice/share/Scripts/python/LibreLogo/LibreLogo_ga* /usr/lib/libreoffice/share/wizards/resources_ga* @@ -2466,6 +2491,7 @@ /usr/lib/libreoffice/program/resource/hu /usr/lib/libreoffice/share/numbertext/hu.sor /usr/lib/libreoffice/share/numbertext/Hung.sor + /usr/lib/libreoffice/share/numbertext/hu_Hung.sor /usr/lib/libreoffice/share/wizards/resources_hu* /usr/lib/libreoffice/share/wordbook/hu_AkH11.dic /usr/lib/libreoffice/share/extensions/dict-hu @@ -2665,6 +2691,7 @@ /usr/lib/libreoffice/share/registry/*ko.xcd /usr/lib/libreoffice/share/registry/res/*ko.xcd /usr/lib/libreoffice/share/autocorr/acor_ko-KR.dat + /usr/lib/libreoffice/share/extensions/dict-ko /usr/lib/libreoffice/share/basic/Depot/Lang_ko.xba /usr/lib/libreoffice/share/fingerprint/ko* /usr/lib/libreoffice/share/Scripts/python/LibreLogo/LibreLogo_ko.properties @@ -2882,6 +2909,7 @@ /usr/lib/libreoffice/share/registry/res/*mr.xcd /usr/lib/libreoffice/program/resource/mr /usr/lib/libreoffice/share/fingerprint/mr* + /usr/lib/libreoffice/share/numbertext/mr.sor /usr/lib/libreoffice/share/Scripts/python/LibreLogo/LibreLogo_mr* /usr/lib/libreoffice/share/wizards/resources_mr* @@ -3749,6 +3777,13 @@ + + 2021-03-10 + 7.1.1.2 + Version Bump + İdris Kalp + idriskalp@gmail.com + 2020-05-26 6.4.4.2