Merge pull request #6689 from ayhanyalcinsoy/master
libreoffice:v.bump to 6.2.2.2
This commit is contained in:
-85
@@ -1,85 +0,0 @@
|
||||
From 115f3749a737de337f6b456dcc84b6e3a6fdfc0e Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= <caolanm@redhat.com>
|
||||
Date: Thu, 21 Feb 2019 15:57:22 +0000
|
||||
Subject: [PATCH] menu of currency combobox in format-cells is too narrow
|
||||
|
||||
we want the combobox to be narrower than it wants to be. To make that happen
|
||||
we have only the option of shrinking the cell renderer of the combobox area.
|
||||
And that is also used by the menu.
|
||||
|
||||
Setting a small value of e.g. 1 works to let the combobox not request more
|
||||
width than that, and the combobox will correctly render within the wider size
|
||||
it actually gets. But then the menu is a min width menu, which is undesirable,
|
||||
we want the menu to be as wide as it can be.
|
||||
|
||||
So calculate what part of the combobox belongs to the cell area and set
|
||||
the widest cell area we can within the overall combobox width, resulting
|
||||
in the widest menu we can get.
|
||||
|
||||
Change-Id: Ie3e9960a320a70471ac21d2a88f32632cafa951f
|
||||
Reviewed-on: https://gerrit.libreoffice.org/68168
|
||||
Tested-by: Jenkins
|
||||
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
|
||||
---
|
||||
cui/source/tabpages/numfmt.cxx | 2 +-
|
||||
vcl/unx/gtk3/gtk3gtkinst.cxx | 23 +++++++++++++++++------
|
||||
2 files changed, 18 insertions(+), 7 deletions(-)
|
||||
|
||||
diff --git a/cui/source/tabpages/numfmt.cxx b/cui/source/tabpages/numfmt.cxx
|
||||
index b6a4a8ba4d5c..d202232b951d 100644
|
||||
--- a/cui/source/tabpages/numfmt.cxx
|
||||
+++ b/cui/source/tabpages/numfmt.cxx
|
||||
@@ -234,7 +234,7 @@ SvxNumberFormatTabPage::SvxNumberFormatTabPage(TabPageParent pParent,
|
||||
auto nWidth = approximate_char_width() * 26;
|
||||
m_xLbCategory->set_size_request(nWidth, m_xLbCategory->get_height_rows(7));
|
||||
m_xLbFormat->set_size_request(nWidth, m_xLbFormat->get_height_rows(5));
|
||||
- m_xLbCurrency->set_size_request(1, -1); // width of 1, so real width will be that of its LbFormat sibling
|
||||
+ m_xLbCurrency->set_size_request(nWidth, -1); // width of 1, so real width will be that of its LbFormat sibling
|
||||
|
||||
// Initially remove the "Automatically" entry.
|
||||
m_xLbCurrency->set_active(-1); // First ensure that nothing is selected.
|
||||
diff --git a/vcl/unx/gtk3/gtk3gtkinst.cxx b/vcl/unx/gtk3/gtk3gtkinst.cxx
|
||||
index a9fdfd3615eb..e81f451f7fa0 100644
|
||||
--- a/vcl/unx/gtk3/gtk3gtkinst.cxx
|
||||
+++ b/vcl/unx/gtk3/gtk3gtkinst.cxx
|
||||
@@ -6978,20 +6978,31 @@ public:
|
||||
// tweak the cell render to get a narrower size to stick
|
||||
GList* cells = gtk_cell_layout_get_cells(GTK_CELL_LAYOUT(m_pComboBox));
|
||||
GtkCellRenderer* cell = static_cast<GtkCellRenderer*>(cells->data);
|
||||
- GtkRequisition size;
|
||||
- gtk_cell_renderer_get_preferred_size(cell, m_pWidget, &size, nullptr);
|
||||
- if (nWidth < size.width)
|
||||
+
|
||||
+ if (nWidth != -1)
|
||||
{
|
||||
// this bit isn't great, I really want to be able to ellipse the text in the comboboxtext itself and let
|
||||
- // the popup menu render them in full, in the interim ellipse both
|
||||
+ // the popup menu render them in full, in the interim ellipse both of them
|
||||
g_object_set(G_OBJECT(m_pTextRenderer), "ellipsize", PANGO_ELLIPSIZE_MIDDLE, nullptr);
|
||||
- gtk_cell_renderer_set_fixed_size(cell, nWidth, size.height);
|
||||
+
|
||||
+ // to find out how much of the width of the combobox belongs to the cell, set
|
||||
+ // the cell and widget to the min cell width and see what the difference is
|
||||
+ int min;
|
||||
+ gtk_cell_renderer_get_preferred_width(cell, m_pWidget, &min, nullptr);
|
||||
+ gtk_cell_renderer_set_fixed_size(cell, min, -1);
|
||||
+ gtk_widget_set_size_request(m_pWidget, min, -1);
|
||||
+ int nNonCellWidth = get_preferred_size().Width() - min;
|
||||
+
|
||||
+ // now set the cell to the max width which it can be within the
|
||||
+ // requested widget width
|
||||
+ gtk_cell_renderer_set_fixed_size(cell, nWidth - nNonCellWidth, -1);
|
||||
}
|
||||
else
|
||||
{
|
||||
g_object_set(G_OBJECT(m_pTextRenderer), "ellipsize", PANGO_ELLIPSIZE_NONE, nullptr);
|
||||
- gtk_cell_renderer_set_fixed_size(cell, -1, size.height);
|
||||
+ gtk_cell_renderer_set_fixed_size(cell, -1, -1);
|
||||
}
|
||||
+
|
||||
g_list_free(cells);
|
||||
|
||||
gtk_widget_set_size_request(m_pWidget, nWidth, nHeight);
|
||||
--
|
||||
2.21.0
|
||||
|
||||
@@ -13,67 +13,66 @@
|
||||
<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="98bf67f77fb351d227e27e43396bb902ab8f31a8" type="tarxz">http://download.documentfoundation.org/libreoffice/src/6.2.1/libreoffice-6.2.1.2.tar.xz</Archive>
|
||||
<Archive sha1sum="ca5eca2df8044c6457450ba7c34406b528458b0a" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://download.documentfoundation.org/libreoffice/src/6.2.1/libreoffice-dictionaries-6.2.1.2.tar.xz</Archive>
|
||||
<Archive sha1sum="3e1f9f9db54c2e06df5a7378b7596b73668bd616" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://download.documentfoundation.org/libreoffice/src/6.2.1/libreoffice-help-6.2.1.2.tar.xz</Archive>
|
||||
<Archive sha1sum="7b0e954f85a6dce9391f2b79a72af327d217903f" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://download.documentfoundation.org/libreoffice/src/6.2.1/libreoffice-translations-6.2.1.2.tar.xz</Archive>
|
||||
<Archive sha1sum="3457782270320c6db41e55748107570a51dc4d94" type="tarxz">http://download.documentfoundation.org/libreoffice/src/6.2.2/libreoffice-6.2.2.2.tar.xz</Archive>
|
||||
<Archive sha1sum="f51ceea195be35128986a0098add2cb346be0a6a" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://download.documentfoundation.org/libreoffice/src/6.2.2/libreoffice-dictionaries-6.2.2.2.tar.xz</Archive>
|
||||
<Archive sha1sum="0b59ee8e896a52fa3f459139054b7955835895be" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://download.documentfoundation.org/libreoffice/src/6.2.2/libreoffice-help-6.2.2.2.tar.xz</Archive>
|
||||
<Archive sha1sum="41ba2aae0dc54a53a3e15212ddab6b7d8b88e4ba" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://download.documentfoundation.org/libreoffice/src/6.2.2/libreoffice-translations-6.2.2.2.tar.xz</Archive>
|
||||
|
||||
<!--External build dependencies-->
|
||||
<Archive sha1sum="0ef1117b8d11da475fd8d842a1341c675e627ab9" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/xmlsec1-1.2.25.tar.gz</Archive>
|
||||
<Archive sha1sum="1acea86fd399ed7817879d36370d3d1f8b109050" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip</Archive>
|
||||
<Archive sha1sum="8a90669029e107b61953b90ba11545fef586c2ca" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip</Archive>
|
||||
<Archive sha1sum="2d49e11b0b711970f494294dc3698f05eb294853" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip</Archive>
|
||||
<Archive sha1sum="0a134d01e9aeb09b33f4c7450fb41abb7bed9db6" type="binary" target="libreoffice-6.2.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-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip</Archive>
|
||||
<Archive sha1sum="b92930010622906778f713fb8f0153fa0683d018" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip</Archive>
|
||||
<Archive sha1sum="3232dd31859be4f7eb443c33e8e3287f394789a0" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip</Archive>
|
||||
<Archive sha1sum="47b58e0ef2d856df26372a7061ae43fae6e08051" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip</Archive>
|
||||
<Archive sha1sum="5ecb895ffc1eff2c381fa78d2197d0c57422b3df" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip</Archive>
|
||||
<Archive sha1sum="a637c0c3ad3be32d6814972e1c45e547c5f6359d" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip</Archive>
|
||||
<Archive sha1sum="e393beea80d36ff27b732882c706826988a64f5c" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip</Archive>
|
||||
<Archive sha1sum="b19ad429273abb116432eae3af955ecaf1ab5b17" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip</Archive>
|
||||
<Archive sha1sum="65dfba9970bb862d09c1f9e636b86b22f05d3936" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip</Archive>
|
||||
<Archive sha1sum="452eba922e4f41603539c9dc39947d2271e47093" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz</Archive>
|
||||
<Archive sha1sum="a6fe98f8966d2deb6cf30009d28e39ea56b304c6" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/language-subtag-registry-2017-12-14.tar.bz2</Archive>
|
||||
<Archive sha1sum="6cc86629f8d276ab1c45c3f337674284fab4eff6" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/collada2gltf-master-6258611a6a.tar.bz2</Archive>
|
||||
<Archive sha1sum="c4f5760a1d21213dc52e2cf3ad9c0b9112585f36" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/OpenCOLLADA-master-6509aa13af.tar.bz2</Archive>
|
||||
<Archive sha1sum="7168b0f40aa5c72267899601c116d2348d2f56ec" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip</Archive>
|
||||
<Archive sha1sum="719ab0d7b711650c787fe9bfb51109321d21e07b" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/libgltf/libgltf-0.1.0.tar.gz</Archive>
|
||||
<Archive sha1sum="3478ebc27bb76025f4b5c2ae6a9bac6090e2cb09" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip</Archive>
|
||||
<Archive sha1sum="1acd76cd63f7b19f6a0252eb029c3cb13a25aa9b" type="binary" target="libreoffice-6.2.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-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/libfreehand-0.1.2.tar.xz</Archive>
|
||||
<Archive sha1sum="97e14d618652e6b57447b73a8cfc89b54f2845ec" type="binary" target="libreoffice-6.2.1.2/external/tarballs">http://dev-www.libreoffice.org/src/liborcus-0.14.1.tar.gz</Archive>
|
||||
<Archive sha1sum="76497846de1f3d2ef438d79e31328107658d10be" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip</Archive>
|
||||
<Archive sha1sum="0556c392beb59433e577e3517575801212201df6" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz</Archive>
|
||||
<Archive sha1sum="6d6327d7c7a26c173993604e68915e226fb5185c" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/libabw-0.1.2.tar.xz</Archive>
|
||||
<Archive sha1sum="feca71d94d2c6e6d5565ff2a3210ba61fb2451d9" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/libcmis-0.5.2.tar.xz</Archive>
|
||||
<Archive sha1sum="dd6b4163c752a44384f309f8dabb830161f5f85f" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/libexttextcat-3.4.5.tar.xz</Archive>
|
||||
<Archive sha1sum="f317eeb678e04bc854fc4905ac221bc2c0bce27d" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/libmwaw-0.3.14.tar.xz</Archive>
|
||||
<Archive sha1sum="d4f0ab61702fe24f3d89ec625616583e77a33697" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/libstaroffice-0.0.6.tar.xz</Archive>
|
||||
<Archive sha1sum="c0dc491800f4aa24960d20fa38b9f84df1c15e07" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/libzmf-0.0.2.tar.xz</Archive>
|
||||
<Archive sha1sum="815216ecc4c8cac1cc5905ca3fb5d6168c1deac4" type="binary" target="libreoffice-6.2.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-6.2.1.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.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/libgpg-error-1.27.tar.bz2</Archive>
|
||||
<Archive sha1sum="11a3329bd6b0b910c5d60d4562e3a152588942f8" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/xmlsec1-1.2.27.tar.gz</Archive>
|
||||
<Archive sha1sum="04b0116d3fa5eaabea94fed75fc30ae75916c071" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/pdfium-3550.tar.bz2</Archive>
|
||||
<Archive sha1sum="870719cd3d2ef6a7fcb1d6af9ce5446edba7bfc3" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/gpgme-1.9.0.tar.bz2</Archive>
|
||||
<Archive sha1sum="562299851abb92a9e000d96f87a9e80aee80bf17" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/libepoxy-1.5.2.tar.xz</Archive>
|
||||
<Archive sha1sum="c8432695bf1daa914a92f51e911881ed93d50604" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/src/libassuan-2.5.1.tar.bz2</Archive>
|
||||
<Archive sha1sum="18fde9588c236d51eea9437ed882d8b751daf01f" type="binary" target="libreoffice-6.2.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-6.2.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz</Archive>
|
||||
<Archive sha1sum="f0e1b3d7996f2340a95309b61d9b27b596aca3da" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/libqxp-0.0.2.tar.xz</Archive>
|
||||
<Archive sha1sum="b6b284acde2ad7ed49b44e856955d7b1ea4e9459" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/boost_1_66_0.tar.bz2</Archive>
|
||||
<Archive sha1sum="2b599daeeb07ecd14ea0f7633accd67ab3fedea9" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/libnumbertext-1.0.5.tar.xz</Archive>
|
||||
<Archive sha1sum="154279bc5939d7099697887ea15c5ca921abeaeb" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/lxml-4.1.1.tgz</Archive>
|
||||
<Archive sha1sum="bd92f8c5ab55777c66492a6f3566d013f19c9bbe" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">https://dev-www.libreoffice.org/src/a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz</Archive>
|
||||
<Archive sha1sum="ad0f4351a484ac9b5422beae749719299bdfcfb8" type="binary" target="libreoffice-6.2.1.2/external/tarballs/">https://dev-www.libreoffice.org/extern/49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63-opens___.ttf</Archive>
|
||||
<Archive sha1sum="0ef1117b8d11da475fd8d842a1341c675e627ab9" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/xmlsec1-1.2.25.tar.gz</Archive>
|
||||
<Archive sha1sum="1acea86fd399ed7817879d36370d3d1f8b109050" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip</Archive>
|
||||
<Archive sha1sum="8a90669029e107b61953b90ba11545fef586c2ca" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip</Archive>
|
||||
<Archive sha1sum="2d49e11b0b711970f494294dc3698f05eb294853" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip</Archive>
|
||||
<Archive sha1sum="0a134d01e9aeb09b33f4c7450fb41abb7bed9db6" type="binary" target="libreoffice-6.2.2.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.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip</Archive>
|
||||
<Archive sha1sum="b92930010622906778f713fb8f0153fa0683d018" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip</Archive>
|
||||
<Archive sha1sum="3232dd31859be4f7eb443c33e8e3287f394789a0" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip</Archive>
|
||||
<Archive sha1sum="47b58e0ef2d856df26372a7061ae43fae6e08051" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip</Archive>
|
||||
<Archive sha1sum="5ecb895ffc1eff2c381fa78d2197d0c57422b3df" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip</Archive>
|
||||
<Archive sha1sum="a637c0c3ad3be32d6814972e1c45e547c5f6359d" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip</Archive>
|
||||
<Archive sha1sum="e393beea80d36ff27b732882c706826988a64f5c" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip</Archive>
|
||||
<Archive sha1sum="b19ad429273abb116432eae3af955ecaf1ab5b17" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip</Archive>
|
||||
<Archive sha1sum="65dfba9970bb862d09c1f9e636b86b22f05d3936" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip</Archive>
|
||||
<Archive sha1sum="452eba922e4f41603539c9dc39947d2271e47093" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz</Archive>
|
||||
<Archive sha1sum="a6fe98f8966d2deb6cf30009d28e39ea56b304c6" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/language-subtag-registry-2017-12-14.tar.bz2</Archive>
|
||||
<Archive sha1sum="6cc86629f8d276ab1c45c3f337674284fab4eff6" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/collada2gltf-master-6258611a6a.tar.bz2</Archive>
|
||||
<Archive sha1sum="c4f5760a1d21213dc52e2cf3ad9c0b9112585f36" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/OpenCOLLADA-master-6509aa13af.tar.bz2</Archive>
|
||||
<Archive sha1sum="7168b0f40aa5c72267899601c116d2348d2f56ec" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip</Archive>
|
||||
<Archive sha1sum="719ab0d7b711650c787fe9bfb51109321d21e07b" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/libgltf/libgltf-0.1.0.tar.gz</Archive>
|
||||
<Archive sha1sum="3478ebc27bb76025f4b5c2ae6a9bac6090e2cb09" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip</Archive>
|
||||
<Archive sha1sum="1acd76cd63f7b19f6a0252eb029c3cb13a25aa9b" type="binary" target="libreoffice-6.2.2.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.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/libfreehand-0.1.2.tar.xz</Archive>
|
||||
<Archive sha1sum="97e14d618652e6b57447b73a8cfc89b54f2845ec" type="binary" target="libreoffice-6.2.2.2/external/tarballs">http://dev-www.libreoffice.org/src/liborcus-0.14.1.tar.gz</Archive>
|
||||
<Archive sha1sum="76497846de1f3d2ef438d79e31328107658d10be" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip</Archive>
|
||||
<Archive sha1sum="0556c392beb59433e577e3517575801212201df6" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz</Archive>
|
||||
<Archive sha1sum="6d6327d7c7a26c173993604e68915e226fb5185c" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">https://dev-www.libreoffice.org/src/libabw-0.1.2.tar.xz</Archive>
|
||||
<Archive sha1sum="feca71d94d2c6e6d5565ff2a3210ba61fb2451d9" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">https://dev-www.libreoffice.org/src/libcmis-0.5.2.tar.xz</Archive>
|
||||
<Archive sha1sum="dd6b4163c752a44384f309f8dabb830161f5f85f" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/libexttextcat-3.4.5.tar.xz</Archive>
|
||||
<Archive sha1sum="f317eeb678e04bc854fc4905ac221bc2c0bce27d" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/libmwaw-0.3.14.tar.xz</Archive>
|
||||
<Archive sha1sum="d4f0ab61702fe24f3d89ec625616583e77a33697" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/libstaroffice-0.0.6.tar.xz</Archive>
|
||||
<Archive sha1sum="c0dc491800f4aa24960d20fa38b9f84df1c15e07" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/libzmf-0.0.2.tar.xz</Archive>
|
||||
<Archive sha1sum="815216ecc4c8cac1cc5905ca3fb5d6168c1deac4" type="binary" target="libreoffice-6.2.2.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.2.2.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.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/libgpg-error-1.27.tar.bz2</Archive>
|
||||
<Archive sha1sum="11a3329bd6b0b910c5d60d4562e3a152588942f8" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/xmlsec1-1.2.27.tar.gz</Archive>
|
||||
<Archive sha1sum="04b0116d3fa5eaabea94fed75fc30ae75916c071" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/pdfium-3550.tar.bz2</Archive>
|
||||
<Archive sha1sum="870719cd3d2ef6a7fcb1d6af9ce5446edba7bfc3" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/gpgme-1.9.0.tar.bz2</Archive>
|
||||
<Archive sha1sum="562299851abb92a9e000d96f87a9e80aee80bf17" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">https://dev-www.libreoffice.org/src/libepoxy-1.5.2.tar.xz</Archive>
|
||||
<Archive sha1sum="c8432695bf1daa914a92f51e911881ed93d50604" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">http://dev-www.libreoffice.org/src/libassuan-2.5.1.tar.bz2</Archive>
|
||||
<Archive sha1sum="18fde9588c236d51eea9437ed882d8b751daf01f" type="binary" target="libreoffice-6.2.2.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.2.2.2/external/tarballs/">https://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz</Archive>
|
||||
<Archive sha1sum="f0e1b3d7996f2340a95309b61d9b27b596aca3da" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">https://dev-www.libreoffice.org/src/libqxp-0.0.2.tar.xz</Archive>
|
||||
<Archive sha1sum="b6b284acde2ad7ed49b44e856955d7b1ea4e9459" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">https://dev-www.libreoffice.org/src/boost_1_66_0.tar.bz2</Archive>
|
||||
<Archive sha1sum="2b599daeeb07ecd14ea0f7633accd67ab3fedea9" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">https://dev-www.libreoffice.org/src/libnumbertext-1.0.5.tar.xz</Archive>
|
||||
<Archive sha1sum="154279bc5939d7099697887ea15c5ca921abeaeb" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">https://dev-www.libreoffice.org/src/lxml-4.1.1.tgz</Archive>
|
||||
<Archive sha1sum="bd92f8c5ab55777c66492a6f3566d013f19c9bbe" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">https://dev-www.libreoffice.org/src/a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz</Archive>
|
||||
<Archive sha1sum="ad0f4351a484ac9b5422beae749719299bdfcfb8" type="binary" target="libreoffice-6.2.2.2/external/tarballs/">https://dev-www.libreoffice.org/extern/49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63-opens___.ttf</Archive>
|
||||
<!--for test suit-->
|
||||
<Archive sha1sum="a2aaff3c6e19d7442295ca8a1c39e8c3a8b4081a" type="binary" target="libreoffice-6.2.1.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.2.1.2/external/tarballs/">http://dev-www.libreoffice.org/extern/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar</Archive>
|
||||
<Archive sha1sum="a2aaff3c6e19d7442295ca8a1c39e8c3a8b4081a" type="binary" target="libreoffice-6.2.2.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.2.2.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-menu-of-currency-combobox-in-format-cells-is-too-nar.patch</Patch>
|
||||
</Patches>
|
||||
<BuildDependencies>
|
||||
<Dependency>ant</Dependency>
|
||||
@@ -3963,10 +3962,17 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="13">
|
||||
<Date>2019-03-26</Date>
|
||||
<Version>6.2.2.2</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="12">
|
||||
<Date>2019-03-15</Date>
|
||||
<Date>2019-03-12</Date>
|
||||
<Version>6.2.1.2</Version>
|
||||
<Comment>Version Bump to lastest stable version</Comment>
|
||||
<Comment>Version Bump to stable version</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
|
||||
Reference in New Issue
Block a user