Your message dated Sun, 18 Nov 2018 11:09:14 +0000
with message-id <e1gokx0-0007ei...@fasolo.debian.org>
and subject line Bug#913360: fixed in libreoffice 1:6.2.0~beta1-1
has caused the Debian Bug report #913360,
regarding libreoffice-base-drivers: please switch to libmariadb-java
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)
--
913360: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=913360
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libreoffice-base-drivers
Version: 1:6.1.3-1
Severity: important
Tags: patch
Hello,
we would like to remove libmysql-java from Debian because it is
frequently affected by security vulnerabilities which are not fully
disclosed. This makes it hard to determine the impact of such a flaw.[1]
However we also have libmariadb-java which is a drop-in replacement
and upstream is more transparent about security issues.
Please find attached two patches that make the necessary changes to
the Debian packaging.
The 0001 patch can be applied for the Debian packaging. The 0002 patch must
be applied against the upstream sources. We have to replace the old
MySQL driver class with the new one from MariaDB. Except for that
libmariadb-java should just work.
[1] https://bugs.debian.org/912916
Regards,
Markus
>From 4fc33bd9b4969842bd092bbe62b4f119da749316 Mon Sep 17 00:00:00 2001
From: Markus Koschany <a...@debian.org>
Date: Fri, 9 Nov 2018 22:00:34 +0100
Subject: [PATCH] Switch from libmysql-java to libmariadb-java.
---
control.in | 4 ++--
libreoffice-base.bug-control | 2 +-
patches/jdbc-driver-classpaths.diff | 4 ++--
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/control.in b/control.in
index a01b846b..3ee62c2c 100644
--- a/control.in
+++ b/control.in
@@ -581,7 +581,7 @@ Depends: libreoffice-core, ${shlibs:Depends},
${misc:Depends}
Architecture: %OOO_BASE_ARCHS%
Section: database
Suggests: libreoffice-sdbc-postgresql | odbc-postgresql | libpg-java,
- libreoffice-mysql-connector | libmyodbc | libmysql-java,
+ libreoffice-mysql-connector | libmyodbc | libmariadb-java,
libsqliteodbc | tdsodbc | mdbtools,
libjtds-java,
Recommends: libreoffice-sdbc-hsqldb [%OOO_JAVA_ARCHS%],
${base-firebird-recommends}
@@ -610,7 +610,7 @@ Description: Database connectivity drivers for LibreOffice
- SQLite
- MS SQL / Sybase SQL
- *.mdb (JET / MS Access)
- * libmysql-java | libpg-java | libjtds-java: JDBC Drivers
+ * libmariadb-java | libpg-java | libjtds-java: JDBC Drivers
for:
- MySQL
- PostgreSQL
diff --git a/libreoffice-base.bug-control b/libreoffice-base.bug-control
index 67cfb8ba..26be7127 100644
--- a/libreoffice-base.bug-control
+++ b/libreoffice-base.bug-control
@@ -1,2 +1,2 @@
report-with: libreoffice-core
-package-status: unixodbc libmyodbc odbc-postgresql libsqliteodbc tdsodbc
mdbtools libmysql-java libpg-java libsapdbc-java
+package-status: unixodbc libmyodbc odbc-postgresql libsqliteodbc tdsodbc
mdbtools libmariadb-java libpg-java libsapdbc-java
diff --git a/patches/jdbc-driver-classpaths.diff
b/patches/jdbc-driver-classpaths.diff
index 1887772c..b3120667 100644
--- a/patches/jdbc-driver-classpaths.diff
+++ b/patches/jdbc-driver-classpaths.diff
@@ -8,9 +8,9 @@ index 9be30a2..59c87cb 100644
</node>
+ <node oor:name="JDBC">
+ <node oor:name="DriverClassPaths">
-+ <node oor:name="com.mysql.jdbc.Driver" oor:op="replace">
++ <node oor:name="org.mariadb.jdbc.Driver" oor:op="replace">
+ <prop oor:name="Path">
-+ <value>file:///usr/share/java/mysql.jar</value>
++ <value>file:///usr/share/java/mariadb-java-client.jar</value>
+ </prop>
+ </node>
+ <node oor:name="org.postgresql.Driver" oor:op="replace">
--
2.19.1
>From 1172166889764ae0e77488e5d173f33961b9859b Mon Sep 17 00:00:00 2001
From: Markus Koschany <a...@debian.org>
Date: Fri, 9 Nov 2018 23:06:15 +0100
Subject: [PATCH] mariadb
---
connectivity/qa/complex/connectivity/JdbcLongVarCharTest.java | 4 ++--
.../mysql/org/openoffice/Office/DataAccess/Drivers.xcu | 2 +-
connectivity/source/drivers/mysql/YDriver.cxx | 4 ++--
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/connectivity/qa/complex/connectivity/JdbcLongVarCharTest.java
b/connectivity/qa/complex/connectivity/JdbcLongVarCharTest.java
index a44f1b9d1..03a8293ef 100644
--- a/connectivity/qa/complex/connectivity/JdbcLongVarCharTest.java
+++ b/connectivity/qa/complex/connectivity/JdbcLongVarCharTest.java
@@ -59,7 +59,7 @@ public class JdbcLongVarCharTest extends ComplexTestCase
String url = "jdbc:mysql://localhost:3306/mysql?user=root";
com.sun.star.beans.PropertyValue prop[] = new PropertyValue[1];
- prop[0] = new PropertyValue("JavaDriverClass", 0,
"com.mysql.jdbc.Driver", PropertyState.DIRECT_VALUE);
+ prop[0] = new PropertyValue("JavaDriverClass", 0,
"org.mariadb.jdbc.Driver", PropertyState.DIRECT_VALUE);
// get the remote office component context
XMultiServiceFactory xServiceManager = param.getMSF();
@@ -117,4 +117,4 @@ public class JdbcLongVarCharTest extends ComplexTestCase
System.exit(0);
}
}
-}
\ No newline at end of file
+}
diff --git
a/connectivity/registry/mysql/org/openoffice/Office/DataAccess/Drivers.xcu
b/connectivity/registry/mysql/org/openoffice/Office/DataAccess/Drivers.xcu
index 77988448f..acd8bfdaf 100644
--- a/connectivity/registry/mysql/org/openoffice/Office/DataAccess/Drivers.xcu
+++ b/connectivity/registry/mysql/org/openoffice/Office/DataAccess/Drivers.xcu
@@ -33,7 +33,7 @@
</node>
<node oor:name="JavaDriverClass" oor:op="replace">
<prop oor:name="Value" oor:type="xs:string">
- <value>com.mysql.jdbc.Driver</value>
+ <value>org.mariadb.jdbc.Driver</value>
</prop>
</node>
<node oor:name="AddIndexAppendix" oor:op="replace">
diff --git a/connectivity/source/drivers/mysql/YDriver.cxx
b/connectivity/source/drivers/mysql/YDriver.cxx
index 95094265e..c0ad7802e 100644
--- a/connectivity/source/drivers/mysql/YDriver.cxx
+++ b/connectivity/source/drivers/mysql/YDriver.cxx
@@ -54,7 +54,7 @@ namespace connectivity
css::uno::Sequence<css::beans::PropertyValue> const & info)
{
return comphelper::NamedValueCollection(info).getOrDefault(
- "JavaDriverClass", OUString("com.mysql.jdbc.Driver"));
+ "JavaDriverClass", OUString("org.mariadb.jdbc.Driver"));
}
}
@@ -185,7 +185,7 @@ namespace connectivity
aProps.push_back( PropertyValue(
"JavaDriverClass"
,0
-
,makeAny(OUString("com.mysql.jdbc.Driver"))
+
,makeAny(OUString("org.mariadb.jdbc.Driver"))
,PropertyState_DIRECT_VALUE) );
}
}
--
2.19.1
--- End Message ---
--- Begin Message ---
Source: libreoffice
Source-Version: 1:6.2.0~beta1-1
We believe that the bug you reported is fixed in the latest version of
libreoffice, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to 913...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Rene Engelhard <r...@debian.org> (supplier of updated libreoffice package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Sun, 18 Nov 2018 01:08:48 +0100
Source: libreoffice
Binary: libreoffice libreoffice-l10n-za libreoffice-l10n-in libreoffice-core
libreoffice-common libreoffice-java-common libreoffice-help-common
libreoffice-writer libreoffice-calc libreoffice-impress libreoffice-draw
libreoffice-math libreoffice-base-core libreoffice-base
libreoffice-style-breeze libreoffice-style-colibre libreoffice-style-tango
libreoffice-style-sifr libreoffice-style-elementary
libreoffice-style-karasa-jaga libreoffice-gnome python3-uno
libreoffice-officebean libreoffice-script-provider-python
libreoffice-script-provider-bsh libreoffice-script-provider-js
libreoffice-avmedia-backend-gstreamer libreoffice-avmedia-backend-vlc
libreoffice-sdbc-hsqldb libreoffice-base-drivers libreoffice-l10n-af
libreoffice-l10n-am libreoffice-l10n-ar libreoffice-l10n-as
libreoffice-l10n-ast libreoffice-l10n-be libreoffice-l10n-bg
libreoffice-l10n-bn libreoffice-l10n-br libreoffice-l10n-bs libreoffice-l10n-ca
libreoffice-l10n-cs libreoffice-l10n-cy libreoffice-l10n-da
libreoffice-l10n-de libreoffice-l10n-dz libreoffice-l10n-el
libreoffice-l10n-en-gb libreoffice-l10n-en-za libreoffice-l10n-eo
libreoffice-l10n-es libreoffice-l10n-et libreoffice-l10n-eu libreoffice-l10n-fa
libreoffice-l10n-fi libreoffice-l10n-fr libreoffice-l10n-ga libreoffice-l10n-gd
libreoffice-l10n-gl libreoffice-l10n-gu libreoffice-l10n-gug
libreoffice-l10n-he libreoffice-l10n-hi libreoffice-l10n-hr libreoffice-l10n-hu
libreoffice-l10n-id libreoffice-l10n-is libreoffice-l10n-it libreoffice-l10n-ja
libreoffice-l10n-ka libreoffice-l10n-kk libreoffice-l10n-km
libreoffice-l10n-kmr libreoffice-l10n-kn libreoffice-l10n-ko
libreoffice-l10n-lt libreoffice-l10n-lv libreoffice-l10n-mk libreoffice-l10n-mn
libreoffice-l10n-ml libreoffice-l10n-mr libreoffice-l10n-nb libreoffice-l10n-ne
libreoffice-l10n-nl libreoffice-l10n-nn libreoffice-l10n-nr
libreoffice-l10n-nso libreoffice-l10n-oc libreoffice-l10n-om
libreoffice-l10n-or libreoffice-l10n-pa-in libreoffice-l10n-pl
libreoffice-l10n-pt libreoffice-l10n-pt-br libreoffice-l10n-ro
libreoffice-l10n-ru libreoffice-l10n-rw libreoffice-l10n-si libreoffice-l10n-sk
libreoffice-l10n-sl libreoffice-l10n-sr libreoffice-l10n-ss libreoffice-l10n-st
libreoffice-l10n-sv libreoffice-l10n-ta libreoffice-l10n-te libreoffice-l10n-tg
libreoffice-l10n-th libreoffice-l10n-tn libreoffice-l10n-tr libreoffice-l10n-ts
libreoffice-l10n-ug libreoffice-l10n-uk libreoffice-l10n-uz libreoffice-l10n-ve
libreoffice-l10n-vi libreoffice-l10n-xh libreoffice-l10n-zh-cn
libreoffice-l10n-zh-tw libreoffice-l10n-zu libreoffice-help-en-us
libreoffice-help-ca libreoffice-help-cs libreoffice-help-da libreoffice-help-de
libreoffice-help-dz libreoffice-help-el libreoffice-help-en-gb
libreoffice-help-es libreoffice-help-et libreoffice-help-eu libreoffice-help-fi
libreoffice-help-fr libreoffice-help-gl libreoffice-help-hi libreoffice-help-hu
libreoffice-help-it libreoffice-help-ja libreoffice-help-km libreoffice-help-ko
libreoffice-help-nl libreoffice-help-om libreoffice-help-pl
libreoffice-help-pt libreoffice-help-pt-br libreoffice-help-ru
libreoffice-help-sk libreoffice-help-sl libreoffice-help-sv libreoffice-help-tr
libreoffice-help-vi libreoffice-help-zh-cn libreoffice-help-zh-tw uno-libs3 ure
libreoffice-ogltrans libreoffice-wiki-publisher libreoffice-report-builder
libreoffice-report-builder-bin libreoffice-nlpsolver fonts-opensymbol
libreoffice-dev libreoffice-dev-common libreoffice-dev-doc libreofficekit-dev
libreoffice-gtk2 libreoffice-gtk3 gir1.2-lokdocview-0.1 liblibreofficekitgtk
libreofficekit-data libreoffice-kde5 libreoffice-qt5
libreoffice-sdbc-postgresql libreoffice-sdbc-mysql libreoffice-evolution
libreoffice-subsequentcheckbase libreoffice-smoketest-data
libreoffice-librelogo libreoffice-sdbc-firebird libreoffice-pdfimport
libreoffice-kde
libreoffice-mysql-connector
Architecture: source
Version: 1:6.2.0~beta1-1
Distribution: experimental
Urgency: medium
Maintainer: Debian LibreOffice Maintainers <debian-openoffice@lists.debian.org>
Changed-By: Rene Engelhard <r...@debian.org>
Description:
fonts-opensymbol - OpenSymbol TrueType font
gir1.2-lokdocview-0.1 - GTK3 widget wrapping LibreOffice functionality -
introspection
liblibreofficekitgtk - GTK3 widget wrapping LibreOffice functionality
libreoffice - office productivity suite (metapackage)
libreoffice-avmedia-backend-gstreamer - GStreamer backend for LibreOffice
libreoffice-avmedia-backend-vlc - VLC backend for LibreOffice
libreoffice-base - office productivity suite -- database
libreoffice-base-core - office productivity suite -- shared library
libreoffice-base-drivers - Database connectivity drivers for LibreOffice
libreoffice-calc - office productivity suite -- spreadsheet
libreoffice-common - office productivity suite -- arch-independent files
libreoffice-core - office productivity suite -- arch-dependent files
libreoffice-dev - office productivity suite -- SDK -- architecture-dependent
parts
libreoffice-dev-common - office productivity suite -- SDK --
architecture-independent part
libreoffice-dev-doc - office productivity suite -- SDK documentation
libreoffice-draw - office productivity suite -- drawing
libreoffice-evolution - office productivity suite -- Evolution addressbook
support
libreoffice-gnome - office productivity suite -- GNOME integration
libreoffice-gtk2 - office productivity suite -- GTK+ 2 integration
libreoffice-gtk3 - office productivity suite -- GTK+ 3 integration
libreoffice-help-ca - office productivity suite -- Catalan help
libreoffice-help-common - office productivity suite -- common files for
LibreOffice help
libreoffice-help-cs - office productivity suite -- Czech help
libreoffice-help-da - office productivity suite -- Danish help
libreoffice-help-de - office productivity suite -- German help
libreoffice-help-dz - office productivity suite -- Dzongkha help
libreoffice-help-el - office productivity suite -- Greek help
libreoffice-help-en-gb - office productivity suite -- English_british help
libreoffice-help-en-us - office productivity suite -- English_american help
libreoffice-help-es - office productivity suite -- Spanish help
libreoffice-help-et - office productivity suite -- Estonian help
libreoffice-help-eu - office productivity suite -- Basque help
libreoffice-help-fi - office productivity suite -- Finnish help
libreoffice-help-fr - office productivity suite -- French help
libreoffice-help-gl - office productivity suite -- Galician help
libreoffice-help-hi - office productivity suite -- Hindi help
libreoffice-help-hu - office productivity suite -- Hungarian help
libreoffice-help-it - office productivity suite -- Italian help
libreoffice-help-ja - office productivity suite -- Japanese help
libreoffice-help-km - office productivity suite -- Khmer help
libreoffice-help-ko - office productivity suite -- Korean help
libreoffice-help-nl - office productivity suite -- Dutch help
libreoffice-help-om - office productivity suite -- Oromo help
libreoffice-help-pl - office productivity suite -- Polish help
libreoffice-help-pt - office productivity suite -- Portuguese help
libreoffice-help-pt-br - office productivity suite -- Portuguese_brazilian help
libreoffice-help-ru - office productivity suite -- Russian help
libreoffice-help-sk - office productivity suite -- Slovak help
libreoffice-help-sl - office productivity suite -- Slovenian help
libreoffice-help-sv - office productivity suite -- Swedish help
libreoffice-help-tr - office productivity suite -- Turkish help
libreoffice-help-vi - office productivity suite -- Vietnamese help
libreoffice-help-zh-cn - office productivity suite -- Chinese_simplified help
libreoffice-help-zh-tw - office productivity suite -- Chinese_traditional help
libreoffice-impress - office productivity suite -- presentation
libreoffice-java-common - office productivity suite -- arch-independent Java
support files
libreoffice-kde - transitional package for LibreOffice KDE integration
libreoffice-kde5 - office productivity suite -- KDE 5 integration
libreoffice-l10n-af - office productivity suite -- Afrikaans language package
libreoffice-l10n-am - office productivity suite -- Amharic language package
libreoffice-l10n-ar - office productivity suite -- Arabic language package
libreoffice-l10n-as - office productivity suite -- Assamese language package
libreoffice-l10n-ast - office productivity suite -- Asturian language package
libreoffice-l10n-be - office productivity suite -- Belarussian language package
libreoffice-l10n-bg - office productivity suite -- Bulgarian language package
libreoffice-l10n-bn - office productivity suite -- Bengali language package
libreoffice-l10n-br - office productivity suite -- Breton language package
libreoffice-l10n-bs - office productivity suite -- Bosnian language package
libreoffice-l10n-ca - office productivity suite -- Catalan language package
libreoffice-l10n-cs - office productivity suite -- Czech language package
libreoffice-l10n-cy - office productivity suite -- Welsh language package
libreoffice-l10n-da - office productivity suite -- Danish language package
libreoffice-l10n-de - office productivity suite -- German language package
libreoffice-l10n-dz - office productivity suite -- Dzongkha language package
libreoffice-l10n-el - office productivity suite -- Greek language package
libreoffice-l10n-en-gb - office productivity suite -- English_british language
package
libreoffice-l10n-en-za - office productivity suite -- English_southafrican
language packag
libreoffice-l10n-eo - office productivity suite -- Esperanto language package
libreoffice-l10n-es - office productivity suite -- Spanish language package
libreoffice-l10n-et - office productivity suite -- Estonian language package
libreoffice-l10n-eu - office productivity suite -- Basque language package
libreoffice-l10n-fa - office productivity suite -- Farsi language package
libreoffice-l10n-fi - office productivity suite -- Finnish language package
libreoffice-l10n-fr - office productivity suite -- French language package
libreoffice-l10n-ga - office productivity suite -- Gaelic language package
libreoffice-l10n-gd - office productivity suite -- Scottish_gaelic language
package
libreoffice-l10n-gl - office productivity suite -- Galician language package
libreoffice-l10n-gu - office productivity suite -- Gujarati language package
libreoffice-l10n-gug - office productivity suite -- Guarani language package
libreoffice-l10n-he - office productivity suite -- Hebrew language package
libreoffice-l10n-hi - office productivity suite -- Hindi language package
libreoffice-l10n-hr - office productivity suite -- Croatian language package
libreoffice-l10n-hu - office productivity suite -- Hungarian language package
libreoffice-l10n-id - office productivity suite -- Indonesian language package
libreoffice-l10n-in - office productivity suite -- Indic language packages
libreoffice-l10n-is - office productivity suite -- Icelandic language package
libreoffice-l10n-it - office productivity suite -- Italian language package
libreoffice-l10n-ja - office productivity suite -- Japanese language package
libreoffice-l10n-ka - office productivity suite -- Georgian language package
libreoffice-l10n-kk - office productivity suite -- Kazakh language package
libreoffice-l10n-km - office productivity suite -- Khmer language package
libreoffice-l10n-kmr - office productivity suite -- Kurmanji language package
libreoffice-l10n-kn - office productivity suite -- Kannada language package
libreoffice-l10n-ko - office productivity suite -- Korean language package
libreoffice-l10n-lt - office productivity suite -- Lithuanian language package
libreoffice-l10n-lv - office productivity suite -- Latvian language package
libreoffice-l10n-mk - office productivity suite -- Macedonian language package
libreoffice-l10n-ml - office productivity suite -- Malayalam language package
libreoffice-l10n-mn - office productivity suite -- Mongolian language package
libreoffice-l10n-mr - office productivity suite -- Marathi language package
libreoffice-l10n-nb - office productivity suite -- Norwegian language package
libreoffice-l10n-ne - office productivity suite -- Nepalese language package
libreoffice-l10n-nl - office productivity suite -- Dutch language package
libreoffice-l10n-nn - office productivity suite -- Norwegian_nynorsk language
package
libreoffice-l10n-nr - office productivity suite -- Ndebele language package
libreoffice-l10n-nso - office productivity suite -- Northern_sotho language
package
libreoffice-l10n-oc - office productivity suite -- Occitan language package
libreoffice-l10n-om - office productivity suite -- Oromo language package
libreoffice-l10n-or - office productivity suite -- Odia language package
libreoffice-l10n-pa-in - office productivity suite -- Punjabi language package
libreoffice-l10n-pl - office productivity suite -- Polish language package
libreoffice-l10n-pt - office productivity suite -- Portuguese language package
libreoffice-l10n-pt-br - office productivity suite -- Portuguese_brazilian
language packag
libreoffice-l10n-ro - office productivity suite -- Romanian language package
libreoffice-l10n-ru - office productivity suite -- Russian language package
libreoffice-l10n-rw - office productivity suite -- Kinarwanda language package
libreoffice-l10n-si - office productivity suite -- Sinhala language package
libreoffice-l10n-sk - office productivity suite -- Slovak language package
libreoffice-l10n-sl - office productivity suite -- Slovenian language package
libreoffice-l10n-sr - office productivity suite -- Serbian language package
libreoffice-l10n-ss - office productivity suite -- Swazi language package
libreoffice-l10n-st - office productivity suite -- Southern_sotho language
package
libreoffice-l10n-sv - office productivity suite -- Swedish language package
libreoffice-l10n-ta - office productivity suite -- Tamil language package
libreoffice-l10n-te - office productivity suite -- Telugu language package
libreoffice-l10n-tg - office productivity suite -- Tajik language package
libreoffice-l10n-th - office productivity suite -- Thai language package
libreoffice-l10n-tn - office productivity suite -- Tswana language package
libreoffice-l10n-tr - office productivity suite -- Turkish language package
libreoffice-l10n-ts - office productivity suite -- Tsonga language package
libreoffice-l10n-ug - office productivity suite -- Uighur language package
libreoffice-l10n-uk - office productivity suite -- Ukrainian language package
libreoffice-l10n-uz - office productivity suite -- Uzbek language package
libreoffice-l10n-ve - office productivity suite -- Venda language package
libreoffice-l10n-vi - office productivity suite -- Vietnamese language package
libreoffice-l10n-xh - office productivity suite -- Xhosa language package
libreoffice-l10n-za - office productivity suite -- South African language
packages
libreoffice-l10n-zh-cn - office productivity suite -- Chinese_simplified
language package
libreoffice-l10n-zh-tw - office productivity suite -- Chinese_traditional
language package
libreoffice-l10n-zu - office productivity suite -- Zulu language package
libreoffice-librelogo - Logo-like progamming language for LibreOffice
libreoffice-math - office productivity suite -- equation editor
libreoffice-mysql-connector - transitional package for MariaDB/MySQL Connector
extension for Li
libreoffice-nlpsolver - "Solver for Nonlinear Programming" extension for
LibreOffice
libreoffice-officebean - office productivity suite -- Java bean
libreoffice-ogltrans - LibreOffice Impress extension for slide transitions
using OpenGL
libreoffice-pdfimport - transitional package for PDF Import component for
LibreOffice
libreoffice-qt5 - office productivity suite -- Qt 5 integration
libreoffice-report-builder - LibreOffice component for building database
reports
libreoffice-report-builder-bin - LibreOffice component for building database
reports -- libraries
libreoffice-script-provider-bsh - BeanShell script support provider for
LibreOffice scripting frame
libreoffice-script-provider-js - JavaScript script support provider for
LibreOffice scripting fram
libreoffice-script-provider-python - Python script support provider for
LibreOffice scripting framewor
libreoffice-sdbc-firebird - Firebird SDBC driver for LibreOffice
libreoffice-sdbc-hsqldb - HSQLDB SDBC driver for LibreOffice
libreoffice-sdbc-mysql - MariaDB/MySQL SDBC driver for LibreOffice
libreoffice-sdbc-postgresql - PostgreSQL SDBC driver for LibreOffice
libreoffice-smoketest-data - data files for LibreOffices "smoketest"
libreoffice-style-breeze - office productivity suite -- Breeze symbol style
libreoffice-style-colibre - office productivity suite -- colibre symbol style
libreoffice-style-elementary - office productivity suite -- Elementary symbol
style
libreoffice-style-karasa-jaga - office productivity suite -- Karasa Jaga
symbol style
libreoffice-style-sifr - office productivity suite -- Sifr symbol style
libreoffice-style-tango - office productivity suite -- Tango symbol style
libreoffice-subsequentcheckbase - LibreOffice java test libraries
libreoffice-wiki-publisher - LibreOffice extension for working with MediaWiki
articles
libreoffice-writer - office productivity suite -- word processor
libreofficekit-data - common data for LOKDocView
libreofficekit-dev - LibreOfficeKit -- headers
python3-uno - Python-UNO bridge
uno-libs3 - LibreOffice UNO runtime environment -- public shared libraries
ure - LibreOffice UNO runtime environment
Closes: 905437 913360
Changes:
libreoffice (1:6.2.0~beta1-1) experimental; urgency=medium
.
* New upstream beta release
.
* debian/patches/apparmor-mesa.diff: #include mesa abstraction
(closes: #905437)
* debian/patches/jdbc-driver-classpaths.diff: add org.mariadb.jdbc.Driver
classpath to /usr/share/java/mariadb-java-client.jar
* debian/patches/disableClassPathURLCheck.diff: add workaround to
fix build with openjdks with S8195874 included - add
-Djdk.net.URLClassPath.disableClassPathURLCheck=true to JAVAIFLAGS;
see https://gerrit.libreoffice.org/#/c/63118/2
* debian/patches/disable-dbaccess_complex-for-now.diff: as name says;
temporarily - to be investigated.
.
* debian/control.transitionals.in: make libreoffice-mysql-connector 'all'
* debian/patches/make-package-modules-not-suck.diff: update to move
mysql_jdbc back to -base-drivers
* debian/patches/use-mariadb-java-instead-of-mysql-java.diff: as name says;
use org.mariadb.jdbc.Driver instead of com.mysql.jdbc.Driver
* debian/control.in:
- add Replaces: for above
- Suggest libmariadb-java instead of libmysql-java. See #912916 for more
information.
* debian/patches/jdbc-driver-classpaths.diff: add org.mariadb.jdbc.Driver
classpath pointing to /usr/share/java/mariadb-java-client.jar
* debian/libreoffice-base.bug-script.in: add libmariadb-java
(closes: #913360, thanks Markus Koschany)
.
* debian/libreoffice-base-drivers.NEWS: add NEWS about above change
Checksums-Sha1:
b663d4e18467548771da89c007d52bc1675185f4 27074 libreoffice_6.2.0~beta1-1.dsc
8001672b693e7ce4437941066c76c29c7cc3ec94 15597988
libreoffice_6.2.0~beta1.orig-helpcontent2.tar.xz
bbc3a641fa0a3eda6e129016d31922669e9ef5c2 141497672
libreoffice_6.2.0~beta1.orig-translations.tar.xz
95f07067ba6d10b8fdb5f11b7b56cd2b28524aa0 212784472
libreoffice_6.2.0~beta1.orig.tar.xz
d4123a8598b512d2d3822f8500885526443019fd 801
libreoffice_6.2.0~beta1.orig.tar.xz.asc
3550ede8fd06d3913cb11bbeffbff935df7443b4 10524972
libreoffice_6.2.0~beta1-1.debian.tar.xz
1d9404c44e1d5da62f2ff55b4ad725f8511ab2fa 42158
libreoffice_6.2.0~beta1-1_source.buildinfo
Checksums-Sha256:
d760f402523fe880649e6fda475bf232d286e9d625d554e12f4b1a6a9d79709f 27074
libreoffice_6.2.0~beta1-1.dsc
c0bead03524076d2ea99b7ffd8babc89dfb332fe8a428988ea0dc8b35f3cf9cf 15597988
libreoffice_6.2.0~beta1.orig-helpcontent2.tar.xz
496fac775c1f08afe656599ffe2434ef0b17d2ec5e20a4666d60df9f80531774 141497672
libreoffice_6.2.0~beta1.orig-translations.tar.xz
33b38eba610afe4843fff4699d5b6b4a605970e7a05e09ed32408f05b0a6f945 212784472
libreoffice_6.2.0~beta1.orig.tar.xz
34227984fc160d1a99357608100940bc17f7f281567eb6145f870061f875505f 801
libreoffice_6.2.0~beta1.orig.tar.xz.asc
67f28f8555c908917f3d274c6888df17d3e2bb3f2887b73bf5b46a9e9f93d91f 10524972
libreoffice_6.2.0~beta1-1.debian.tar.xz
4136b57be3544c4483a42beb2d840aedcc7dfcbe575c9fb38862b1c576afaab2 42158
libreoffice_6.2.0~beta1-1_source.buildinfo
Files:
2136149f4f4a192447f1d9c7ef800d92 27074 editors optional
libreoffice_6.2.0~beta1-1.dsc
964c7de2fce048d8a816ee8b23547c43 15597988 editors optional
libreoffice_6.2.0~beta1.orig-helpcontent2.tar.xz
3c350bcb6212a9a487f31425ebd3967c 141497672 editors optional
libreoffice_6.2.0~beta1.orig-translations.tar.xz
29e360c1dd35394230d622d929c98061 212784472 editors optional
libreoffice_6.2.0~beta1.orig.tar.xz
70833009c5c9b4c295e76b9347bcc5a5 801 editors optional
libreoffice_6.2.0~beta1.orig.tar.xz.asc
c15ef11904eb6beaa4f93c1c2c863adb 10524972 editors optional
libreoffice_6.2.0~beta1-1.debian.tar.xz
5dc63d3a43798a3816068e5f7222b56f 42158 editors optional
libreoffice_6.2.0~beta1-1_source.buildinfo
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCAAdFiEE4S3qRnUGcM+pYIAdCqBFcdA+PnAFAlvwsnwACgkQCqBFcdA+
PnB80w//T44XWlP960zDbi1RgMeBxTJ9dojcYh92J4OXmRWCo0gcmYeoTGUjd+Pv
Wa72lsEfzr4eKVvl0hJm/FTi9mpVoZq7MBuAlI5mHKrV+udtOe/LeYCDOY8y/sA1
5506SXyD8TcA878QytA30mr9H7wHZEdPngjy2/8j9AcVijNI2dCf07dtCkbzsFB8
FmPgCXlg6CS4VpvOGEh2PasOzHeo3FFD57mQGEmxHDh8wjfvIlx3RRKUV7D9HEhC
q1Emwh6ABDT9aYglU15Xa+yd2Ayu5uILwbaW+zD4aIdycEnG5pxUJpTuFlsoyEre
JCaJaF0skqhOSDHbNIUm+DhogmKcxrHFv+b5e/BYn8aS4eYhxjrM769guSABtaZV
+aepQ/KN1GtqJ/1if1mSQaKCEfFiYEnPlOWH6QEHfQ2Rotdkwb5/YUbox+Nlpx2Q
SLwi/UtFb957n6sGBc8oRA1iwHotZDkQI7iOMyHnQ4nWJj4Si6BNl80BVxGAc8xJ
Lj4WHXbIVUMvp9cctEqGibE4HQPMr0Sd5TvE/x7IeglKNFXQeTY8c8J7UuV9t9a+
EjPPM7Q7J7PxGi22r/OdECsorbrFA9CbQzsk7m6bDJflIRcFPny5Of2elO8ovbgR
bd7ZgpP/gZAaQMGgJ7O+civSExAw/6ZitUYwYTqf26kmkPlnM9Y=
=0yH9
-----END PGP SIGNATURE-----
--- End Message ---