Hello community, here is the log from the commit of package vinagre for openSUSE:Factory checked in at 2015-10-06 16:31:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/vinagre (Old) and /work/SRC/openSUSE:Factory/.vinagre.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "vinagre" Changes: -------- --- /work/SRC/openSUSE:Factory/vinagre/vinagre.changes 2015-05-18 21:45:54.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.vinagre.new/vinagre.changes 2015-10-06 16:31:04.000000000 +0200 @@ -1,0 +2,25 @@ +Tue Sep 22 06:45:46 UTC 2015 - [email protected] + +- Update to version 3.18.0: + + Allow scaling of RDP sessions. + + Updated translations. + +------------------------------------------------------------------- +Wed Sep 2 07:54:03 UTC 2015 - [email protected] + +- Update to version 3.17.91: + + Use cached session size for RDP. + + Fix selection rectangle when user leaves window. + + Updated translations. + +------------------------------------------------------------------- +Tue May 26 19:17:28 UTC 2015 - [email protected] + +- Update to version 3.17.2: + + Trivial const-correctness fix. + + Fix building against newer FreeRDP versions. + + Updated translations. +- Add vinagre-revert-freerdp-versionbump.patch: Revert upstreams + adoptation to newer versions of freerdp (bgo#749124). + +------------------------------------------------------------------- Old: ---- vinagre-3.16.1.tar.xz New: ---- vinagre-3.18.0.tar.xz vinagre-revert-freerdp-versionbump.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ vinagre.spec ++++++ --- /var/tmp/diff_new_pack.E5UCgz/_old 2015-10-06 16:31:04.000000000 +0200 +++ /var/tmp/diff_new_pack.E5UCgz/_new 2015-10-06 16:31:04.000000000 +0200 @@ -17,13 +17,15 @@ Name: vinagre -Version: 3.16.1 +Version: 3.18.0 Release: 0 Summary: VNC client for GNOME License: GPL-2.0+ Group: Productivity/Networking/Other Url: http://www.gnome.org/projects/vinagre/ -Source0: http://download.gnome.org/sources/vinagre/3.16/%{name}-%{version}.tar.xz +Source0: http://download.gnome.org/sources/vinagre/3.18/%{name}-%{version}.tar.xz +# PATCH-FIX-OPENSUSE vinagre-revert-freerdp-versionbump.patch bgo#749124 [email protected] -- Upstream have moved on to newer versions of freerdp than we have in openSUSE. Since I can't be botherd to versionbump freerdp, just revert the commit. +Patch0: vinagre-revert-freerdp-versionbump.patch # The icon we rely on is from adwaita-icon-theme BuildRequires: adwaita-icon-theme BuildRequires: fdupes @@ -62,6 +64,8 @@ %prep %setup -q translation-update-upstream +# Revert commit from upstream +%patch0 -p1 -R %build %configure --disable-static \ ++++++ vinagre-3.16.1.tar.xz -> vinagre-3.18.0.tar.xz ++++++ ++++ 6424 lines of diff (skipped) ++++++ vinagre-revert-freerdp-versionbump.patch ++++++ >From 89cc8bfeaf47a24c57616021915b30bbc4d12d53 Mon Sep 17 00:00:00 2001 From: Nick Andrade <[email protected]> Date: Sat, 16 May 2015 08:03:29 +0100 Subject: Fix building against newer FreeRDP versions https://bugzilla.gnome.org/show_bug.cgi?id=749124 diff --git a/plugins/rdp/vinagre-rdp-tab.c b/plugins/rdp/vinagre-rdp-tab.c index c4c11f8..690a580 100644 --- a/plugins/rdp/vinagre-rdp-tab.c +++ b/plugins/rdp/vinagre-rdp-tab.c @@ -887,7 +887,6 @@ open_freerdp (VinagreRdpTab *rdp_tab) settings->RdpSecurity = TRUE; settings->TlsSecurity = TRUE; settings->NlaSecurity = TRUE; - settings->DisableEncryption = FALSE; settings->EncryptionMethods = ENCRYPTION_METHOD_40BIT | ENCRYPTION_METHOD_128BIT | ENCRYPTION_METHOD_FIPS; settings->EncryptionLevel = ENCRYPTION_LEVEL_CLIENT_COMPATIBLE; #else @@ -898,6 +897,12 @@ open_freerdp (VinagreRdpTab *rdp_tab) settings->encryption_method = ENCRYPTION_METHOD_40BIT | ENCRYPTION_METHOD_128BIT | ENCRYPTION_METHOD_FIPS; settings->encryption_level = ENCRYPTION_LEVEL_CLIENT_COMPATIBLE; #endif +#include <freerdp/version.h> +#if (FREERDP_VERSION_MAJOR == 1 && FREERDP_VERSION_MINOR >= 2 && FREERDP_VERSION_REVISION >= 1) + settings->UseRdpSecurityLayer = FALSE; +#else + settings->DisableEncryption = FALSE; +#endif /* Set display size */ #if HAVE_FREERDP_1_1 -- cgit v0.10.2
