Hello community, here is the log from the commit of package synergy for openSUSE:Factory checked in at 2018-03-04 12:52:13 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/synergy (Old) and /work/SRC/openSUSE:Factory/.synergy.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "synergy" Sun Mar 4 12:52:13 2018 rev:19 rq:582290 version:1.8.8 Changes: -------- --- /work/SRC/openSUSE:Factory/synergy/synergy.changes 2018-02-27 17:00:10.835223388 +0100 +++ /work/SRC/openSUSE:Factory/.synergy.new/synergy.changes 2018-03-04 12:52:51.531033687 +0100 @@ -1,0 +2,6 @@ +Sat Feb 24 21:23:39 UTC 2018 - [email protected] + +- Add add-support-for-latin-s-and-t-with-comma-below.patch, + submitted upstream at https://github.com/symless/synergy-core/pull/6261 + +------------------------------------------------------------------- New: ---- add-support-for-latin-s-and-t-with-comma-below.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ synergy.spec ++++++ --- /var/tmp/diff_new_pack.5D3Cto/_old 2018-03-04 12:52:52.319004975 +0100 +++ /var/tmp/diff_new_pack.5D3Cto/_new 2018-03-04 12:52:52.323004829 +0100 @@ -22,7 +22,7 @@ Summary: Mouse, keyboard and clipboard sharing utility License: GPL-2.0+ Group: System/X11/Utilities -URL: http://synergy-project.org/ +Url: http://synergy-project.org/ Source0: https://github.com/symless/synergy/archive/v%{version}-stable.tar.gz Source1: synergy-firewall-services Source2: qsynergy.desktop @@ -30,6 +30,8 @@ Source4: synergys.socket Source5: synergys.service Patch1: 0001-OpenSSL-1.1.0-build-fix.patch +# PATCH-FIX-UPSTREAM add-support-for-latin-s-and-t-with-comma-below.patch +Patch2: add-support-for-latin-s-and-t-with-comma-below.patch # patches from Gentoo (taken from Mageia) Patch11: synergy-1.5.0-pthread.patch Patch14: synergy-1.5.0-disable-version-check.patch @@ -82,6 +84,7 @@ %prep %setup -q -n %{name}-%{version}-stable %patch1 -p1 +%patch2 -p1 %patch11 -p1 %patch14 -p1 cp %{SOURCE2} . ++++++ add-support-for-latin-s-and-t-with-comma-below.patch ++++++ >From dfb8d1501062b229c10bdc30a9fda2098e349519 Mon Sep 17 00:00:00 2001 From: Robert Munteanu <[email protected]> Date: Sat, 24 Feb 2018 23:13:43 +0200 Subject: [PATCH] Add support for latin 's' and 't' with comma below These codes were not supported at all, presumably due to being introduced only in Unicode 3.0. --- src/lib/platform/XWindowsUtil.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib/platform/XWindowsUtil.cpp b/src/lib/platform/XWindowsUtil.cpp index f9dd93f19..41c695263 100644 --- a/src/lib/platform/XWindowsUtil.cpp +++ b/src/lib/platform/XWindowsUtil.cpp @@ -933,6 +933,10 @@ struct codepair { { XK_oe, 0x0153 }, /* LATIN SMALL LIGATURE OE */ { XK_Ydiaeresis, 0x0178 }, /* LATIN CAPITAL LETTER Y WITH DIAERESIS */ { XK_EuroSign, 0x20ac }, /* EURO SIGN */ +{ 0x1000218, 0x0218}, /* LATIN CAPITAL LETTER S WITH COMMA BELOW */ +{ 0x1000219, 0x0219}, /* LATIN SMALL LETTER S WITH COMMA BELOW */ +{ 0x100021a, 0x021a}, /* LATIN CAPITAL LETTER T WITH COMMA BELOW */ +{ 0x100021b, 0x021b}, /* LATIN CAPITAL LETTER T WITH COMMA BELOW */ /* combining dead keys */ { XK_dead_abovedot, 0x0307 }, /* COMBINING DOT ABOVE */
