commit spacefm for openSUSE:Factory

2020-09-15 Thread root
Hello community,

here is the log from the commit of package spacefm for openSUSE:Factory checked 
in at 2020-09-15 16:27:08

Comparing /work/SRC/openSUSE:Factory/spacefm (Old)
 and  /work/SRC/openSUSE:Factory/.spacefm.new.4249 (New)


Package is "spacefm"

Tue Sep 15 16:27:08 2020 rev:11 rq:834097 version:1.0.6

Changes:

--- /work/SRC/openSUSE:Factory/spacefm/spacefm.changes  2019-03-10 
09:37:44.700142193 +0100
+++ /work/SRC/openSUSE:Factory/.spacefm.new.4249/spacefm.changes
2020-09-15 16:27:28.462549926 +0200
@@ -1,0 +2,7 @@
+Sat Sep 12 18:06:30 UTC 2020 - Christophe Giboudeaux 
+
+- Add patch to fix build with GCC10:
+  * 0001-Fix-build-with-GCC10.patch
+- Drop obsolete version checks from spec file.
+
+---

New:

  0001-Fix-build-with-GCC10.patch



Other differences:
--
++ spacefm.spec ++
--- /var/tmp/diff_new_pack.M9utOl/_old  2020-09-15 16:27:29.146550581 +0200
+++ /var/tmp/diff_new_pack.M9utOl/_new  2020-09-15 16:27:29.150550585 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package spacefm
 #
-# 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
@@ -16,7 +16,6 @@
 #
 
 
-%bcond_with restricted
 Name:   spacefm
 Version:1.0.6
 Release:0
@@ -27,6 +26,8 @@
 Source: 
https://github.com/IgnorantGuru/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
 # PATCH-FIX-OPENSUSE spacefm-fix-implicit-decl.patch -- Fix implicit 
declaration of "major" and "minor" macros.
 Patch0: spacefm-fix-implicit-decl.patch
+# PATCH-FIX-UPSTREAM
+Patch1: 0001-Fix-build-with-GCC10.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  fdupes
@@ -38,9 +39,11 @@
 BuildRequires:  pkgconfig(gobject-2.0)
 BuildRequires:  pkgconfig(gthread-2.0)
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.0.0
+# Not available in SLE
+%if 0%{?is_opensuse}
+BuildRequires:  pkgconfig(libffmpegthumbnailer)
+%endif
 BuildRequires:  pkgconfig(libudev) >= 143
-Requires:   desktop-file-utils
-Requires:   shared-mime-info
 Recommends: %{name}-lang
 # Mount without root requirement.
 Recommends: udisks2
@@ -48,9 +51,6 @@
 Recommends: wget
 # Execution of SpaceFM and applications from root.
 Recommends: xdg-utils
-%if %{?suse_version} >= 1500 || %{with restricted}
-BuildRequires:  pkgconfig(libffmpegthumbnailer)
-%endif
 
 %description
 SpaceFM is a multi-panel tabbed file and desktop manager for GNU/Linux
@@ -61,18 +61,19 @@
 %lang_package
 
 %prep
-%setup -q
-%patch0 -p1
+%autosetup -p1
+
 echo 'tmp_dir=%{_tmppath}' > %{name}.conf
 
 %build
 NOCONFIGURE=1 ./autogen.sh
 %configure \
   --with-preferable-sudo=%{_bindir}/xdg-su \
-%if %{?suse_version} < 1500 && %{without restricted}
+%if 0%{?is_opensuse} < 1
   --disable-video-thumbnails   \
 %endif
   --htmldir=%{_docdir}/%{name}
+
 make %{?_smp_mflags} V=1
 
 %install
@@ -82,26 +83,8 @@
 %fdupes %{buildroot}%{_datadir}/
 %find_lang %{name}
 
-%if 0%{?suse_version} < 1500
-%post
-%desktop_database_post
-%icon_theme_cache_post
-%icon_theme_cache_post Faenza
-%mime_database_post
-
-%postun
-%desktop_database_postun
-%icon_theme_cache_postun
-%icon_theme_cache_postun Faenza
-%mime_database_postun
-%endif
-
 %files
-%if 0%{?suse_version} >= 1500
 %license COPYING COPYING-LGPL
-%else
-%doc COPYING COPYING-LGPL
-%endif
 %doc AUTHORS ChangeLog README
 %{_docdir}/%{name}/
 %dir %{_sysconfdir}/%{name}/

++ 0001-Fix-build-with-GCC10.patch ++
>From 065bc0e4c7de46f7f5771ae8a535bd058dd6d1dc Mon Sep 17 00:00:00 2001
From: Christophe Giboudeaux 
Date: Sat, 12 Sep 2020 20:03:52 +0200
Subject: [PATCH] Fix build with GCC10

Patch from Vladimir Lomov, extracted
from https://github.com/IgnorantGuru/spacefm/pull/772
---
 src/settings.c | 19 +++
 src/settings.h | 34 +-
 2 files changed, 36 insertions(+), 17 deletions(-)

diff --git a/src/settings.c b/src/settings.c
index b8687a2..28f9ce0 100644
--- a/src/settings.c
+++ b/src/settings.c
@@ -52,6 +52,25 @@
 /* Dirty hack: check whether we are under LXDE or not */
 #define is_under_LXDE() (g_getenv( "_LXSESSION_PID" ) != NULL)
 
+/* GCC 10.1+ */
+char* settings_terminal_su = NULL;
+char* settings_graphical_su = NULL;
+GList* xset_cmd_history = NULL;
+XSet* evt_win_focus = NULL;
+XSet* evt_win_move = NULL;
+XSet* evt_win_click = NULL;
+XSet* evt_win_key = NULL;
+XSet* evt_win_close = NULL;
+XSet* evt_pnl_show = NULL;
+XSet* evt_pnl_focus = NULL;
+XSet* evt_pnl_sel = NULL;
+XSet* evt_tab_new = NULL;
+XSet* 

commit spacefm for openSUSE:Factory

2019-03-10 Thread root
Hello community,

here is the log from the commit of package spacefm for openSUSE:Factory checked 
in at 2019-03-10 09:37:40

Comparing /work/SRC/openSUSE:Factory/spacefm (Old)
 and  /work/SRC/openSUSE:Factory/.spacefm.new.28833 (New)


Package is "spacefm"

Sun Mar 10 09:37:40 2019 rev:10 rq:682608 version:1.0.6

Changes:

--- /work/SRC/openSUSE:Factory/spacefm/spacefm.changes  2018-04-20 
17:26:15.573524423 +0200
+++ /work/SRC/openSUSE:Factory/.spacefm.new.28833/spacefm.changes   
2019-03-10 09:37:44.700142193 +0100
@@ -1,0 +2,6 @@
+Tue Mar  5 15:19:33 UTC 2019 - sor.ale...@meowr.ru
+
+- Add spacefm-fix-implicit-decl.patch: Fix implicit declaration of
+  "major" and "minor" macros.
+
+---

New:

  spacefm-fix-implicit-decl.patch



Other differences:
--
++ spacefm.spec ++
--- /var/tmp/diff_new_pack.SEdqpg/_old  2019-03-10 09:37:45.420142021 +0100
+++ /var/tmp/diff_new_pack.SEdqpg/_new  2019-03-10 09:37:45.420142021 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package spacefm
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -25,6 +25,8 @@
 Group:  Productivity/File utilities
 URL:http://ignorantguru.github.io/spacefm
 Source: 
https://github.com/IgnorantGuru/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
+# PATCH-FIX-OPENSUSE spacefm-fix-implicit-decl.patch -- Fix implicit 
declaration of "major" and "minor" macros.
+Patch0: spacefm-fix-implicit-decl.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  fdupes
@@ -60,6 +62,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 echo 'tmp_dir=%{_tmppath}' > %{name}.conf
 
 %build

++ spacefm-fix-implicit-decl.patch ++
--- a/src/main.c
+++ b/src/main.c
@@ -20,7 +20,7 @@
 #include 
 
 /* socket is used to keep single instance */
-#include 
+#include 
 #include 
 #include 
 



commit spacefm for openSUSE:Factory

2018-04-20 Thread root
Hello community,

here is the log from the commit of package spacefm for openSUSE:Factory checked 
in at 2018-04-20 17:26:00

Comparing /work/SRC/openSUSE:Factory/spacefm (Old)
 and  /work/SRC/openSUSE:Factory/.spacefm.new (New)


Package is "spacefm"

Fri Apr 20 17:26:00 2018 rev:9 rq:594515 version:1.0.6

Changes:

--- /work/SRC/openSUSE:Factory/spacefm/spacefm.changes  2017-03-16 
09:50:50.939621218 +0100
+++ /work/SRC/openSUSE:Factory/.spacefm.new/spacefm.changes 2018-04-20 
17:26:15.573524423 +0200
@@ -1,0 +2,38 @@
+Sat Apr  7 17:38:04 UTC 2018 - sor.ale...@meowr.ru
+
+- Update to version 1.0.6:
+  * Rename dlg canonicalise Copy Target/Link Target target when
+possible.
+  * [GTK+2] Fix black background directory load regression.
+  * [GTK+3.20] Fix theme parse warnings re close btn css.
+  * [GTK+2] Iconview no longer responds to theme change.
+  * Fix a compilation failure due to glibc include changes.
+  * User manual minor updates.
+  * Default Devices|Root|Check fsck command add -r for repair.
+  * File|Open URL add example mtp://.
+  * Add sftp to ssh protocol handler default whitelist (allows
+sftp://).
+  * settings.c: (style) Clarify expression with parentheses.
+  * Fix a segfault in ptk/ptk-dir-tree.c.
+  * Fix newly imported file handlers appear in Plugins menu.
+  * Dbl-click to enter a directory selects a file.
+  * Fix a segfault when dragging a directory or a file to the
+desktop.
+  * [desktop] Fix GTK+3 icon movement, reliably get mouse state.
+  * Load icon using icon name in theme if removed suffix fails.
+  * [desktop] Paint root window when there is no wallpaper.
+  * Fix source file permissions.
+  * [GTK+3.22] Fix segfault dragging files to directory tree.
+  * Fix drag & drop segfaults.
+  * Fix segfault on drag to reorder bookmarks.
+  * Fix davfs is not mounted.
+  * Fix fuse default protocol handler not added due to false
+positive test.
+  * Fix bookmark pane and toolbar two-finger right-click.
+  * Fix file list new bookmark with topmost bookmark selected.
+  * Fix mktemp in mtp handler being not busybox compatible.
+  * Update translations.
+- Build with ffmpegthumbnailer on openSUSE Leap 15.0 and later.
+- Remove the gtk2 bcond.
+
+---

Old:

  spacefm-1.0.5.tar.gz

New:

  spacefm-1.0.6.tar.gz



Other differences:
--
++ spacefm.spec ++
--- /var/tmp/diff_new_pack.Tqghve/_old  2018-04-20 17:26:16.209501361 +0200
+++ /var/tmp/diff_new_pack.Tqghve/_new  2018-04-20 17:26:16.213501217 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package spacefm
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,15 +16,14 @@
 #
 
 
-%bcond_with gtk2
 %bcond_with restricted
 Name:   spacefm
-Version:1.0.5
+Version:1.0.6
 Release:0
 Summary:Multi-panel tabbed file and desktop manager
-License:GPL-3.0+ and LGPL-3.0+
+License:GPL-3.0-or-later AND LGPL-3.0-or-later
 Group:  Productivity/File utilities
-Url:http://ignorantguru.github.io/spacefm
+URL:http://ignorantguru.github.io/spacefm
 Source: 
https://github.com/IgnorantGuru/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
 BuildRequires:  autoconf
 BuildRequires:  automake
@@ -36,6 +35,7 @@
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(gobject-2.0)
 BuildRequires:  pkgconfig(gthread-2.0)
+BuildRequires:  pkgconfig(gtk+-3.0) >= 3.0.0
 BuildRequires:  pkgconfig(libudev) >= 143
 Requires:   desktop-file-utils
 Requires:   shared-mime-info
@@ -46,12 +46,7 @@
 Recommends: wget
 # Execution of SpaceFM and applications from root.
 Recommends: xdg-utils
-%if %{with gtk2}
-BuildRequires:  pkgconfig(gtk+-2.0) >= 2.18.0
-%else
-BuildRequires:  pkgconfig(gtk+-3.0) >= 3.0.0
-%endif
-%if %{with restricted}
+%if %{?suse_version} >= 1500 || %{with restricted}
 BuildRequires:  pkgconfig(libffmpegthumbnailer)
 %endif
 
@@ -71,7 +66,7 @@
 NOCONFIGURE=1 ./autogen.sh
 %configure \
   --with-preferable-sudo=%{_bindir}/xdg-su \
-%if %{without restricted}
+%if %{?suse_version} < 1500 && %{without restricted}
   --disable-video-thumbnails   \
 %endif
   --htmldir=%{_docdir}/%{name}
@@ -84,6 +79,7 @@
 %fdupes %{buildroot}%{_datadir}/
 %find_lang %{name}
 
+%if 0%{?suse_version} < 1500
 %post
 %desktop_database_post
 %icon_theme_cache_post
@@ -95,10 +91,15 @@
 %icon_theme_cache_postun
 %icon_theme_cache_postun Faenza
 %mime_database_postun
+%endif
 
 %files

commit spacefm for openSUSE:Factory

2017-03-16 Thread root
Hello community,

here is the log from the commit of package spacefm for openSUSE:Factory checked 
in at 2017-03-16 09:41:41

Comparing /work/SRC/openSUSE:Factory/spacefm (Old)
 and  /work/SRC/openSUSE:Factory/.spacefm.new (New)


Package is "spacefm"

Thu Mar 16 09:41:41 2017 rev:8 rq:478901 version:1.0.5

Changes:

--- /work/SRC/openSUSE:Factory/spacefm/spacefm.changes  2016-01-26 
10:14:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.spacefm.new/spacefm.changes 2017-03-16 
09:50:50.939621218 +0100
@@ -1,0 +2,5 @@
+Sun Mar 12 20:12:58 UTC 2017 - sor.ale...@meowr.ru
+
+- Explicitly package %{_docdir}/%{name}/.
+
+---



Other differences:
--
++ spacefm.spec ++
--- /var/tmp/diff_new_pack.lFVLyK/_old  2017-03-16 09:50:51.535536826 +0100
+++ /var/tmp/diff_new_pack.lFVLyK/_new  2017-03-16 09:50:51.535536826 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package spacefm
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -32,6 +32,7 @@
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  intltool
 BuildRequires:  libtool
+BuildRequires:  pkgconfig
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(gobject-2.0)
 BuildRequires:  pkgconfig(gthread-2.0)
@@ -56,7 +57,7 @@
 
 %description
 SpaceFM is a multi-panel tabbed file and desktop manager for GNU/Linux
-with built-in VFS, udev-based device manager, customizable menu system
+with built-in VFS, udev-based device manager, customisable menu system
 and bash integration. SpaceFM is popular among novice and power users
 alike for its stability, speed, convenience and flexibility.
 
@@ -67,19 +68,20 @@
 echo 'tmp_dir=%{_tmppath}' > %{name}.conf
 
 %build
-autoreconf -fi
+NOCONFIGURE=1 ./autogen.sh
 %configure \
   --with-preferable-sudo=%{_bindir}/xdg-su \
 %if %{without restricted}
   --disable-video-thumbnails   \
 %endif
   --htmldir=%{_docdir}/%{name}
-make %{?_smp_mflags}
+make %{?_smp_mflags} V=1
 
 %install
 %make_install
+
 %suse_update_desktop_file -G 'Search for Files' %{name}-find GTK System 
Utility FileManager
-%fdupes %{buildroot}
+%fdupes %{buildroot}%{_datadir}/
 %find_lang %{name}
 
 %post
@@ -97,6 +99,7 @@
 %files
 %defattr(-,root,root)
 %doc AUTHORS COPYING COPYING-LGPL ChangeLog README
+%{_docdir}/%{name}/
 %dir %{_sysconfdir}/%{name}/
 %config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf
 %{_bindir}/%{name}*




commit spacefm for openSUSE:Factory

2016-01-26 Thread h_root
Hello community,

here is the log from the commit of package spacefm for openSUSE:Factory checked 
in at 2016-01-26 10:14:54

Comparing /work/SRC/openSUSE:Factory/spacefm (Old)
 and  /work/SRC/openSUSE:Factory/.spacefm.new (New)


Package is "spacefm"

Changes:

--- /work/SRC/openSUSE:Factory/spacefm/spacefm.changes  2015-10-22 
12:59:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.spacefm.new/spacefm.changes 2016-01-26 
10:14:56.0 +0100
@@ -1,0 +2,27 @@
+Thu Jan 21 16:35:27 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to 1.0.5:
+  * Recreate too small cached thumbnails.
+  * Read $XDG_TEMPLATES_DIR via glib for user-dirs.dirs support.
+  * Devices|Settings|Auto-Mount|Mount Dirs accept XDG vars, mkdir.
+  * Fix Paste in directory tree pastes to a wrong directory.
+  * Menu key in directory tree changes directory and acts on the
+correct directory.
+  * [desktop] Show video thumbnails on desktop.
+  * Preferences add 384x384 icon size option.
+  * Obey StartupNotify when opening with an desktop application.
+  * configure.ac set G_LOG_DOMAIN.
+  * Fix main.c debug_gdk_threads_leave.
+  * Change detection, blacklist detect new files.
+  * Get mime type of only reg and link files, not char dev.
+  * Fix segfault in ptk_bookmark_view_reload_list to vfs_load_icon.
+  * Prevent filesystem find loop hang in new file/directory dialog.
+  * Fix crash on GTK+ icon theme reload; fix liststore memory leaks.
+  * udevil iso unmount device handler new whitelist/blacklist.
+  * Fix broken key shortcuts in Open|In Panel menu.
+  * Add lxqt-sudo and lxsu to list of su frontends.
+  * Add support for qterminal in list of terminals.
+  * Make Paste As Target paste canonicalised final target when
+possible.
+
+---

Old:

  spacefm-1.0.4.tar.gz

New:

  spacefm-1.0.5.tar.gz



Other differences:
--
++ spacefm.spec ++
--- /var/tmp/diff_new_pack.4iuRpa/_old  2016-01-26 10:14:57.0 +0100
+++ /var/tmp/diff_new_pack.4iuRpa/_new  2016-01-26 10:14:57.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package spacefm
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %bcond_with gtk2
 %bcond_with restricted
 Name:   spacefm
-Version:1.0.4
+Version:1.0.5
 Release:0
 Summary:Multi-panel tabbed file and desktop manager
 License:GPL-3.0+ and LGPL-3.0+

++ spacefm-1.0.4.tar.gz -> spacefm-1.0.5.tar.gz ++
 5960 lines of diff (skipped)




commit spacefm for openSUSE:Factory

2015-10-22 Thread h_root
Hello community,

here is the log from the commit of package spacefm for openSUSE:Factory checked 
in at 2015-10-22 12:59:09

Comparing /work/SRC/openSUSE:Factory/spacefm (Old)
 and  /work/SRC/openSUSE:Factory/.spacefm.new (New)


Package is "spacefm"

Changes:

--- /work/SRC/openSUSE:Factory/spacefm/spacefm.changes  2015-08-29 
20:05:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.spacefm.new/spacefm.changes 2015-10-22 
12:59:16.0 +0200
@@ -1,0 +2,25 @@
+Mon Oct 19 17:54:06 UTC 2015 - sor.ale...@meowr.ru
+
+- Update to 1.0.4:
+  * ifdef malloc_trim for non-glibc libraries.
+  * Fix HAL build.
+  * Fix older Gtk2 build.
+  * Menu and Shift+F10 show side pane menus.
+  * Design Menu shown with Menu key in addition to F2.
+  * Directory tree allow keyboard navigation, keep focus.
+  * Directory tree double-click expands/collapses row.
+  * Directory tree context menu|New|Tab Here opens a selected
+directory.
+  * Correct location for Gtk3 bookmarks import; use basename.
+  * Don't continuously refresh copying video thumbnails.
+  * New in /etc/spacefm/spacefm.conf: terminal_su and graphical_su.
+  * Build system now installs /etc/spacefm/spacefm.conf.
+  * New configure option --sysconfdir=/etc to set location of /etc.
+  * Add new event for tab change dir evt_tab_chdir; update manual.
+  * Replace show-menu socket method with activate for all item types.
+  * [Dialog] Add non-visible element --click to run cmd on click.
+  * [Dialog] Fix some internal var names always set to %v.
+  * Increase Max icon/thumbnail size from 256x256 to 512x512.
+  * [Gtk3] Fix wrong colours with dark variants of Gtk themes.
+
+---

Old:

  spacefm-1.0.3.tar.gz

New:

  spacefm-1.0.4.tar.gz



Other differences:
--
++ spacefm.spec ++
--- /var/tmp/diff_new_pack.awzMqW/_old  2015-10-22 12:59:17.0 +0200
+++ /var/tmp/diff_new_pack.awzMqW/_new  2015-10-22 12:59:17.0 +0200
@@ -17,8 +17,9 @@
 
 
 %bcond_with gtk2
+%bcond_with restricted
 Name:   spacefm
-Version:1.0.3
+Version:1.0.4
 Release:0
 Summary:Multi-panel tabbed file and desktop manager
 License:GPL-3.0+ and LGPL-3.0+
@@ -49,7 +50,7 @@
 %else
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.0.0
 %endif
-%if 0%{?packman_bs}
+%if %{with restricted}
 BuildRequires:  pkgconfig(libffmpegthumbnailer)
 %endif
 
@@ -69,7 +70,7 @@
 autoreconf -fi
 %configure \
   --with-preferable-sudo=%{_bindir}/xdg-su \
-%if !0%{?packman_bs}
+%if %{without restricted}
   --disable-video-thumbnails   \
 %endif
   --htmldir=%{_docdir}/%{name}
@@ -77,20 +78,21 @@
 
 %install
 %make_install
-install -Dm 0644 %{name}.conf %{buildroot}%{_sysconfdir}/%{name}/%{name}.conf
 %suse_update_desktop_file -G 'Search for Files' %{name}-find GTK System 
Utility FileManager
 %fdupes %{buildroot}
 %find_lang %{name}
 
 %post
 %desktop_database_post
-%mime_database_post
 %icon_theme_cache_post
+%icon_theme_cache_post Faenza
+%mime_database_post
 
 %postun
 %desktop_database_postun
-%mime_database_postun
 %icon_theme_cache_postun
+%icon_theme_cache_postun Faenza
+%mime_database_postun
 
 %files
 %defattr(-,root,root)
@@ -101,7 +103,10 @@
 %{_datadir}/%{name}/
 %{_datadir}/applications/%{name}*.desktop
 %{_datadir}/icons/hicolor/*/apps/%{name}*.png
-%{_datadir}/icons/Faenza/
+%dir %{_datadir}/icons/Faenza/
+%dir %{_datadir}/icons/Faenza/apps/
+%dir %{_datadir}/icons/Faenza/apps/*/
+%{_datadir}/icons/Faenza/apps/*/%{name}*.png
 %{_datadir}/mime/packages/%{name}-mime.xml
 
 %files lang -f %{name}.lang

++ spacefm-1.0.3.tar.gz -> spacefm-1.0.4.tar.gz ++
 75089 lines of diff (skipped)




commit spacefm for openSUSE:Factory

2015-08-29 Thread h_root
Hello community,

here is the log from the commit of package spacefm for openSUSE:Factory checked 
in at 2015-08-29 20:05:09

Comparing /work/SRC/openSUSE:Factory/spacefm (Old)
 and  /work/SRC/openSUSE:Factory/.spacefm.new (New)


Package is spacefm

Changes:

--- /work/SRC/openSUSE:Factory/spacefm/spacefm.changes  2015-08-11 
08:27:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.spacefm.new/spacefm.changes 2015-08-29 
20:05:12.0 +0200
@@ -1,0 +2,20 @@
+Fri Aug 28 11:04:15 UTC 2015 - sor.ale...@meowr.ru
+
+- Update to 1.0.3:
+  * Add Devices|Settings|Auto-Mount|Mount Dirs option.
+  * Proto hand keep %a for lxterminal, urxvtc, konsole,
+gnome-terminal.
+  * Convert non-latin keycodes to latin.
+  * Add ltg locale, update it, lt, and pt_BR.
+  * configure.ac define G_DISABLE_ASSERT to disable g_assert.
+  * Rename gphoto handler as ptp; whitelist ptp.
+  * [Gtk3] add icon chooser dialog.
+  * Double-click in icon chooser clicks OK.
+  * [Gtk 3.14] Prevent empty rubberband selection Gtk3.14 bug avoid.
+  * Provide export and import of handler plugin files; update manual.
+  * Create %O archive in user-selected destination.
+  * Fix LilyTerm not working correctly eg unzipping file.
+  * Update spacefm.desktop for protocol handling.
+- Remove -mmmx CFLAGS hack and do not ExcludeArch PowerPC anymore.
+
+---

Old:

  spacefm-1.0.2.tar.gz

New:

  spacefm-1.0.3.tar.gz



Other differences:
--
++ spacefm.spec ++
--- /var/tmp/diff_new_pack.XVSagI/_old  2015-08-29 20:05:13.0 +0200
+++ /var/tmp/diff_new_pack.XVSagI/_new  2015-08-29 20:05:13.0 +0200
@@ -18,15 +18,13 @@
 
 %bcond_with gtk2
 Name:   spacefm
-Version:1.0.2
+Version:1.0.3
 Release:0
 Summary:Multi-panel tabbed file and desktop manager
 License:GPL-3.0+ and LGPL-3.0+
 Group:  Productivity/File utilities
 Url:http://ignorantguru.github.io/spacefm
 Source: 
https://github.com/IgnorantGuru/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
-# exclude PowerPC build as mmx specific and mmintrin.h usage
-ExcludeArch:ppc ppc64 ppc64le
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  fdupes
@@ -39,7 +37,7 @@
 BuildRequires:  pkgconfig(libudev) = 143
 Requires:   desktop-file-utils
 Requires:   shared-mime-info
-Recommends: %{name}-lang = %{version}
+Recommends: %{name}-lang
 # Mount without root requirement.
 Recommends: udisks2
 # Plugin download.
@@ -68,7 +66,6 @@
 echo 'tmp_dir=%{_tmppath}'  %{name}.conf
 
 %build
-CFLAGS=%{optflags} -mmmx
 autoreconf -fi
 %configure \
   --with-preferable-sudo=%{_bindir}/xdg-su \

++ spacefm-1.0.2.tar.gz - spacefm-1.0.3.tar.gz ++
 63111 lines of diff (skipped)




commit spacefm for openSUSE:Factory

2015-08-11 Thread h_root
Hello community,

here is the log from the commit of package spacefm for openSUSE:Factory checked 
in at 2015-08-11 08:27:06

Comparing /work/SRC/openSUSE:Factory/spacefm (Old)
 and  /work/SRC/openSUSE:Factory/.spacefm.new (New)


Package is spacefm

Changes:

--- /work/SRC/openSUSE:Factory/spacefm/spacefm.changes  2015-06-05 
08:46:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.spacefm.new/spacefm.changes 2015-08-11 
08:27:07.0 +0200
@@ -1,0 +2,6 @@
+Mon Aug 10 13:45:06 UTC 2015 - norm...@linux.vnet.ibm.com
+
+-  explicit ExcludeArch for ppc ppc64 ppc64le
+   (do not build mmx)
+
+---



Other differences:
--
++ spacefm.spec ++
--- /var/tmp/diff_new_pack.RZrtWT/_old  2015-08-11 08:27:08.0 +0200
+++ /var/tmp/diff_new_pack.RZrtWT/_new  2015-08-11 08:27:08.0 +0200
@@ -25,6 +25,8 @@
 Group:  Productivity/File utilities
 Url:http://ignorantguru.github.io/spacefm
 Source: 
https://github.com/IgnorantGuru/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
+# exclude PowerPC build as mmx specific and mmintrin.h usage
+ExcludeArch:ppc ppc64 ppc64le
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  fdupes




commit spacefm for openSUSE:Factory

2015-06-05 Thread h_root
Hello community,

here is the log from the commit of package spacefm for openSUSE:Factory checked 
in at 2015-06-05 08:46:02

Comparing /work/SRC/openSUSE:Factory/spacefm (Old)
 and  /work/SRC/openSUSE:Factory/.spacefm.new (New)


Package is spacefm

Changes:

--- /work/SRC/openSUSE:Factory/spacefm/spacefm.changes  2015-05-06 
07:49:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.spacefm.new/spacefm.changes 2015-06-05 
08:46:03.0 +0200
@@ -1,0 +2,38 @@
+Thu Jun  4 08:51:23 UTC 2015 - sor.ale...@meowr.ru
+
+- Update to 1.0.2:
+  * Toolbar redesign with design mode right-click ability.
+  * Add built-in toolbar items: Show Hidden, Show Thumbnails,
+Large Icons.
+  * Fix Compact view sometimes fails to scroll to selected file.
+  * malloc_trim calls to flush out the free heap back to the OS
+when needed.
+  * Fix forgets compress handler after extract to.
+  * No re-import bookmarks when up-down-upgrade from  1.0.1.
+  * Missing pixbuf unref in main_task_view_update_task.
+  * Add keyboard shortcut for handler list in handler dialogs.
+  * Fix ftp handler ignores custom port in URL.
+  * Add Run As Task option to file handlers.
+  * Allow escape of underscore in item names.
+  * Fix Item Prop context opposite of Disable is Show instead of
+Enable.
+  * Get mime type icon from .local XML file before guess.
+  * Fix right-click on Bookmarks activates bookmark after menu.
+  * Fix right-click detailed view clears multiple-file selection.
+  * Add panel View context menu to main View menu.
+  * Add View|Style|Thumbnails (global).
+  * Add show_thumbnails socket property.
+  * Fix missing paths on command line hangs.
+  * Fix hang on access error on startup.
+  * Fix icon/compact view left-click doesn't unselect other files.
+  * Write/read new mimeapps.list Default Applications.
+  * Archive handlers take precedence over file handlers.
+  * Scale menu item icons loaded from file.
+  * Force rebuild of folder_view for font change in exo_icon_view.
+  * Always reap async child with or without exec_keep_tmp.
+  * Default scroll desktop fix openbox.
+  * Always update status bar Reading msg.
+  * Item prop dlg text view scroll add shadow.
+  * Fix linefeeds in .desktop item names.
+
+---

Old:

  spacefm-1.0.1.tar.gz

New:

  spacefm-1.0.2.tar.gz



Other differences:
--
++ spacefm.spec ++
--- /var/tmp/diff_new_pack.PQxVSD/_old  2015-06-05 08:46:04.0 +0200
+++ /var/tmp/diff_new_pack.PQxVSD/_new  2015-06-05 08:46:04.0 +0200
@@ -18,7 +18,7 @@
 
 %bcond_with gtk2
 Name:   spacefm
-Version:1.0.1
+Version:1.0.2
 Release:0
 Summary:Multi-panel tabbed file and desktop manager
 License:GPL-3.0+ and LGPL-3.0+
@@ -66,6 +66,7 @@
 echo 'tmp_dir=%{_tmppath}'  %{name}.conf
 
 %build
+CFLAGS=%{optflags} -mmmx
 autoreconf -fi
 %configure \
   --with-preferable-sudo=%{_bindir}/xdg-su \

++ spacefm-1.0.1.tar.gz - spacefm-1.0.2.tar.gz ++
 321939 lines of diff (skipped)




commit spacefm for openSUSE:Factory

2015-05-05 Thread h_root
Hello community,

here is the log from the commit of package spacefm for openSUSE:Factory checked 
in at 2015-05-06 07:49:27

Comparing /work/SRC/openSUSE:Factory/spacefm (Old)
 and  /work/SRC/openSUSE:Factory/.spacefm.new (New)


Package is spacefm

Changes:

--- /work/SRC/openSUSE:Factory/spacefm/spacefm.changes  2015-04-21 
10:51:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.spacefm.new/spacefm.changes 2015-05-06 
07:49:45.0 +0200
@@ -2 +2,21 @@
-Wed Apr 15 12:32:16 UTC 2014 - sor.ale...@meowr.ru
+Tue May  5 10:24:32 UTC 2015 - sor.ale...@meowr.ru
+
+- Update to 1.0.1:
+  * Extended bookmarks system.
+  * Added users manual Bookmarks section.
+  * Fix --enable-hal build errors.
+  * Fix segfault in vfs_thumbnail_loader_free on abort thumbnail
+loading.
+  * _vfs_thumbnail_load unref after
+gdk_pixbuf_apply_embedded_orientation.
+  * MIME Menu prompt before creating files.
+  * Open menu archive functions move to top if default.
+  * Rewrite ptk_file_browser_refresh; reselect cursor after
+refresh.
+  * Status bar shows Reading msg while dir loading.
+  * New protocol handler http/webdav to top of list.
+  * Bookmarks|New Bookmark default key shortcut Ctrl+D.
+- Switch to Gtk3.
+
+---
+Wed Apr 15 12:32:16 UTC 2015 - sor.ale...@meowr.ru

Old:

  spacefm-1.0.0.tar.gz

New:

  spacefm-1.0.1.tar.gz



Other differences:
--
++ spacefm.spec ++
--- /var/tmp/diff_new_pack.lb8sr4/_old  2015-05-06 07:49:46.0 +0200
+++ /var/tmp/diff_new_pack.lb8sr4/_new  2015-05-06 07:49:46.0 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%bcond_without gtk2
+%bcond_with gtk2
 Name:   spacefm
-Version:1.0.0
+Version:1.0.1
 Release:0
 Summary:Multi-panel tabbed file and desktop manager
 License:GPL-3.0+ and LGPL-3.0+

++ spacefm-1.0.0.tar.gz - spacefm-1.0.1.tar.gz ++
 342718 lines of diff (skipped)