libreoffice:v.bump to lastest stable versiton 6.2.1.2
This commit is contained in:
+85
@@ -0,0 +1,85 @@
|
||||
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,66 +13,67 @@
|
||||
<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="916232612472a60b54ca3b8c5f2d81f4f4a71bd6" type="tarxz">http://download.documentfoundation.org/libreoffice/src/6.2.1/libreoffice-6.2.1.1.tar.xz</Archive>
|
||||
<Archive sha1sum="5c519a0835a380963bd862d0143ec11152ac53a2" type="binary" target="libreoffice-6.2.1.1/external/tarballs/">http://download.documentfoundation.org/libreoffice/src/6.2.1/libreoffice-dictionaries-6.2.1.1.tar.xz</Archive>
|
||||
<Archive sha1sum="21361a7be2a95940f4b256e9df257a7ca806d9e4" type="binary" target="libreoffice-6.2.1.1/external/tarballs/">http://download.documentfoundation.org/libreoffice/src/6.2.1/libreoffice-help-6.2.1.1.tar.xz</Archive>
|
||||
<Archive sha1sum="a11ea739257397c155710ecd9a436e94f650ec23" type="binary" target="libreoffice-6.2.1.1/external/tarballs/">http://download.documentfoundation.org/libreoffice/src/6.2.1/libreoffice-translations-6.2.1.1.tar.xz</Archive>
|
||||
|
||||
<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>
|
||||
|
||||
<!--External build dependencies-->
|
||||
<Archive sha1sum="0ef1117b8d11da475fd8d842a1341c675e627ab9" type="binary" target="libreoffice-6.2.1.1/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.1/external/tarballs/">http://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip</Archive>
|
||||
<Archive sha1sum="8a90669029e107b61953b90ba11545fef586c2ca" type="binary" target="libreoffice-6.2.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip</Archive>
|
||||
<Archive sha1sum="2d49e11b0b711970f494294dc3698f05eb294853" type="binary" target="libreoffice-6.2.1.1/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.1/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.1/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.1/external/tarballs/">http://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip</Archive>
|
||||
<Archive sha1sum="3232dd31859be4f7eb443c33e8e3287f394789a0" type="binary" target="libreoffice-6.2.1.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/external/tarballs/">http://dev-www.libreoffice.org/src/collada2gltf-master-6258611a6a.tar.bz2</Archive>
|
||||
<Archive sha1sum="c4f5760a1d21213dc52e2cf3ad9c0b9112585f36" type="binary" target="libreoffice-6.2.1.1/external/tarballs/">http://dev-www.libreoffice.org/src/OpenCOLLADA-master-6509aa13af.tar.bz2</Archive>
|
||||
<Archive sha1sum="7168b0f40aa5c72267899601c116d2348d2f56ec" type="binary" target="libreoffice-6.2.1.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/external/tarballs/">http://dev-www.libreoffice.org/src/pdfium-3550.tar.bz2</Archive>
|
||||
<Archive sha1sum="870719cd3d2ef6a7fcb1d6af9ce5446edba7bfc3" type="binary" target="libreoffice-6.2.1.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/external/tarballs/">https://dev-www.libreoffice.org/src/lxml-4.1.1.tgz</Archive>
|
||||
<Archive sha1sum="bd92f8c5ab55777c66492a6f3566d013f19c9bbe" type="binary" target="libreoffice-6.2.1.1/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.1/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.1/external/tarballs/">http://dev-www.libreoffice.org/extern/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar</Archive>
|
||||
<Archive sha1sum="f4772556920231cf164348e51285b0c18dfc7f5b" type="binary" target="libreoffice-6.2.1.1/external/tarballs/">http://dev-www.libreoffice.org/extern/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar</Archive>
|
||||
|
||||
<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>
|
||||
<!--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>
|
||||
|
||||
<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>
|
||||
@@ -104,7 +105,6 @@
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>gst-plugins-base-devel</Dependency>
|
||||
<Dependency versionFrom="3.22.8">gtk3-devel</Dependency>
|
||||
<!-- <Dependency versionFrom="2.24.31">gtk2-devel</Dependency> -->
|
||||
<Dependency>libatomic_ops-devel</Dependency>
|
||||
<Dependency>librsvg-devel</Dependency>
|
||||
<Dependency versionFrom="2.3.4">unixODBC-devel</Dependency>
|
||||
@@ -154,18 +154,14 @@
|
||||
<Dependency>cups</Dependency>
|
||||
<Dependency>curl</Dependency>
|
||||
<Dependency>dbus</Dependency>
|
||||
<!-- <Dependency versionFrom="2.24.31">gtk2</Dependency> -->
|
||||
<!-- <Dependency versionFrom="13.0.4">mesa</Dependency> -->
|
||||
<Dependency>nspr</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<!-- <Dependency>bzip2</Dependency> -->
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>expat</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>icu4c</Dependency>
|
||||
<Dependency>lcms2</Dependency>
|
||||
<Dependency>libSM</Dependency>
|
||||
<!-- <Dependency>libXt</Dependency> -->
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>libICE</Dependency>
|
||||
<Dependency>python3</Dependency>
|
||||
@@ -173,11 +169,9 @@
|
||||
<Dependency>libXext</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
<Dependency>libxslt</Dependency>
|
||||
<!-- <Dependency>openssl</Dependency> -->
|
||||
<Dependency>poppler</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>harfbuzz</Dependency>
|
||||
<!-- <Dependency>dbus-glib</Dependency> -->
|
||||
<Dependency>libXrandr</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
@@ -188,36 +182,32 @@
|
||||
<Dependency>jre7-openjdk-headless</Dependency>
|
||||
<Dependency versionFrom="3.22.8">gtk3</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<!-- <Dependency>libgcc</Dependency> -->
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
<!-- <Dependency>libwpd</Dependency> -->
|
||||
<Dependency>libwpg</Dependency>
|
||||
<!-- <Dependency>libwps</Dependency> -->
|
||||
<Dependency>graphite2</Dependency>
|
||||
<!-- <Dependency>libodfgen</Dependency> -->
|
||||
<Dependency>libodfgen</Dependency>
|
||||
<Dependency>openldap-client</Dependency>
|
||||
<!-- <Dependency>libetonyek</Dependency> -->
|
||||
<Dependency>liblangtag</Dependency>
|
||||
<!-- <Dependency>librevenge</Dependency> -->
|
||||
<Dependency>librevenge</Dependency>
|
||||
<Dependency>hunspell</Dependency>
|
||||
<Dependency>libvisio</Dependency>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>gst-plugins-base</Dependency>
|
||||
<Dependency>clucene</Dependency>
|
||||
<Dependency>neon</Dependency>
|
||||
<!-- <Dependency>glew</Dependency> -->
|
||||
<Dependency>libcdr</Dependency>
|
||||
<Dependency>libmspub</Dependency>
|
||||
<Dependency>libpagemaker</Dependency>
|
||||
<!-- <Dependency>rasqal</Dependency> -->
|
||||
<Dependency>redland</Dependency>
|
||||
<Dependency>libreoffice-writer</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/unopkg</Path>
|
||||
<Path fileType="executable">/usr/bin/libreoffice</Path>
|
||||
<Path fileType="executable">/usr/bin/soffice</Path>
|
||||
<Path fileType="executable">/usr/bin/loffice</Path>
|
||||
<Path fileType="executable">/usr/bin/lofromtemplate</Path>
|
||||
<Path fileType="executable">/usr/bin/lofromtemplate</Path>
|
||||
<Path fileType="config">/etc/libreoffice</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/soffice*</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/ui-previewer</Path>
|
||||
@@ -284,7 +274,7 @@
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/liblnglo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libloglo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/liblocaledata_en.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/liblocaledata_es.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/liblocaledata_es.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/liblocaledata_euro.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/liblocaledata_others.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libmcnttype.so</Path>
|
||||
@@ -371,9 +361,9 @@
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/versionrc</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/share/classification/example.xml</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/fonts</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/share/Scripts/java</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/share/Scripts/java</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/unopkg.1*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/lofromtemplate.1.gz</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/lofromtemplate.1.gz</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/libreoffice.1.gz</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/loffice.1.gz</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/CREDITS.fodt</Path>
|
||||
@@ -388,19 +378,19 @@
|
||||
<Path fileType="data">/usr/share/mimelnk</Path>
|
||||
<Path fileType="data">/usr/share/mime-info</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps/libreoffice-startcenter.png</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps/libreoffice-main.png</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps/libreoffice-main.png</Path>
|
||||
<Path fileType="data">/usr/share/appdata/org.libreoffice.kde.metainfo.xml</Path>
|
||||
<Path fileType="data">/usr/share/application-registry</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/xdg/startcenter.desktop</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/xdg/xsltfilter.desktop</Path>
|
||||
<Path fileType="data">/usr/share/applications/libreoffice-startcenter.desktop</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/presets</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/presets</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/dtd</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>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/emojiconfig</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/filter</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/filter</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/g*</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/l*</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/p*</Path>
|
||||
@@ -409,11 +399,11 @@
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/Scripts/Pyhon</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/numbertext/ms.sor</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/numbertext/no.sor</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/numbertext/sh.sor</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/numbertext/sh.sor</Path>
|
||||
<Path fileType="data">/usr/share/applications/startcenter.desktop</Path>
|
||||
<Path fileType="data">/usr/share/applications/xsltfilter.desktop</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/opencl</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/wizards</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/wizards</Path>
|
||||
<Path fileType="data">/usr/share/gir-1.0/LOKDocView-0.1.gir</Path>
|
||||
<Path fileType="data">/usr/lib/girepository-1.0/LOKDocView-0.1.typelib</Path>
|
||||
<Path fileType="data">/usr/share/bash-completion</Path>
|
||||
@@ -527,8 +517,8 @@
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/liborcus0.14.so.0</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libfwklo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libucpgio1lo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libvcllo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libofficebean.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libvcllo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libofficebean.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libtklo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libgpgme.so.11</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libsblo.so</Path>
|
||||
@@ -546,8 +536,9 @@
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libvclplug_gtklo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libscfiltlo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libforlo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libforuilo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libforuilo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libsclo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/services</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/program/regmerge</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/program/regview</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/program/types.rdb</Path>
|
||||
@@ -591,7 +582,7 @@
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/registry/ooldap.xcd.sample</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/xpdfimport/xpdfimport_err.pdf</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/fingerprint/fpdb.conf</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/program/services.rdb</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/program/services.rdb</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/program/java-set-classpath</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/registry/*.xcd.sample</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/apps/libreoffice-startcenter*</Path>
|
||||
@@ -603,7 +594,7 @@
|
||||
<Path fileType="data">/usr/share/icons/gnome/scalable/mimetypes/libreoffice-oasis-master-document*</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/mimetypes/libreoffice-oasis-master-document*</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome*/mimetypes/libreoffice-oasis-empty*</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/mimetypes/libreoffice-extension*</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/mimetypes/libreoffice-extension*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/apps/libreoffice-startcenter*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/apps/libreoffice-main*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/apps/libreoffice-chart*</Path>
|
||||
@@ -613,17 +604,17 @@
|
||||
<Path fileType="data">/usr/share/icons/hicolor/scalable/mimetypes/libreoffice-oasis-master-document*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/mimetypes/libreoffice-oasis-master-document*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor*/mimetypes/libreoffice-oasis-empty*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/mimetypes/libreoffice-extension*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/mimetypes/libreoffice-extension*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/*/apps/libreoffice-startcenter*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/*/apps/libreoffice-main*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/*/apps/libreoffice-chart*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/scalable/apps/libreoffice-startcenter*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/scalable/apps/libreoffice-main*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/scalable/apps/libreoffice-main*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/scalable/mimetypes/libreoffice-oasis-master-document*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/*/mimetypes/libreoffice-oasis-master-document*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor*/mimetypes/libreoffice-oasis-empty*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/*/mimetypes/libreoffice-extension*</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/program/xid-fullscreen-on-all-monitors</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/program/xid-fullscreen-on-all-monitors</Path>
|
||||
<!--FIXME When will add these language, following will move under own language -->
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/fingerprint/ha-NG.lm</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/fingerprint/emk-Latn.lm</Path>
|
||||
@@ -682,7 +673,7 @@
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/fingerprint/ln.lm</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/fingerprint/fj.lm</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/fingerprint/ur.lm</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/fingerprint/vep.lm</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/fingerprint/vep.lm</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/lib/libreoffice/program/intro.png">libreoffice-splash.png</AdditionalFile>
|
||||
@@ -710,6 +701,11 @@
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/lobase</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/program/librptlo.so</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/program/librptuilo.so</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/program/librptxmllo.so</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/program/libdbplo.so</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/program/libhsqldb.so</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/oobase.1*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/lobase.1.gz</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/program/sbase</Path>
|
||||
@@ -731,25 +727,20 @@
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/basic/ScriptBindingLibrary</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/program/libdbplo.so</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/program/libhsqldb.so</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/program/librptlo.so</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/program/librptuilo.so</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/program/librptxmllo.so</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/registry/base.xcd</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/registry/reportbuilder.xcd</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/config/soffice.cfg/dbaccess/ui</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/services</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/config/soffice.cfg/dbaccess/ui</Path>
|
||||
|
||||
<Path fileType="library">/usr/lib/libreoffice/share/config/soffice.cfg/modules/BasicIDE</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/share/config/soffice.cfg/modules/dbtable</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/share/config/soffice.cfg/modules/dbquery</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/share/config/soffice.cfg/modules/dbtdata</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/share/config/soffice.cfg/modules/dbtdata</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/apps/libreoffice-base*</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/apps/libreoffice-basic*</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/mimetypes/libreoffice-oasis-database*</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/mimetypes/libreoffice-oasis-database*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/apps/libreoffice-base*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/apps/libreoffice-basic*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/mimetypes/libreoffice-oasis-database*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/mimetypes/libreoffice-oasis-database*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/*/apps/libreoffice-base*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/*/mimetypes/libreoffice-oasis-database*</Path>
|
||||
</Files>
|
||||
@@ -759,7 +750,8 @@
|
||||
<Name>libreoffice-calc</Name>
|
||||
<Icon>libreoffice-calc</Icon>
|
||||
<Summary>Spreadsheet application for LibreOffice.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libwps</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
<Dependency>libodfgen</Dependency>
|
||||
@@ -782,19 +774,19 @@
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libdatelo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libnumbertextlo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libpricinglo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libscdlo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libscdlo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libscuilo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libsolverlo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libwpftcalclo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libvbaobjlo.so</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/registry/calc.xcd</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/config/soffice.cfg/modules/scalc</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/config/soffice.cfg/modules/scalc</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/apps/libreoffice-calc*</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/mimetypes/libreoffice-spreadsheet*</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/mimetypes/libreoffice-oasis-spreadsheet*</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/mimetypes/libreoffice-oasis-spreadsheet*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/apps/libreoffice-calc*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/mimetypes/libreoffice-spreadsheet*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/mimetypes/libreoffice-oasis-spreadsheet*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/mimetypes/libreoffice-oasis-spreadsheet*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/*/apps/libreoffice-calc*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/*/mimetypes/libreoffice-spreadsheet*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/*/mimetypes/libreoffice-oasis-spreadsheet*</Path>
|
||||
@@ -819,10 +811,10 @@
|
||||
<Path fileType="data">/usr/share/appdata/libreoffice-draw.appdata.xml</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/xdg/draw.desktop</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/registry/draw.xcd</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/config/soffice.cfg/modules/sdraw</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/config/soffice.cfg/modules/sdraw</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/apps/libreoffice-draw*</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/mimetypes/libreoffice-oasis-draw*</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/mimetypes/libreoffice-oasis-drawing*</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/mimetypes/libreoffice-oasis-drawing*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/apps/libreoffice-draw*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/mimetypes/libreoffice-oasis-drawing*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/mimetypes/libreoffice-oasis-draw*</Path>
|
||||
@@ -837,6 +829,10 @@
|
||||
<Icon>libreoffice-impress</Icon>
|
||||
<Summary>Presentation Application for LibreOffice.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libodfgen</Dependency>
|
||||
<Dependency>libetonyek</Dependency>
|
||||
<Dependency>librevenge</Dependency>
|
||||
<Dependency>libreoffice-common</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
@@ -858,13 +854,13 @@
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/config/soffice.cfg/simpress/transitions.xml</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/registry/impress.xcd</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/template/common/presnt</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/config/soffice.cfg/modules/simpress</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/config/soffice.cfg/modules/simpress</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/apps/libreoffice-impress*</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/mimetypes/libreoffice-presentation*</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/mimetypes/libreoffice-oasis-presentation*</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/mimetypes/libreoffice-oasis-presentation*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/apps/libreoffice-impress*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/mimetypes/libreoffice-presentation*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/mimetypes/libreoffice-oasis-presentation*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/mimetypes/libreoffice-oasis-presentation*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/*/apps/libreoffice-impress*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/*/mimetypes/libreoffice-presentation*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/*/mimetypes/libreoffice-oasis-presentation*</Path>
|
||||
@@ -876,6 +872,7 @@
|
||||
<Icon>libreoffice-math</Icon>
|
||||
<Summary>Equation Editor Application for LibreOffice.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libreoffice-common</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
@@ -889,22 +886,22 @@
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libsmdlo.so</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/registry/math.xcd</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/config/soffice.cfg/formula</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/config/soffice.cfg/modules/smath</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/config/soffice.cfg/modules/smath</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/apps/libreoffice-math*</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/mimetypes/libreoffice-math*</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/mimetypes/libreoffice-formula*</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/mimetypes/libreoffice-oasis-formula*</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/mimetypes/libreoffice-oasis-formula*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/*/apps/libreoffice-math*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/*/mimetypes/libreoffice-math*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/*/mimetypes/libreoffice-formula*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/*/mimetypes/libreoffice-oasis-formula*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/*/mimetypes/libreoffice-oasis-formula*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/apps/libreoffice-math*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/mimetypes/libreoffice-math*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/mimetypes/libreoffice-formula*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/mimetypes/libreoffice-oasis-formula*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
|
||||
<!--Daha sonradan bakılacak-->
|
||||
<!--Özellik eklenmeli-->
|
||||
<!--<Package>
|
||||
@@ -943,29 +940,38 @@
|
||||
<Icon>libreoffice-writer</Icon>
|
||||
<Summary>Word Processor Application for LibreOffice.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>icu4c</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libwpd</Dependency>
|
||||
<Dependency>libreoffice-common</Dependency>
|
||||
<Dependency>libwpg</Dependency>
|
||||
<Dependency>libwps</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
<Dependency>libodfgen</Dependency>
|
||||
<Dependency>libetonyek</Dependency>
|
||||
<Dependency>liblangtag</Dependency>
|
||||
<Dependency>librevenge</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/loweb</Path>
|
||||
<Path fileType="executable">/usr/bin/lowriter</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/pagein-writer</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/swriter</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libhwplo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/liblwpftlo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libmswordlo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libswuilo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libt602filterlo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libwpftwriterlo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libwriterfilterlo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libwriterlo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libhwplo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/liblwpftlo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libt602filterlo.so</Path>
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/libvbaswobjlo.so</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/registry/writer.xcd</Path>
|
||||
<Path fileType="data">/usr/share/man/man1/loweb.1.gz</Path>
|
||||
<Path fileType="data">/usr/share/man/man1/lowriter.1.gz</Path>
|
||||
<Path fileType="data">/usr/share/applications/libreoffice-writer.desktop</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps/libreoffice-writer.png</Path>
|
||||
<Path fileType="data">/usr/share/appdata/libreoffice-writer.appdata.xml</Path>
|
||||
<Path fileType="data">/usr/share/appdata/libreoffice-writer.appdata.xml</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/xdg/writer.desktop</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/template/common/internal</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/template/common/offi*</Path>
|
||||
@@ -974,18 +980,18 @@
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/template/common/wizard</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/config/soffice.cfg/modules/swriter</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/config/soffice.cfg/writerperfect</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/config/soffice.cfg/modules/swform</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/config/soffice.cfg/modules/sweb</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/config/wizard/web/buttons</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/config/wizard/form/styles</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/config/soffice.cfg/modules/swform</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/config/soffice.cfg/modules/sweb</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/apps/libreoffice-writer*</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/mimetypes/libreoffice-text*</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/mimetypes/libreoffice-oasis-text*</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/mimetypes/libreoffice-oasis-web*</Path>
|
||||
<Path fileType="data">/usr/share/icons/gnome/*/mimetypes/libreoffice-oasis-web*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/*/apps/libreoffice-writer*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/*/mimetypes/libreoffice-text*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/*/mimetypes/libreoffice-oasis-text*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/*/mimetypes/libreoffice-oasis-web*</Path>
|
||||
<Path fileType="data">/usr/share/icons/locolor/*/mimetypes/libreoffice-oasis-web*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/apps/libreoffice-writer*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/mimetypes/libreoffice-text*</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/mimetypes/libreoffice-oasis-text*</Path>
|
||||
@@ -1005,7 +1011,7 @@
|
||||
<Path fileType="data">/usr/lib/libreoffice/help/am</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
|
||||
<Package>
|
||||
<Name>libreoffice-help-ar</Name>
|
||||
<IsA>locale:ar</IsA>
|
||||
@@ -1041,7 +1047,7 @@
|
||||
<Dependency>libreoffice-common</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/lib/libreoffice/help/bg</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/help/bg</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
@@ -1457,7 +1463,7 @@
|
||||
<Dependency>libreoffice-common</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/lib/libreoffice/help/ko</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/help/ko</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
@@ -1473,7 +1479,7 @@
|
||||
<Path fileType="data">/usr/lib/libreoffice/help/km</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
|
||||
<Package>
|
||||
<Name>libreoffice-help-lo</Name>
|
||||
<IsA>locale:lo</IsA>
|
||||
@@ -1486,7 +1492,7 @@
|
||||
<Path fileType="data">/usr/lib/libreoffice/help/lo</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
|
||||
<Package>
|
||||
<Name>libreoffice-help-lt</Name>
|
||||
<IsA>locale:lt</IsA>
|
||||
@@ -1499,7 +1505,7 @@
|
||||
<Path fileType="data">/usr/lib/libreoffice/help/lt</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
|
||||
<Package>
|
||||
<Name>libreoffice-help-lv</Name>
|
||||
<IsA>locale:lv</IsA>
|
||||
@@ -1629,7 +1635,7 @@
|
||||
<Path fileType="data">/usr/lib/libreoffice/help/pt-BR</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
|
||||
<Package>
|
||||
<Name>libreoffice-help-ro</Name>
|
||||
<IsA>locale:ro</IsA>
|
||||
@@ -1668,7 +1674,7 @@
|
||||
<Path fileType="data">/usr/lib/libreoffice/help/si</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
|
||||
<Package>
|
||||
<Name>libreoffice-help-sid</Name>
|
||||
<IsA>locale:sid</IsA>
|
||||
@@ -1733,7 +1739,7 @@
|
||||
<Path fileType="data">/usr/lib/libreoffice/help/sv</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
|
||||
<Package>
|
||||
<Name>libreoffice-help-ta</Name>
|
||||
<IsA>locale:ta</IsA>
|
||||
@@ -1887,7 +1893,7 @@
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/registry/*ar.xcd</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/registry/res/*_ar.xcd</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/fingerprint/ar*</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/Scripts/python/LibreLogo/LibreLogo_ar*</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/Scripts/python/LibreLogo/LibreLogo_ar*</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/program/resource/ar</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/wizards/resources_ar*</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/wordbook/ar.dic</Path>
|
||||
@@ -1947,7 +1953,7 @@
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/wordbook/be.dic</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
|
||||
<Package>
|
||||
<Name>libreoffice-bg</Name>
|
||||
<IsA>locale:bg</IsA>
|
||||
@@ -2210,7 +2216,7 @@
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/wordbook/dgo.dic</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
|
||||
<Package>
|
||||
<Name>libreoffice-dsb</Name>
|
||||
<IsA>locale:dsb</IsA>
|
||||
@@ -2344,7 +2350,7 @@
|
||||
<Path fileType="data">/usr/lib/libreoffice/program/resource/eo</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/numbertext/eo.sor</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/wizards/resources_eo*</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/wordbook/eo.dic</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/wordbook/eo.dic</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
@@ -2467,7 +2473,7 @@
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/wizards/resources_fr*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
|
||||
<Package>
|
||||
<Name>libreoffice-fy</Name>
|
||||
<IsA>locale:fy</IsA>
|
||||
@@ -2555,7 +2561,7 @@
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/wizards/resources_gu.properties</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
|
||||
<Package>
|
||||
<Name>libreoffice-gug</Name>
|
||||
<IsA>locale:gug</IsA>
|
||||
@@ -2572,7 +2578,7 @@
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/wizards/resources_gug.properties</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
|
||||
<Package>
|
||||
<Name>libreoffice-gv</Name>
|
||||
<IsA>locale:gv</IsA>
|
||||
@@ -2643,7 +2649,7 @@
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/wizards/resources_hr*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
|
||||
<Package>
|
||||
<Name>libreoffice-hsb</Name>
|
||||
<IsA>locale:hsb</IsA>
|
||||
@@ -2778,7 +2784,7 @@
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/wizards/resources_ka.properties</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
|
||||
<Package>
|
||||
<Name>libreoffice-kab</Name>
|
||||
<IsA>locale:kab</IsA>
|
||||
@@ -3843,7 +3849,7 @@
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/wizards/resources_ve.properties</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
|
||||
<Package>
|
||||
<Name>libreoffice-vec</Name>
|
||||
<IsA>locale:vec</IsA>
|
||||
@@ -3957,6 +3963,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="12">
|
||||
<Date>2019-03-15</Date>
|
||||
<Version>6.2.1.2</Version>
|
||||
<Comment>Version Bump to lastest stable version</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="11">
|
||||
<Date>2019-02-25</Date>
|
||||
<Version>6.2.1.1</Version>
|
||||
|
||||
Reference in New Issue
Block a user