Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package remmina for openSUSE:Factory checked in at 2021-06-04 22:44:22 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/remmina (Old) and /work/SRC/openSUSE:Factory/.remmina.new.1898 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "remmina" Fri Jun 4 22:44:22 2021 rev:67 rq:897442 version:1.4.18 Changes: -------- --- /work/SRC/openSUSE:Factory/remmina/remmina.changes 2021-05-15 01:24:30.986955653 +0200 +++ /work/SRC/openSUSE:Factory/.remmina.new.1898/remmina.changes 2021-06-04 22:44:44.915228718 +0200 @@ -1,0 +2,41 @@ +Fri Jun 4 12:22:46 UTC 2021 - Johannes Weberhofer <jweberho...@weberhofer.at> + +- Update to 1.4.18 + * Try more shells as launcher if default isn't found !2269 + * Minor fixes for v1.4.17 !2270 + * SSH session improvements !2271 + * Fixes - Auto-start file created on tray icon disabled !2272 + * RDP: Remove older usage of ClientHostname + * Fix libfreerdp version check + * Explicitly set user resolution to a multiple of 4 + * Code refactoring - ASAN exceptions !2274 + +- Fixed remmina-plugin-nx dependencies + +------------------------------------------------------------------- +Sat May 22 14:19:20 UTC 2021 - Johannes Weberhofer <jweberho...@weberhofer.at> + +- Update to 1.4.17 + * Fix build with musl libc + * Fix typos + * Improving CI cache + * Fix System Tray Icon Broken/Missing + * VNC quality deafults now to good + * Flatpak refactoring + * Adding Gateway websocket support + * Revert "Linking snap and flatpak to FreeRDP 2.3.1" + * Set FreeRDP config path to Remmina profiles path + +- Fixed build-logic for NX, enable per default +- Enable kwallet and appindicator non SLE distributions + +------------------------------------------------------------------- +Sun May 16 05:05:05 UTC 2021 - o...@aepfle.de + +- Rename internal bcond from nx to remmina_nx +- Use cmake_build +- Use bcond for kwallet, which defaults to enabled +- Use bcond for appindicator, which defaults to disabled + GtkStatusIcon works everywhere, while Appindicator works just in KDE + +------------------------------------------------------------------- @@ -4 +45 @@ -- Update to 1.1.16 +- Update to 1.4.16 Old: ---- Remmina-v1.4.16.tar.bz2 New: ---- Remmina-v1.4.18.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ remmina.spec ++++++ --- /var/tmp/diff_new_pack.1SSW1y/_old 2021-06-04 22:44:45.531229969 +0200 +++ /var/tmp/diff_new_pack.1SSW1y/_new 2021-06-04 22:44:45.535229977 +0200 @@ -16,9 +16,16 @@ # -%bcond_with nx +%bcond_without remmina_nx +%if 0%{?is_opensuse} +%bcond_without remmina_kwallet +%bcond_without remmina_appindicator +%else +%bcond_with remmina_kwallet +%bcond_with remmina_appindicator +%endif Name: remmina -Version: 1.4.16 +Version: 1.4.18 Release: 0 Summary: Versatile Remote Desktop Client License: GPL-2.0-or-later @@ -62,13 +69,13 @@ Recommends: %{name}-plugin-vnc Provides: %{name}-plugins-common = %{version} Obsoletes: %{name}-plugins-common < 1.0.0 -%if 0%{?sle_version} > 150200 || 0%{?is_opensuse} +%if %{with remmina_kwallet} BuildRequires: cmake(KF5Wallet) %endif %if 0%{?suse_version} > 1500 BuildRequires: pkgconfig(wayland-client) %endif -%if 0%{?sle_version} > 150200 || 0%{?is_opensuse} +%if %{with remmina_appindicator} BuildRequires: pkgconfig(appindicator3-0.1) %endif @@ -122,18 +129,17 @@ %description plugin-xdmcp This package provides the XDMCP protocol plugin for Remmina. -%if %{with nx} +%if %{with remmina_nx} %package plugin-nx Summary: NX Protocol Plugin for Remmina Group: Productivity/Networking/Other -Requires: NX Requires: remmina = %{version} %description plugin-nx This package provides the NX protocol plugin for Remmina. %endif -%if 0%{?sle_version} > 150200 || 0%{?is_opensuse} +%if %{with remmina_kwallet} %package plugin-kwallet Summary: Remmina plugin to support the KDE Wallet Group: Productivity/Networking/Other @@ -210,18 +216,34 @@ export CFLAGS="$CFLAGS -fPIC" %endif -%if 0%{?sle_version} > 150200 || 0%{?is_opensuse} -%cmake -DWITH_NEWS=OFF -DWITH_KIOSK_SESSION=ON -DWITH_KF5WALLET=ON -DWITH_GVNC=ON +%cmake \ + -DWITH_NEWS=OFF \ + -DWITH_KIOSK_SESSION=ON \ + -DWITH_GVNC=ON \ +%if %{with remmina_kwallet} + -DWITH_KF5WALLET=ON \ +%else + -DWITH_KF5WALLET=OFF \ +%endif +%if %{with remmina_appindicator} + -DWITH_APPINDICATOR=ON \ %else -%cmake -DWITH_NEWS=OFF -DWITH_KIOSK_SESSION=ON -DWITH_APPINDICATOR=OFF -DWITH_GVNC=ON + -DWITH_APPINDICATOR=OFF \ %endif +%if %{with remmina_nx} + -DWITH_NX=ON \ +%else + -DWITH_NX=OFF \ +%endif + + %{nil} -%make_build +%cmake_build %install %cmake_install -%if %{without nx} +%if %{without remmina_nx} rm -f %{buildroot}%{_libdir}/remmina/plugins/remmina-plugin-nx.so \ %{buildroot}%{_datadir}/icons/hicolor/*/emblems/remmina-nx.png %endif @@ -262,7 +284,7 @@ %postun plugin-xdmcp %icon_theme_cache_postun -%if %{with nx} +%if %{with remmina_nx} %post plugin-nx %icon_theme_cache_post @@ -335,7 +357,7 @@ %{_datadir}/xsessions/remmina-gnome.desktop %{_datadir}/applications/%{name}-gnome.desktop -%if !%{with nx} +%if %{without remmina_nx} %exclude %{_datadir}/icons/hicolor/scalable/emblems/remmina-nx-symbolic.svg %endif @@ -359,13 +381,13 @@ %{_datadir}/icons/hicolor/scalable/emblems/remmina-xdmcp-ssh-symbolic.svg %{_datadir}/icons/hicolor/scalable/emblems/remmina-xdmcp-symbolic.svg -%if %{with nx} +%if %{with remmina_nx} %files plugin-nx %{_libdir}/remmina/plugins/remmina-plugin-nx.so %{_datadir}/icons/hicolor/scalable/emblems/remmina-nx-symbolic.svg %endif -%if 0%{?sle_version} > 150200 || 0%{?is_opensuse} +%if %{with remmina_kwallet} %files plugin-kwallet %{_libdir}/remmina/plugins/remmina-plugin-kwallet.so %endif ++++++ Remmina-v1.4.16.tar.bz2 -> Remmina-v1.4.18.tar.bz2 ++++++ ++++ 146800 lines of diff (skipped)