[Bug 806250] New: hunspell spitting errors on each startup

https://bugzilla.novell.com/show_bug.cgi?id=806250 https://bugzilla.novell.com/show_bug.cgi?id=806250#c0 Summary: hunspell spitting errors on each startup Classification: openSUSE Product: openSUSE 12.2 Version: Final Platform: Other OS/Version: Other Status: NEW Severity: Normal Priority: P5 - None Component: LibreOffice AssignedTo: pgajdos@suse.com ReportedBy: msvec@suse.com QAContact: qa-bugs@suse.de Found By: --- Blocker: --- bash$ hunspell -d cs_CZ /etc/passwd warning: line 274: incompatible stripping characters and condition warning: line 275: incompatible stripping characters and condition warning: line 599: incompatible stripping characters and condition warning: line 901: incompatible stripping characters and condition warning: line 1309: incompatible stripping characters and condition warning: line 1310: incompatible stripping characters and condition warning: line 1311: incompatible stripping characters and condition warning: line 1759: incompatible stripping characters and condition warning: line 1760: incompatible stripping characters and condition warning: line 1761: incompatible stripping characters and condition warning: line 2119: incompatible stripping characters and condition For context see https://bugs.freedesktop.org/show_bug.cgi?id=61501 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=806250 https://bugzilla.novell.com/show_bug.cgi?id=806250#c1 --- Comment #1 from Petr Gajdos <pgajdos@suse.com> 2013-02-26 14:05:10 UTC --- hunspell-1.3.2/NEWS: * check affix rules and OOo dictionaries. Detected bugs in cs_CZ, es_ES, es_NEW, es_MX, lt_LT, nn_NO, pt_PT, ro_RO, sk_SK and sv_SE dictionaries). Details: -------------------------------------------------------- cs_CZ warning - incompatible stripping characters and condition: SFX D us ech [^ighk]os SFX D us y [^i]os SFX Q os ech [^ghk]es SFX M o ech [^ghkei]a SFX J ém ej ám SFX J ém ejme ám SFX J ém ejte ám SFX A ou¾it up oupit SFX A ou¾it upme oupit SFX A ou¾it upte oupit SFX A nout l [aeiouyáéíóúýùìr][^aeiouyáéíóúýùìrl][^aeiouy SFX A nout l [aeiouyáéíóúýùìr][^aeiouyáéíóúýùìrl][^aeiouy es_ES [...] -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=806250 https://bugzilla.novell.com/show_bug.cgi?id=806250#c2 Michal Svec <msvec@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |msvec@suse.com --- Comment #2 from Michal Svec <msvec@suse.com> 2013-02-26 15:12:21 CET --- Hmm. Looks like we might need to fix the CZ dictionary instead... (and possibly other dictionaries too) -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=806250 https://bugzilla.novell.com/show_bug.cgi?id=806250#c3 Petr Gajdos <pgajdos@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P5 - None |P3 - Medium Status|NEW |ASSIGNED CC| |pmladek@suse.com --- Comment #3 from Petr Gajdos <pgajdos@suse.com> 2013-02-26 14:21:51 UTC --- Yes, I am studying correct syntax of .aff file :-). -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=806250 https://bugzilla.novell.com/show_bug.cgi?id=806250#c4 --- Comment #4 from Petr Gajdos <pgajdos@suse.com> 2013-02-26 14:44:17 UTC --- Only by looking on cs_CZ.aff (I don't know meaning of columns in .aff files so far), I have noticed maybe last column should contain the entry on third column? I. e. -SFX D us ech [^ighk]os +SFX D us ech [^ighk]us suppress the warning for me. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=806250 https://bugzilla.novell.com/show_bug.cgi?id=806250#c5 Petr Gajdos <pgajdos@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |pgajdos@suse.com AssignedTo|pgajdos@suse.com |pmladek@suse.com --- Comment #5 from Petr Gajdos <pgajdos@suse.com> 2013-02-26 15:38:50 UTC --- According to man 4 hunspell: -----------------------8<------------------------ SET UTF-8 TRY esianrtolcdugmphbyfvkwzESIANRTOLCDUGMPHBYFVKWZ' REP 2 REP f ph REP ph f PFX A Y 1 PFX A 0 re . SFX B Y 2 SFX B 0 ed [^y] SFX B y ied y In the affix file, prefix A and suffix B have been defined. Flag A defines a `re-' prefix. Class B defines two `-ed' suffixes. First B suffix can be added to a word if the last character of the word isn't `y'. Second suffix can be added to the words terminated with an `y'. ------------------------>8-------------------------- To my understanding, have something in the last column that doesn't match suffix in third column is nonsense. E. g. cs_CZ.dic: absolutno/MQ cs_CZ.aff: SFX M o ech [^cghkeiy]o generates word 'absolutnech', because it is defined in M class and it ends on o but doesn't end on 'co', 'go', 'ho', 'ko', 'eo', io, or 'yo'. Now the wrong rule: SFX D us ech [^ighk]os tells that from word in class D ending on 'us' can be derived word ending on 'ech' as long as condition [^ighk]os holds, which never can't, if I understand correctly. Last two wrong rules from comment 1 seems to be even wrong simplified regular expressions. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=806250 https://bugzilla.novell.com/show_bug.cgi?id=806250#c6 --- Comment #6 from Petr Mladek <pmladek@suse.com> 2013-02-26 18:03:12 UTC --- Ah, some of the dictionaries are outdated. For example, I see that a newer version of the Czech dictionary is available in the LO git repo, see http://cgit.freedesktop.org/libreoffice/dictionaries/tree/cs_CZ I am not sure if the is even newer version. I do not see it at http://extensions.libreoffice.org/extension-center or http://extensions.services.openoffice.org/en/project/dict-cs Anyway, I wonder if the newer version solves some of the errors. I could not test it easily because I have older Hunspell on my SLED system. Out of scope: I have on my TODO list to use dictionaries from the LO git repo in the myspell-dictionaries source package. Well, it would take some time. We need to update the script for generating the spec file and the part unpacking the source tarballs. Also checking the licenses is usually a pain. If you would have time to work on this that would be great ;-) -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=806250 https://bugzilla.novell.com/show_bug.cgi?id=806250#c7 --- Comment #7 from Petr Gajdos <pgajdos@suse.com> 2013-02-27 07:41:21 UTC --- Yes, at least cs_CZ dictionary looks better: SFX D us ech [^eik]us SFX D us y [^ei]us SFX Q os ech [^ghk]os SFX M o ech [^cghkeiy]o SFX J ám ej ám SFX J ám ejme ám SFX J ám ejte ám SFX A oupit up oupit SFX A oupit upme oupit SFX A oupit upte oupit SFX A nout l [aeiouyáéíóúýùìr][^aeiouyáéíóúýùìrl][^aeiouyáéíóúýùìrl]nout SFX A nout l [aeiouyáéíóúýùìr][^aeiouyáéíóúýùìrl]nout -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=806250 https://bugzilla.novell.com/show_bug.cgi?id=806250#c8 --- Comment #8 from Michal Svec <msvec@suse.com> 2013-05-09 11:36:12 CEST --- Is there any chance to have the updated packages at least in LO:Stable? There's probably no need to push those through as online update, though it would be nice, too. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=806250 https://bugzilla.novell.com/show_bug.cgi?id=806250#c9 --- Comment #9 from Michal Svec <msvec@suse.com> 2014-01-03 09:56:21 CET --- Please also see https://bugs.freedesktop.org/show_bug.cgi?id=61501#c4 (the comment from yesterday). -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=806250 https://bugzilla.novell.com/show_bug.cgi?id=806250#c10 --- Comment #10 from Michal Svec <msvec@suse.com> 2014-02-25 13:15:14 CET --- This seems to be fixed, isn't it? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=806250 https://bugzilla.novell.com/show_bug.cgi?id=806250#c11 --- Comment #11 from Petr Mladek <pmladek@suse.com> 2014-02-25 15:04:38 UTC --- I do not see any update of myspell-czech. I wonder if it has been solved in the hunspell library/tool. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=806250 https://bugzilla.novell.com/show_bug.cgi?id=806250#c12 --- Comment #12 from Michal Svec <msvec@suse.com> 2014-03-13 15:50:48 CET --- The bug is still present in 13.1 as of today. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=806250 https://bugzilla.novell.com/show_bug.cgi?id=806250#c13 Petr Mladek <pmladek@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|pmladek@suse.com |pgajdos@suse.com --- Comment #13 from Petr Mladek <pmladek@suse.com> 2014-04-11 08:27:42 UTC --- Petr, could you please have a look at this bug? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=806250 https://bugzilla.novell.com/show_bug.cgi?id=806250#c14 --- Comment #14 from Petr Gajdos <pgajdos@suse.com> 2014-04-11 08:32:45 UTC --- :) -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=806250 https://bugzilla.novell.com/show_bug.cgi?id=806250#c15 Petr Gajdos <pgajdos@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tchvatal@suse.com --- Comment #15 from Petr Gajdos <pgajdos@suse.com> 2014-04-16 12:52:53 UTC --- Try myspell-dictionaries from home:pgajdos http://download.opensuse.org/repositories/home:/pgajdos/openSUSE_13.1/noarch... Note that there is another subpackage layout, it corresponds to http://cgit.freedesktop.org/libreoffice/dictionaries/ so, for example, all Spanish dictionaries are provided by myspell-es, af_ZA and af_NA is provided by myspell-af_ZA, etc. Plese test! I will do some regression tests and solve Obsoletes and then submit some time next week perhaps (if there is no major issue). -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=806250 https://bugzilla.novell.com/show_bug.cgi?id=806250#c16 --- Comment #16 from Bernhard Wiedemann <bwiedemann@suse.com> 2014-04-18 15:00:15 CEST --- This is an autogenerated message for OBS integration: This bug (806250) was mentioned in https://build.opensuse.org/request/show/230746 Factory / myspell-dictionaries -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=806250 https://bugzilla.novell.com/show_bug.cgi?id=806250#c17 --- Comment #17 from Michal Svec <msvec@suse.com> 2014-04-18 15:14:09 CEST --- After updating myspell-cs_CZ and myspell-dictionaries from the above repository the messages do not show up any more. Thanks! (Obviously, the Obsoletes don't work yet, myspell-american was removed upon install without replacement) -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=806250 https://bugzilla.novell.com/show_bug.cgi?id=806250#c18 --- Comment #18 from Petr Gajdos <pgajdos@suse.com> 2014-04-22 08:15:12 UTC --- (In reply to comment #17)
(Obviously, the Obsoletes don't work yet, myspell-american was removed upon install without replacement)
That does mean Obsoletes work, no :)? Seriously, someone would need to make a map (simple text file would suffice) from old to new names. Then we could extend update.sh to assign correct Provides to individual subpackages. myspell subpackages should still correctly provide locale() symbols though. For example, myspell-en provide, besides other english variants: Provides: locale(OpenOffice_org:en_US) Provides: locale(libreoffice:en_US) Provides: locale(seamonkey-spellchecker:en_US) So if there is a package on the system, which would Require such symbol, myspell-en _should_ replace myspell-american, if I understand correctly. I am not sure how often are myspell dictionaries installed by hand. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=806250 https://bugzilla.novell.com/show_bug.cgi?id=806250#c19 --- Comment #19 from Petr Gajdos <pgajdos@suse.com> 2014-04-22 09:43:38 UTC --- Created an attachment (id=587207) --> (http://bugzilla.novell.com/attachment.cgi?id=587207) Map new name -> old names. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=806250 https://bugzilla.novell.com/show_bug.cgi?id=806250#c20 --- Comment #20 from Petr Gajdos <pgajdos@suse.com> 2014-04-22 09:45:19 UTC --- Created an attachment (id=587208) --> (http://bugzilla.novell.com/attachment.cgi?id=587208) Missing subpackages in the new myspell-dictionaries. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=806250 https://bugzilla.novell.com/show_bug.cgi?id=806250#c21 --- Comment #21 from Tomáš Chvátal <tchvatal@suse.com> 2014-04-22 10:53:04 UTC --- Hmm the Provides for the locale(OpenOffice_org:en_US) [and similar] should not be needed and even ought to be dropped. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=806250 https://bugzilla.novell.com/show_bug.cgi?id=806250#c22 Petr Gajdos <pgajdos@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED --- Comment #22 from Petr Gajdos <pgajdos@suse.com> 2014-04-22 11:08:52 UTC --- update.sh extended. Please reopen whenever appropriate. Thanks to everyone! -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=806250 https://bugzilla.novell.com/show_bug.cgi?id=806250#c23 --- Comment #23 from Bernhard Wiedemann <bwiedemann@suse.com> 2014-04-22 14:00:13 CEST --- This is an autogenerated message for OBS integration: This bug (806250) was mentioned in https://build.opensuse.org/request/show/231017 Factory / myspell-dictionaries -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=806250 https://bugzilla.novell.com/show_bug.cgi?id=806250#c24 --- Comment #24 from Bernhard Wiedemann <bwiedemann@suse.com> 2014-04-25 11:00:15 CEST --- This is an autogenerated message for OBS integration: This bug (806250) was mentioned in https://build.opensuse.org/request/show/231364 Factory / myspell-dictionaries -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=806250 https://bugzilla.novell.com/show_bug.cgi?id=806250#c25 --- Comment #25 from Bernhard Wiedemann <bwiedemann@suse.com> 2014-04-28 17:00:14 CEST --- This is an autogenerated message for OBS integration: This bug (806250) was mentioned in https://build.opensuse.org/request/show/231922 Factory / myspell-dictionaries -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=806250 --- Comment #37 from Bernhard Wiedemann <bwiedemann@suse.com> --- This is an autogenerated message for OBS integration: This bug (806250) was mentioned in https://build.opensuse.org/request/show/294737 Factory / myspell-dictionaries -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=806250 --- Comment #42 from Bernhard Wiedemann <bwiedemann@suse.com> --- This is an autogenerated message for OBS integration: This bug (806250) was mentioned in https://build.opensuse.org/request/show/298101 13.2 / myspell-dictionaries -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=806250 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard| |obs:running:3713:moderate -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=806250 --- Comment #45 from Bernhard Wiedemann <bwiedemann@suse.com> --- This is an autogenerated message for OBS integration: This bug (806250) was mentioned in https://build.opensuse.org/request/show/298172 13.1 / myspell-dictionaries -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=806250 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|obs:running:3713:moderate | -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=806250 --- Comment #46 from Swamp Workflow Management <swamp@suse.de> --- openSUSE-RU-2015:0782-1: An update that has one recommended fix can now be installed. Category: recommended (moderate) Bug References: 806250 CVE References: Sources used: openSUSE 13.2 (src): myspell-dictionaries-20140911-4.1 openSUSE 13.1 (src): myspell-dictionaries-20090731-32.3.1 -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=806250 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard| |ibs:running:1176:low -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=806250 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|ibs:running:1176:low |ibs:running:1176:moderate -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=806250 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|ibs:running:1176:moderate |ibs:running:1176:moderate | |ibs:running:1174:moderate -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=806250 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|ibs:running:1176:moderate |ibs:running:1174:moderate |ibs:running:1174:moderate | -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=806250 http://bugzilla.novell.com/show_bug.cgi?id=806250#c47 --- Comment #47 from Swamp Workflow Management <swamp@suse.de> --- SUSE-SU-2015:1915-1: An update that solves 7 vulnerabilities and has 16 fixes is now available. Category: security (moderate) Bug References: 470073,806250,829430,890735,900186,900877,907966,910805,910806,913042,914911,915996,916181,918852,919409,926375,929793,934423,936188,936190,940838,943075,945692 CVE References: CVE-2014-8146,CVE-2014-8147,CVE-2015-1774,CVE-2015-4551,CVE-2015-5212,CVE-2015-5213,CVE-2015-5214 Sources used: SUSE Linux Enterprise Workstation Extension 12 (src): apache-commons-logging-1.1.3-7.1, cmis-client-0.5.0-5.1, flute-1.3.0-4.2, hyphen-2.8.8-9.1, libabw-0.1.1-5.3, libbase-1.1.3-4.3, libcdr-0.1.1-5.3, libe-book-0.1.2-4.2, libetonyek-0.1.3-3.5, libfonts-1.1.3-4.9, libformula-1.1.3-4.3, libfreehand-0.1.1-4.9, libgltf-0.0.1-2.1, libixion-0.9.1-3.1, liblangtag-0.5.7-3.1, liblayout-0.2.10-4.8, libloader-1.1.3-3.2, libmspub-0.1.2-5.1, libmwaw-0.3.6-3.3, libodfgen-0.1.4-3.9, liborcus-0.7.1-3.1, libpagemaker-0.0.2-2.3, libreoffice-5.0.2.2-13.14, libreoffice-share-linker-1-2.1, libreoffice-voikko-4.1-6.3, librepository-1.1.3-4.3, librevenge-0.0.2-4.1, libserializer-1.1.2-4.3, libvisio-0.1.3-4.3, libvoikko-3.7.1-3.1, libwps-0.4.1-3.1, malaga-suomi-1.18-3.2, myspell-dictionaries-20150827-5.1, pentaho-libxml-1.1.3-4.3, pentaho-reporting-flow-engine-0.9.4-4.5, sac-1.3-4.1 SUSE Linux Enterprise Software Development Kit 12 (src): cmis-client-0.5.0-5.1, graphite2-1.3.1-3.1, hyphen-2.8.8-9.1, libabw-0.1.1-5.3, libcdr-0.1.1-5.3, libe-book-0.1.2-4.2, libetonyek-0.1.3-3.5, libfreehand-0.1.1-4.9, libixion-0.9.1-3.1, liblangtag-0.5.7-3.1, libmspub-0.1.2-5.1, libmwaw-0.3.6-3.3, libodfgen-0.1.4-3.9, liborcus-0.7.1-3.1, librevenge-0.0.2-4.1, libvisio-0.1.3-4.3, libvoikko-3.7.1-3.1, libwps-0.4.1-3.1, malaga-suomi-1.18-3.2 SUSE Linux Enterprise Server 12 (src): apache-commons-logging-1.1.3-7.1, graphite2-1.3.1-3.1 SUSE Linux Enterprise Desktop 12 (src): apache-commons-logging-1.1.3-7.1, cmis-client-0.5.0-5.1, flute-1.3.0-4.2, graphite2-1.3.1-3.1, hyphen-2.8.8-9.1, libabw-0.1.1-5.3, libbase-1.1.3-4.3, libcdr-0.1.1-5.3, libe-book-0.1.2-4.2, libetonyek-0.1.3-3.5, libfonts-1.1.3-4.9, libformula-1.1.3-4.3, libfreehand-0.1.1-4.9, libgltf-0.0.1-2.1, libixion-0.9.1-3.1, liblangtag-0.5.7-3.1, liblayout-0.2.10-4.8, libloader-1.1.3-3.2, libmspub-0.1.2-5.1, libmwaw-0.3.6-3.3, libodfgen-0.1.4-3.9, liborcus-0.7.1-3.1, libpagemaker-0.0.2-2.3, libreoffice-5.0.2.2-13.14, libreoffice-share-linker-1-2.1, libreoffice-voikko-4.1-6.3, librepository-1.1.3-4.3, librevenge-0.0.2-4.1, libserializer-1.1.2-4.3, libvisio-0.1.3-4.3, libvoikko-3.7.1-3.1, libwps-0.4.1-3.1, malaga-suomi-1.18-3.2, myspell-dictionaries-20150827-5.1, pentaho-libxml-1.1.3-4.3, pentaho-reporting-flow-engine-0.9.4-4.5, sac-1.3-4.1 -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=806250 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|ibs:running:1174:moderate | -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=806250 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard| |ibs:running:1174:moderate -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=806250 http://bugzilla.novell.com/show_bug.cgi?id=806250#c48 --- Comment #48 from Swamp Workflow Management <swamp@suse.de> --- SUSE-SU-2016:0324-1: An update that solves 7 vulnerabilities and has 19 fixes is now available. Category: security (moderate) Bug References: 306333,547549,668145,679938,681560,688200,718113,806250,857026,889755,890735,907636,907966,910805,910806,914911,934423,936188,936190,939996,940838,943075,945047,945692,951579,954345 CVE References: CVE-2014-8146,CVE-2014-8147,CVE-2014-9093,CVE-2015-4551,CVE-2015-5212,CVE-2015-5213,CVE-2015-5214 Sources used: SUSE Linux Enterprise Software Development Kit 11-SP4 (src): google-carlito-fonts-1.1.03.beta1-2.1, hyphen-2.8.8-2.1, libreoffice-5.0.4.2-23.1, libreoffice-share-linker-1-2.1, libreoffice-voikko-4.1-2.26, libvoikko-3.7.1-5.2, myspell-dictionaries-20150827-23.1, mythes-1.2.4-2.1, python-importlib-1.0.2-0.8.1 SUSE Linux Enterprise Desktop 11-SP4 (src): google-carlito-fonts-1.1.03.beta1-2.1, hyphen-2.8.8-2.1, libreoffice-5.0.4.2-23.1, libreoffice-share-linker-1-2.1, libreoffice-voikko-4.1-2.26, libvoikko-3.7.1-5.2, myspell-dictionaries-20150827-23.1, mythes-1.2.4-2.1, python-importlib-1.0.2-0.8.1 SUSE Linux Enterprise Debuginfo 11-SP4 (src): hyphen-2.8.8-2.1, libreoffice-5.0.4.2-23.1, libvoikko-3.7.1-5.2, mythes-1.2.4-2.1 -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=806250 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|ibs:running:1174:moderate | -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=806250 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard| |obs:running:5306:moderate -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=806250 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|obs:running:5306:moderate | -- You are receiving this mail because: You are on the CC list for the bug.
participants (1)
-
bugzilla_noreply@novell.com