Hello community,

here is the log from the commit of package exaile for openSUSE:Factory checked 
in at 2015-03-23 12:19:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/exaile (Old)
 and      /work/SRC/openSUSE:Factory/.exaile.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "exaile"

Changes:
--------
--- /work/SRC/openSUSE:Factory/exaile/exaile.changes    2015-03-18 
13:05:17.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.exaile.new/exaile.changes       2015-03-23 
12:19:08.000000000 +0100
@@ -1,0 +2,8 @@
+Sat Mar 21 17:23:21 UTC 2015 - sor.ale...@meowr.ru
+
+- Add exaile-no-splash-default.patch to make Exaile not show splash
+  screen on startup by default, Exaile starts fast enough.
+- Add exaile-mate-screensaver.patch which makes screensaverpause
+  plugin to work with MATE ScreenSaver.
+
+-------------------------------------------------------------------

New:
----
  exaile-mate-screensaver.patch
  exaile-no-splash-default.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ exaile.spec ++++++
--- /var/tmp/diff_new_pack.i36PHE/_old  2015-03-23 12:19:08.000000000 +0100
+++ /var/tmp/diff_new_pack.i36PHE/_new  2015-03-23 12:19:08.000000000 +0100
@@ -25,6 +25,10 @@
 Group:          Productivity/Multimedia/Sound/Players
 Url:            http://exaile.org/
 Source:         
https://github.com/%{name}/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
+# PATCH-FEATURE-UPSTREAM exaile-no-splash-default.patch sor.ale...@meowr.ru -- 
Do not show splash screen on startup by default.
+Patch0:         %{name}-no-splash-default.patch
+# PATCH-FEATURE-UPSTREAM exaile-mate-screensaver.patch sor.ale...@meowr.ru -- 
Make screensaverpause plugin work with MATE ScreenSaver.
+Patch1:         %{name}-mate-screensaver.patch
 BuildRequires:  dos2unix
 BuildRequires:  fdupes
 BuildRequires:  help2man
@@ -33,14 +37,14 @@
 BuildRequires:  update-desktop-files
 Requires:       dbus-1-python
 Requires:       gdk-pixbuf-loader-rsvg
-Requires:       gstreamer010-plugins-good
+Requires:       gstreamer-0_10-plugins-good
 Requires:       python-gobject >= 2.18
 Requires:       python-gstreamer010
 Requires:       python-gtk >= 2.17
 Requires:       python-mutagen >= 1.10
 Recommends:     %{name}-lang = %{version}
-Recommends:     gstreamer010-plugins-bad
-Recommends:     gstreamer010-plugins-ugly
+Recommends:     gstreamer-0_10-plugins-bad
+Recommends:     gstreamer-0_10-plugins-ugly
 Recommends:     moodbar
 Recommends:     python-CDDB
 Recommends:     python-Pillow
@@ -69,6 +73,8 @@
 
 %prep
 %setup -q
+%patch0 -p1
+%patch1 -p1
 # Fix locale search location.
 sed -i "s|\(locale_path = \).*$|\1'%{_datadir}/locale'|" xl/nls.py
 
@@ -116,9 +122,9 @@
 %{_datadir}/%{name}/
 %{_datadir}/applications/%{name}.desktop
 %{_datadir}/pixmaps/%{name}.png
-%{_mandir}/man1/%{name}.1.gz
-%dir %{_datadir}/dbus-1
-%dir %{_datadir}/dbus-1/services
+%{_mandir}/man?/%{name}.?%{?ext_man}
+%dir %{_datadir}/dbus-1/
+%dir %{_datadir}/dbus-1/services/
 %{_datadir}/dbus-1/services/org.%{name}.%{_name}.service
 %dir %{_sysconfdir}/xdg/%{name}/
 %config %{_sysconfdir}/xdg/%{name}/settings.ini

++++++ exaile-mate-screensaver.patch ++++++
diff -aur a/plugins/screensaverpause/__init__.py 
b/plugins/screensaverpause/__init__.py
--- a/plugins/screensaverpause/__init__.py
+++ b/plugins/screensaverpause/__init__.py
@@ -29,7 +29,12 @@
 from xl import event, player, settings
 
 SERVICES = [
-    dict( # GNOME
+    dict( # MATE
+        bus_name='org.mate.ScreenSaver',
+        path='/org/mate/ScreenSaver',
+        dbus_interface='org.mate.ScreenSaver',
+    ),
+    dict( # light-locker, GNOME
         bus_name='org.gnome.ScreenSaver',
         path='/org/gnome/ScreenSaver',
         dbus_interface='org.gnome.ScreenSaver',
++++++ exaile-no-splash-default.patch ++++++
diff -aur a/xl/main.py b/xl/main.py
--- a/xl/main.py
+++ b/xl/main.py
@@ -217,7 +217,7 @@
         if self.options.StartGui:
             from xl import settings
 
-            if settings.get_option('gui/use_splash', True):
+            if settings.get_option('gui/use_splash', False):
                 from xlgui.widgets.info import Splash
 
                 splash = Splash()
diff -aur a/xlgui/preferences/appearance.py b/xlgui/preferences/appearance.py
--- a/xlgui/preferences/appearance.py
+++ b/xlgui/preferences/appearance.py
@@ -44,7 +44,7 @@
     name = 'gui/show_info_area_covers'
 
 class SplashPreference(widgets.CheckPreference):
-    default = True
+    default = False
     name = 'gui/use_splash'
 
 class ShowTabBarPreference(widgets.CheckPreference):
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to