Hello community,
here is the log from the commit of package vncmanager-controller for
openSUSE:Factory checked in at 2020-09-23 18:47:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/vncmanager-controller (Old)
and /work/SRC/openSUSE:Factory/.vncmanager-controller.new.4249 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "vncmanager-controller"
Wed Sep 23 18:47:26 2020 rev:7 rq:836291 version:1.0.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/vncmanager-controller/vncmanager-controller.changes
2019-11-09 23:33:10.128630559 +0100
+++
/work/SRC/openSUSE:Factory/.vncmanager-controller.new.4249/vncmanager-controller.changes
2020-09-23 18:48:26.557765238 +0200
@@ -1,0 +2,6 @@
+Wed Sep 23 11:07:57 UTC 2020 - Stefan Dirsch <[email protected]>
+
+- n_UsrEtc.patch
+ * move autostart file to /usr/etc/xdg/autostart (boo#1173048)
+
+-------------------------------------------------------------------
New:
----
n_UsrEtc.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ vncmanager-controller.spec ++++++
--- /var/tmp/diff_new_pack.gdrvFI/_old 2020-09-23 18:48:27.985766552 +0200
+++ /var/tmp/diff_new_pack.gdrvFI/_new 2020-09-23 18:48:27.989766555 +0200
@@ -1,7 +1,7 @@
#
# spec file for package vncmanager-controller
#
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -29,13 +29,14 @@
BuildRequires: pkgconfig(x11)
BuildRequires: pkgconfig(xproto)
-Url: https://github.com/michalsrb/vncmanager-controller
+URL: https://github.com/michalsrb/vncmanager-controller
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Summary: Configuration application for VNC session
License: MIT
Group: System/X11/Utilities
Source: vncmanager-controller-%{version}.tar.gz
Patch1:
U_vncmanager-controller-Declare-gnome-shell-versions-3.10-to-3.26-as-supported.patch
+Patch2: n_UsrEtc.patch
Requires: vncmanager
%description
@@ -54,6 +55,9 @@
%prep
%setup
%patch1 -p1
+%if 0%{?suse_version} >= 1550
+%patch2 -p1
+%endif
%build
%cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_VERBOSE_MAKEFILE=ON
@@ -65,8 +69,14 @@
%files
%defattr(-,root,root)
%{_bindir}/vncmanager-controller
+%if 0%{?suse_version} >= 1550
+%dir %{_distconfdir}/xdg
+%dir %{_distconfdir}/xdg/autostart
+%{_distconfdir}/xdg/autostart/vncmanager-controller.desktop
+%else
%dir %{_sysconfdir}/xdg/autostart
%{_sysconfdir}/xdg/autostart/vncmanager-controller.desktop
+%endif
%doc LICENSE
%files gnome
++++++ n_UsrEtc.patch ++++++
--- vncmanager-controller-1.0.1/CMakeLists.txt.orig 2020-09-23
13:05:16.131990000 +0200
+++ vncmanager-controller-1.0.1/CMakeLists.txt 2020-09-23 13:05:47.219317000
+0200
@@ -25,5 +25,5 @@ add_executable(vncmanager-controller ${v
target_link_libraries(vncmanager-controller Qt5::Widgets Qt5::Network
Qt5::X11Extras X11 Xvnc)
install(TARGETS vncmanager-controller RUNTIME DESTINATION bin)
-install(FILES vncmanager-controller.desktop DESTINATION
/${CMAKE_INSTALL_SYSCONFDIR}/xdg/autostart)
+install(FILES vncmanager-controller.desktop DESTINATION /usr/etc/xdg/autostart)
install(FILES gnome-shell-extension/extension.js
gnome-shell-extension/metadata.json DESTINATION
${CMAKE_INSTALL_DATAROOTDIR}/gnome-shell/extensions/[email protected])