[libreoffice: 46/46] merge from master-3.5

David Tardon dtardon at fedoraproject.org
Sun Dec 18 07:33:27 UTC 2011


commit 692fa46f87e918afd76bb192a0efcc0a78ce989c
Merge: 5d880b1 fcaf79e
Author: David Tardon <dtardon at redhat.com>
Date:   Sun Dec 18 08:32:25 2011 +0100

    merge from master-3.5

 .gitignore                                         |   15 +
 0001-Fix-typo-and-clean-up.patch                   |   52 +
 ...ted-fdo-37195-migrationoo3-not-registered.patch |   21 -
 0001-Related-i58612-don-t-crash-anyway.patch       |  102 -
 ...z-652604-better-survive-exceptions-thrown.patch |  127 -
 ...z-702833-addEventListener-without-removeE.patch |   54 -
 0001-Related-rhbz-711087-band-aid.patch            |   26 -
 ...z-718976-crash-in-SwTxtSizeInfo-GetMultiC.patch |   37 -
 ...z-730225-avoid-segv-in-ld-this-was-set-to.patch |   25 -
 ...z-753201-fedora-ant-java-1.5.0-gcj-won-t-.patch |   82 -
 ...o-32665-handle-that-FreeSerif-lacks-some-.patch |  311 -
 ...bz-693265-fix-crash-from-unhandled-except.patch |   65 -
 ...es-rhbz-695509-crash-in-RefreshDocumentLB.patch |   26 -
 ...bz-713154-pdf-export-dialog-too-tall-to-f.patch |  511 --
 ...bz-715549-use-fontconfig-s-detected-forma.patch |  213 -
 ...s-rhbz-738255-avoid-crash-on-NULL-pointer.patch |   39 -
 ...es-rhbz-751290-KDE-black-on-dark-tooltips.patch |   60 -
 ...es-rhbz-761009-IFSD_Equal-is-asymmetrical.patch |    4 +-
 0001-add-Oracle-Java-1.7.0-recognition.patch       |   68 -
 0001-avoid-using-com.sun.org-apis.patch            |   47 -
 ...own-configure-test-findings-on-visibility.patch |   61 -
 ...tal-scrollbars-with-KDE-oxygen-style-bnc-.patch |   65 -
 0001-fix-syntactic-error.patch                     |   85 +
 0001-force-gbuild-stage-for-CustomTargets.patch    |   28 +
 ...iro-canvas-crash-for-non-X-or-svp-backend.patch |   26 -
 ...lated-rhbz-655686-get-order-of-shutdown-c.patch |  622 --
 ...-do-not-crash-importing-section-containin.patch |   32 -
 ...-set-correct-page-number-when-exporting-s.patch |   42 -
 ...lations-do-already-exist-in-translations-.patch |  403 +
 ...t-reading-AES-encrypted-ODF-1.2-documents.patch | 8199 --------------------
 gdb-pretty-printers.patch                          | 2028 -----
 kde4configure.patch                                |   25 -
 libreoffice-installfix.patch                       |    2 +-
 libreoffice-ppc64.patch                            |   14 -
 libreoffice.spec                                   | 1487 ++--
 openoffice.org-2.4.0.ooo86080.unopkg.bodge.patch   |    4 +-
 ...ffice.org-3.0.0.ooo88341.sc.verticalboxes.patch |   77 +-
 ...e.org-3.1.0.ooo101274.opening-a-directory.patch |   67 +-
 ...rg-3.1.1.ooo105784.vcl.sniffscriptforsubs.patch |   69 +-
 ...office.org-3.3.0.ooo108637.sfx2.uisavedir.patch |   41 -
 ....org-3.3.0.ooo113273.desktop.resolvelinks.patch |   55 -
 sources                                            |   41 +-
 vbahelper.visibility.patch                         |   33 -
 43 files changed, 1428 insertions(+), 13963 deletions(-)
---
diff --cc 0001-Resolves-rhbz-761009-IFSD_Equal-is-asymmetrical.patch
index c39ea0d,0000000..1714e53
mode 100644,000000..100644
--- a/0001-Resolves-rhbz-761009-IFSD_Equal-is-asymmetrical.patch
+++ b/0001-Resolves-rhbz-761009-IFSD_Equal-is-asymmetrical.patch
@@@ -1,30 -1,0 +1,30 @@@
 +From 39cbce553da1834f78b77f48b2f1be9578d6cc05 Mon Sep 17 00:00:00 2001
 +From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= <caolanm at redhat.com>
 +Date: Tue, 13 Dec 2011 21:01:28 +0000
 +Subject: [PATCH] Resolves: rhbz#761009 IFSD_Equal is asymmetrical
 +
 +---
 + vcl/generic/glyphs/glyphcache.cxx |    6 ++++--
 + 1 files changed, 4 insertions(+), 2 deletions(-)
 +
 +diff --git a/vcl/generic/glyphs/glyphcache.cxx b/vcl/generic/glyphs/glyphcache.cxx
 +index 89696d1..c524c08 100644
- --- a/vcl/source/glyphs/glyphcache.cxx
- +++ b/vcl/source/glyphs/glyphcache.cxx
++--- a/vcl/generic/glyphs/glyphcache.cxx
+++++ b/vcl/generic/glyphs/glyphcache.cxx
 +@@ -148,9 +148,11 @@ bool GlyphCache::IFSD_Equal::operator()( const FontSelectPattern& rA, const Font
 +     // NOTE: ignoring meFamily deliberately
 + 
 +     // compare with the requested width, allow default width
 +-    if( (rA.mnWidth != rB.mnWidth)
 +-    && ((rA.mnHeight != rB.mnWidth) || (rA.mnWidth != 0)) )
 ++    int nAWidth = rA.mnWidth != 0 ? rA.mnWidth : rA.mnHeight;
 ++    int nBWidth = rB.mnWidth != 0 ? rB.mnWidth : rB.mnHeight;
 ++    if( nAWidth != nBWidth )
 +         return false;
 ++
 + #ifdef ENABLE_GRAPHITE
 +    if (rA.meLanguage != rB.meLanguage)
 +         return false;
 +-- 
 +1.7.6.4
 +
diff --cc libreoffice.spec
index da53143,751f24a..ac84509
--- a/libreoffice.spec
+++ b/libreoffice.spec
@@@ -32,44 -33,36 +33,36 @@@ License:        LGPLv3 and LGPLv2+ and 
  Group:          Applications/Productivity
  URL:            http://www.documentfoundation.org/develop
  BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
- Source0:        %{source_url}/libreoffice-artwork-%{version}.tar.bz2
- Source1:        %{source_url}/libreoffice-base-%{version}.tar.bz2
- Source2:        %{source_url}/libreoffice-bootstrap-%{version}.tar.bz2
- Source3:        %{source_url}/libreoffice-calc-%{version}.tar.bz2
- Source4:        %{source_url}/libreoffice-components-%{version}.tar.bz2
- Source5:        %{source_url}/libreoffice-extensions-%{version}.tar.bz2
- Source6:        %{source_url}/libreoffice-extras-%{version}.tar.bz2
- Source7:        %{source_url}/libreoffice-filters-%{version}.tar.bz2
- Source8:        %{source_url}/libreoffice-help-%{version}.tar.bz2
- Source9:        %{source_url}/libreoffice-impress-%{version}.tar.bz2
- Source10:       %{source_url}/libreoffice-libs-core-%{version}.tar.bz2
- Source11:       %{source_url}/libreoffice-libs-extern-%{version}.tar.bz2
- Source12:       %{source_url}/libreoffice-libs-extern-sys-%{version}.tar.bz2
- Source13:       %{source_url}/libreoffice-libs-gui-%{version}.tar.bz2
- Source14:       %{source_url}/libreoffice-postprocess-%{version}.tar.bz2
- Source15:       %{source_url}/libreoffice-sdk-%{version}.tar.bz2
- Source16:       %{source_url}/libreoffice-testing-%{version}.tar.bz2
- Source17:       %{source_url}/libreoffice-ure-%{version}.tar.bz2
- Source18:       %{source_url}/libreoffice-writer-%{version}.tar.bz2
- Source19:       %{source_url}/libreoffice-translations-%{version}.tar.bz2
- Source20:       http://dev-www.libreoffice.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll
- Source21:       redhat-langpacks.tar.gz
- Source22:       libreoffice-multiliblauncher.sh
- Source23:       http://hg.services.openoffice.org/binaries/fdb27bfe2dbe2e7b57ae194d9bf36bab-SampleICC-1.3.2.tar.gz
- Source24:       http://hg.services.openoffice.org/binaries/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
- Source25:       http://hg.services.openoffice.org/binaries/1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz
- Source26:       http://hg.services.openoffice.org/binaries/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip
- Source27:       http://hg.services.openoffice.org/binaries/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
- Source28:       http://hg.services.openoffice.org/binaries/ada24d37d8d638b3d8a9985e80bc2978-source-9.0.0.7-bj.zip
- Source29:       http://hg.services.openoffice.org/binaries/18f577b374d60b3c760a3a3350407632-STLport-4.5.tar.gz 
+ 
+ Source0:        %{source_url}/libreoffice-core-%{version}.tar.bz2
+ Source1:        %{source_url}/libreoffice-binfilter-%{version}.tar.bz2
+ Source2:        %{source_url}/libreoffice-help-%{version}.tar.bz2
+ Source3:        %{source_url}/libreoffice-translations-%{version}.tar.bz2
+ Source4:        http://dev-www.libreoffice.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll
+ Source5:        redhat-langpacks.tar.gz
+ Source6:        libreoffice-multiliblauncher.sh
+ Source7:        http://hg.services.openoffice.org/binaries/fdb27bfe2dbe2e7b57ae194d9bf36bab-SampleICC-1.3.2.tar.gz
+ Source8:        http://hg.services.openoffice.org/binaries/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
+ Source9:        http://hg.services.openoffice.org/binaries/1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz
+ Source10:       http://hg.services.openoffice.org/binaries/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip
+ Source11:       http://hg.services.openoffice.org/binaries/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
+ Source12:       http://hg.services.openoffice.org/binaries/ada24d37d8d638b3d8a9985e80bc2978-source-9.0.0.7-bj.zip
 -Source13:       http://hg.services.openoffice.org/binaries/18f577b374d60b3c760a3a3350407632-STLport-4.5.tar.gz 
++Source13:       http://hg.services.openoffice.org/binaries/18f577b374d60b3c760a3a3350407632-STLport-4.5.tar.gz
  #Unfortunately later versions of hsqldb changed the file format, so if we use a later version we loose
  #backwards compatability.
- Source30:       http://hg.services.openoffice.org/binaries/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip
- Source31:       http://dev-www.libreoffice.org/extern/b4cae0700aa1c2aef7eb7f345365e6f1-translate-toolkit-1.8.1.tar.bz2
+ Source14:       http://hg.services.openoffice.org/binaries/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip
+ Source15:       http://dev-www.libreoffice.org/extern/b4cae0700aa1c2aef7eb7f345365e6f1-translate-toolkit-1.8.1.tar.bz2
  %if %{defined rhel} && 0%{?rhel} < 7
- Source32:       http://dev-www.libreoffice.org/src/0ff7d225d087793c8c2c680d77aac3e7-mdds_0.5.3.tar.bz2
- Source33:       http://hg.services.openoffice.org/binaries/067201ea8b126597670b5eff72e1f66c-mythes-1.2.0.tar.gz
+ Source16:       http://dev-www.libreoffice.org/src/0ff7d225d087793c8c2c680d77aac3e7-mdds_0.5.3.tar.bz2
+ Source17:       http://hg.services.openoffice.org/binaries/067201ea8b126597670b5eff72e1f66c-mythes-1.2.0.tar.gz
  %endif
+ Source18:       http://dev-www.libreoffice.org/src/a8b25a0bf696fd126a08319d88998492-libvisio-0.0.11.tar.bz2
+ Source19:       http://dev-www.libreoffice.org/src/e1c178b18f130b40494561f02bc1a948-libexttextcat-3.2.0.tar.bz2
+ Source20:       http://dev-www.libreoffice.org/src/7c2549f6b0a8bb604e6c4c729ffdcfe6-libcmis-0.1.0.tar.gz
+ # TODO: IIRC mysql-connector-cpp is in Fedora. Is it usable?
+ Source21:       http://dev-www.libreoffice.org/src/0981bda6548a8c8233ffce2b6e4b2a23-mysql-connector-c++-1.1.0.tar.gz
+ Source22:       http://dev-www.libreoffice.org/src/cc8eb870d6a324d36575420efd856319-libcdr-0.0.0.tar.bz2
+ 
  BuildRequires:  zip, findutils, autoconf, flex, bison, icu, gperf, gcc-c++
  BuildRequires:  binutils, java-devel < 1:1.7.0, boost-devel, zlib-devel
  BuildRequires:  python-devel, expat-devel, libxml2-devel, libxslt-devel, bc
@@@ -110,47 -103,20 +103,22 @@@ Patch3:  openoffice.org-3.0.0.ooo88341.
  Patch4:  openoffice.org-3.1.0.oooXXXXX.solenv.allowmissing.patch
  Patch5:  openoffice.org-3.1.0.ooo101274.opening-a-directory.patch
  Patch6:  openoffice.org-3.1.1.ooo105784.vcl.sniffscriptforsubs.patch
- Patch7:  openoffice.org-3.3.0.ooo108637.sfx2.uisavedir.patch
- Patch8:  openoffice.org-3.3.0.ooo113273.desktop.resolvelinks.patch
- Patch9:  libreoffice-installfix.patch
- Patch10: 0001-helgrind-Related-rhbz-655686-get-order-of-shutdown-c.patch
- Patch11: kde4configure.patch
- Patch12: 0001-Resolves-rhbz-695509-crash-in-RefreshDocumentLB.patch
- Patch13: 0001-bubble-down-configure-test-findings-on-visibility.patch
- Patch14: vbahelper.visibility.patch
- Patch15: 0001-rhbz-702635-set-correct-page-number-when-exporting-s.patch
- Patch16: 0001-Related-rhbz-652604-better-survive-exceptions-thrown.patch
- Patch17: 0001-Resolves-rhbz-713154-pdf-export-dialog-too-tall-to-f.patch
- Patch18: 0001-Related-rhbz-702833-addEventListener-without-removeE.patch
- Patch19: 0001-Related-rhbz-711087-band-aid.patch
- Patch20: 0001-rhbz-667082-do-not-crash-importing-section-containin.patch
- Patch21: 0001-Related-rhbz-718976-crash-in-SwTxtSizeInfo-GetMultiC.patch
- Patch22: 0001-Resolves-rhbz-715549-use-fontconfig-s-detected-forma.patch
- Patch23: 0001-Resolves-rhbz-693265-fix-crash-from-unhandled-except.patch
- Patch24: 0001-Related-rhbz-730225-avoid-segv-in-ld-this-was-set-to.patch
- Patch25: gdb-pretty-printers.patch
- Patch26: 0001-Related-fdo-37195-migrationoo3-not-registered.patch
- Patch27: 0001-Resolves-rhbz-738255-avoid-crash-on-NULL-pointer.patch
- Patch28: 0001-avoid-using-com.sun.org-apis.patch
- Patch29: 0001-add-Oracle-Java-1.7.0-recognition.patch
- Patch30: 0001-Resolves-fdo-32665-handle-that-FreeSerif-lacks-some-.patch
- Patch31: Backport-reading-AES-encrypted-ODF-1.2-documents.patch
+ Patch7:  libreoffice-installfix.patch
  %if %{defined rhel} && 0%{?rhel} < 7
- Patch32: libreoffice-libwpd08-1.patch
- Patch33: libreoffice-libwpd08-2.patch
- Patch34: 0001-wpsimport-writerperfect.diff-WPS-Import-filter-core-.patch
- Patch35: libreoffice-gcj.patch
- Patch36: libreoffice-rhel6poppler.patch
+ Patch8: libreoffice-libwpd08-1.patch
+ Patch9: libreoffice-libwpd08-2.patch
+ Patch10: 0001-wpsimport-writerperfect.diff-WPS-Import-filter-core-.patch
+ Patch11: libreoffice-gcj.patch
+ Patch12: libreoffice-rhel6poppler.patch
  %endif
- Patch37: 0001-Related-i58612-don-t-crash-anyway.patch
- Patch38: 0001-fix-horizontal-scrollbars-with-KDE-oxygen-style-bnc-.patch
- Patch39: 0001-Related-rhbz-753201-fedora-ant-java-1.5.0-gcj-won-t-.patch
- Patch40: solenv.fix.mk.inheritance.patch
- Patch41: libreoffice-ppc64.patch
- Patch42: 0001-Resolves-rhbz-751290-KDE-black-on-dark-tooltips.patch
- Patch43: 0001-gtk3-fix-cairo-canvas-crash-for-non-X-or-svp-backend.patch
- Patch44: 0001-Resolves-rhbz-761009-IFSD_Equal-is-asymmetrical.patch
- Patch45: 0001-Resolves-rhbz-767708-avoid-SIGBUS-writing-to-overcom.patch
 -Patch13: 0001-force-gbuild-stage-for-CustomTargets.patch
 -Patch14: 0001-these-translations-do-already-exist-in-translations-.patch
 -Patch15: 0001-fix-syntactic-error.patch
 -Patch16: 0001-Fix-typo-and-clean-up.patch
++Patch13: 0001-Resolves-rhbz-761009-IFSD_Equal-is-asymmetrical.patch
++Patch14: 0001-Resolves-rhbz-767708-avoid-SIGBUS-writing-to-overcom.patch
++Patch15: 0001-force-gbuild-stage-for-CustomTargets.patch
++Patch16: 0001-these-translations-do-already-exist-in-translations-.patch
++Patch17: 0001-fix-syntactic-error.patch
++Patch18: 0001-Fix-typo-and-clean-up.patch
+ # TODO: this in S390 only, so it can wait .-)
+ #Patch13: solenv.fix.mk.inheritance.patch
  
  %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
  %define instdir %{_libdir}
@@@ -799,51 -751,23 +753,25 @@@ mv -f redhat.soc extras/source/palettes
  %patch2  -p1 -b .ooo86080.unopkg.bodge.patch
  %patch3  -p1 -b .ooo88341.sc.verticalboxes.patch
  %patch4  -p1 -b .oooXXXXX.solenv.allowmissing.patch
- %patch5  -p0 -b .ooo101274.opening-a-directory.patch
- %patch6  -p0 -b .ooo105784.vcl.sniffscriptforsubs.patch
- %patch7  -p1 -b .ooo108637.sfx2.uisavedir.patch
- %patch8  -p0 -b .ooo113273.desktop.resolvelinks.patch
- %patch9  -p1 -b .libreoffice-installfix.patch
- %patch10 -p1 -b .rhbz655686-get-order-of-shutdown-c.patch
- %patch11 -p0 -b .kde4configure.patch
- %patch12 -p1 -b .rhbz695509-crash-in-RefreshDocumentLB.patch
- %patch13 -p1 -b .bubble-down-configure-test-findings-on-visibility.patch
- %patch14 -p0 -b .vbahelper.visibility.patch
- %patch15 -p1 -b .rhbz702635-set-correct-page-number-when-exporting-s.patch
- %patch16 -p1 -b .rhbz652604-better-survive-exceptions-thrown.patch
- %patch17 -p1 -b .rhbz713154-pdf-export-dialog-too-tall-to-f.patch
- %patch18 -p1 -b .rhbz702833-addEventListener-without-removeE.patch
- %patch19 -p1 -b .rhbz711087-band-aid.patch
- %patch20 -p1 -b .rhbz667082-do-not-crash-importing-section-containin.patch
- %patch21 -p1 -b .rhbz718976-crash-in-SwTxtSizeInfo-GetMultiC.patch
- %patch22 -p1 -b .rhbz715549-use-fontconfig-s-detected-forma.patch
- %patch23 -p1 -b .rhbz693265-fix-crash-from-unhandled-except.patch
- %patch24 -p1 -b .rhbz730225-avoid-segv-in-ld-this-was-set-to.patch
- %patch25 -p1
- %patch26 -p1 -b .fdo37195-migrationoo3-not-registered.patch
- %patch27 -p1 -b .rhbz738255-avoid-crash-on-NULL-pointer.patch
- %patch28 -p1 -b .avoid-using-com.sun.org-apis.patch
- %patch29 -p1 -b .add-Oracle-Java-1.7.0-recognition.patch
- %patch30 -p1 -b .fdo32665-handle-that-FreeSerif-lacks-some-.patch
- %patch31 -p1 -b .Backport-reading-AES-encrypted-ODF-1.2-documents.patch
+ %patch5  -p1 -b .ooo101274.opening-a-directory.patch
+ %patch6  -p1 -b .ooo105784.vcl.sniffscriptforsubs.patch
+ %patch7  -p1 -b .libreoffice-installfix.patch
  %if %{defined rhel} && 0%{?rhel} < 7
- %patch32 -p1 -b .libwpd08-1.patch
- %patch33 -p1 -R -b .libreoffice-libwpd08-2.patch
- %patch34 -p1 -R -b .wpsimport
- %patch35 -p1 -b .gcj.patch
- %patch36 -p0 -b .rhel6poppler.patch
+ %patch8 -p1 -b .libwpd08-1.patch
+ %patch9 -p1 -R -b .libreoffice-libwpd08-2.patch
+ %patch10 -p1 -R -b .wpsimport
+ %patch11 -p1 -b .gcj.patch
+ %patch12 -p0 -b .rhel6poppler.patch
  %endif
- %patch37 -p1 -b .i58612-don-t-crash-anyway.patch
- %patch38 -p1 -b .fix-horizontal-scrollbars-with-KDE-oxygen-style-bnc-.patch
- %patch39 -p1 -b .rhbz753201-fedora-ant-java-1.5.0-gcj-won-t-.patch
- %patch40 -p1 -b .solenv.fix.mk.inheritance.patch
- %patch41 -p1 -b .libreoffice-ppc64.patch
- %patch42 -p1 -b .rhbz751290-KDE-black-on-dark-tooltips.patch
- %patch43 -p1 -b .fix-cairo-canvas-crash-for-non-X-or-svp-backend.patch
- %patch44 -p1 -b .rhbz761009-IFSD_Equal-is-asymmetrical.patch
- %patch45 -p1 -b .rhbz767708-avoid-SIGBUS-writing-to-overcom.patch
- 
- 
 -%patch13 -p1 -b .force-gbuild-stage-for-CustomTargets.patch
 -%patch14 -p1 -b .these-translations-do-already-exist-in-translations-.patch
 -%patch15 -p1 -b .fix-syntactic-error.patch
 -%patch16 -p1 -b .Fix-typo-and-clean-up.patch
++%patch13 -p1 -b .rhbz761009-IFSD_Equal-is-asymmetrical.patch
++%patch14 -p1 -b .rhbz767708-avoid-SIGBUS-writing-to-overcom.patch
++%patch15 -p1 -b .force-gbuild-stage-for-CustomTargets.patch
++%patch16 -p1 -b .these-translations-do-already-exist-in-translations-.patch
++%patch17 -p1 -b .fix-syntactic-error.patch
++%patch18 -p1 -b .Fix-typo-and-clean-up.patch
+ #%patch13 -p1 -b .solenv.fix.mk.inheritance.patch
+ 
+ # TODO: check this
  # these are horribly incomplete--empty translations and copied english
  # strings with spattering of translated strings
  rm -rf translations/source/{gu,he,hr}/helpcontent2
@@@ -2151,10 -2041,41 +2045,45 @@@ update-desktop-database %{_datadir}/app
  %endif
  
  %changelog
 -* Tue Dec 13 2011 David Tardon <dtardon at redhat.com> - 3.4.99.1-1
++* Sun Dec 18 2011 David Tardon <dtardon at redhat.com> - 3.4.99.1-1
+ - 3.5.0 beta1
+ - drop integrated 0001-Related-fdo-37195-migrationoo3-not-registered.patch
+ - drop integrated 0001-Related-i58612-don-t-crash-anyway.patch
+ - drop integrated 0001-Related-rhbz-652604-better-survive-exceptions-thrown.patch
+ - drop integrated 0001-Related-rhbz-702833-addEventListener-without-removeE.patch
+ - drop integrated 0001-Related-rhbz-711087-band-aid.patch
+ - drop integrated 0001-Related-rhbz-718976-crash-in-SwTxtSizeInfo-GetMultiC.patch
+ - drop integrated 0001-Related-rhbz-730225-avoid-segv-in-ld-this-was-set-to.patch
+ - drop integrated 0001-Related-rhbz-753201-fedora-ant-java-1.5.0-gcj-won-t-.patch
+ - drop integrated 0001-Resolves-fdo-32665-handle-that-FreeSerif-lacks-some-.patch
+ - drop integrated 0001-Resolves-rhbz-693265-fix-crash-from-unhandled-except.patch
+ - drop integrated 0001-Resolves-rhbz-695509-crash-in-RefreshDocumentLB.patch
+ - drop integrated 0001-Resolves-rhbz-713154-pdf-export-dialog-too-tall-to-f.patch
+ - drop integrated 0001-Resolves-rhbz-715549-use-fontconfig-s-detected-forma.patch
+ - drop integrated 0001-Resolves-rhbz-738255-avoid-crash-on-NULL-pointer.patch
+ - drop integrated 0001-Resolves-rhbz-751290-KDE-black-on-dark-tooltips.patch
+ - drop integrated 0001-add-Oracle-Java-1.7.0-recognition.patch
+ - drop integrated 0001-avoid-using-com.sun.org-apis.patch
+ - drop integrated 0001-bubble-down-configure-test-findings-on-visibility.patch
+ - drop integrated 0001-fix-horizontal-scrollbars-with-KDE-oxygen-style-bnc-.patch
+ - drop integrated 0001-gtk3-fix-cairo-canvas-crash-for-non-X-or-svp-backend.patch
+ - drop integrated 0001-helgrind-Related-rhbz-655686-get-order-of-shutdown-c.patch
+ - drop integrated 0001-rhbz-667082-do-not-crash-importing-section-containin.patch
+ - drop integrated 0001-rhbz-702635-set-correct-page-number-when-exporting-s.patch
+ - drop integrated Backport-reading-AES-encrypted-ODF-1.2-documents.patch
+ - drop integrated gdb-pretty-printers.patch
+ - drop integrated kde4configure.patch
+ - drop integrated libreoffice-ppc64.patch
+ - drop integrated openoffice.org-3.3.0.ooo108637.sfx2.uisavedir.patch
+ - drop integrated openoffice.org-3.3.0.ooo113273.desktop.resolvelinks.patch
+ - drop integrated vbahelper.visibility.patch
+ - drop libreoffice-testtools subpackage, because testtool has been
+   removed by upstream
+ 
 +* Thu Dec 15 2011 Caolán McNamara <caolanm at redhat.com> - 3.4.4.2-6
 +- Resolves: rhbz#761009 IFSD_Equal is asymmetrical
 +- Resolves: rhbz#767708 write to mmap'ed file w/o disk space: SIGBUS
 +
  * Tue Nov 29 2011 Caolán McNamara <caolanm at redhat.com> - 3.4.4.2-5
  - Resolves: rhbz#757653 fix headless crash with cairo canvas
  


More information about the scm-commits mailing list