Hello community,
here is the log from the commit of package icewm-theme-branding for
openSUSE:Factory checked in at 2016-08-26 23:18:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/icewm-theme-branding (Old)
and /work/SRC/openSUSE:Factory/.icewm-theme-branding.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "icewm-theme-branding"
Changes:
--------
---
/work/SRC/openSUSE:Factory/icewm-theme-branding/icewm-theme-branding.changes
2016-06-03 16:39:19.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.icewm-theme-branding.new/icewm-theme-branding.changes
2016-08-26 23:18:08.000000000 +0200
@@ -1,0 +2,7 @@
+Fri Aug 26 02:36:39 UTC 2016 - [email protected]
+
+- Version update to 1.2.2
+ Add new startup script for icewm-session (bsc#977233)
+ Fix quotation in commands in preferences (bsc#977233)
+
+-------------------------------------------------------------------
Old:
----
icewm-config-openSUSE-1.2.1.tar.gz
New:
----
icewm-config-openSUSE-1.2.2.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ icewm-theme-branding.spec ++++++
--- /var/tmp/diff_new_pack.OClaFp/_old 2016-08-26 23:18:09.000000000 +0200
+++ /var/tmp/diff_new_pack.OClaFp/_new 2016-08-26 23:18:09.000000000 +0200
@@ -18,7 +18,7 @@
%define _name icewm-config-openSUSE
Name: icewm-theme-branding
-Version: 1.2.1
+Version: 1.2.2
Release: 0
Summary: Icewm theme branding for SLES or openSUSE
License: LGPL-2.1+ and GPL-3.0+
@@ -54,6 +54,7 @@
%config %{_sysconfdir}/icewm/keys
%config %{_sysconfdir}/icewm/menu
%config %{_sysconfdir}/icewm/preferences
+%config %{_sysconfdir}/icewm/startup
%config %{_sysconfdir}/icewm/theme
%config %{_sysconfdir}/icewm/toolbar
%config %{_sysconfdir}/icewm/winoptions
++++++ icewm-config-openSUSE-1.2.1.tar.gz -> icewm-config-openSUSE-1.2.2.tar.gz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/icewm-config-openSUSE-icewm-config-openSUSE-1.2.1/Makefile
new/icewm-config-openSUSE-icewm-config-openSUSE-1.2.2/Makefile
--- old/icewm-config-openSUSE-icewm-config-openSUSE-1.2.1/Makefile
2016-06-02 15:56:27.000000000 +0200
+++ new/icewm-config-openSUSE-icewm-config-openSUSE-1.2.2/Makefile
2016-08-26 04:02:31.000000000 +0200
@@ -5,6 +5,7 @@
install -m 0644 keys $(DESTDIR)/etc/icewm/
install -m 0644 menu $(DESTDIR)/etc/icewm/
install -m 0644 preferences $(DESTDIR)/etc/icewm/
+ install -m 0755 startup $(DESTDIR)/etc/icewm/
install -m 0644 theme $(DESTDIR)/etc/icewm/
install -m 0644 toolbar $(DESTDIR)/etc/icewm/
install -m 0644 winoptions $(DESTDIR)/etc/icewm/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/icewm-config-openSUSE-icewm-config-openSUSE-1.2.1/preferences
new/icewm-config-openSUSE-icewm-config-openSUSE-1.2.2/preferences
--- old/icewm-config-openSUSE-icewm-config-openSUSE-1.2.1/preferences
2016-06-02 15:56:27.000000000 +0200
+++ new/icewm-config-openSUSE-icewm-config-openSUSE-1.2.2/preferences
2016-08-26 04:02:31.000000000 +0200
@@ -578,10 +578,10 @@
# LogoutCancelCommand=""
# Command to shutdown the system
-ShutdownCommand="/bin/sh -c "systemctl poweroff ||:""
+ShutdownCommand="/bin/sh -c 'systemctl poweroff ||:'"
# Command to reboot the system
-RebootCommand="/bin/sh -c "systemctl reboot ||:""
+RebootCommand="/bin/sh -c 'systemctl reboot ||:'"
# Command to run on CPU status
# CPUStatusCommand="xterm -name top -title Process\ Status -e top"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/icewm-config-openSUSE-icewm-config-openSUSE-1.2.1/startup
new/icewm-config-openSUSE-icewm-config-openSUSE-1.2.2/startup
--- old/icewm-config-openSUSE-icewm-config-openSUSE-1.2.1/startup
1970-01-01 01:00:00.000000000 +0100
+++ new/icewm-config-openSUSE-icewm-config-openSUSE-1.2.2/startup
2016-08-26 04:02:31.000000000 +0200
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+# Start the first polkit agent that exists
+for i in /usr/lib/polkit-gnome-authentication-agent-1 \
+ /usr/lib64/libexec/polkit-kde-authentication-agent-1 \
+ /usr/lib/polkit-mate/polkit-mate-authentication-agent-1 \
+ /usr/lib64/kde4/libexec/polkit-kde-authentication-agent-1; do
+ if [ -x $i ]; then
+ $i &
+ break # One is enough
+ fi
+done;