[arch-commits] Commit in pcmanfm/repos (10 files)

2016-02-20 Thread Balló György
Date: Sunday, February 21, 2016 @ 01:25:53
  Author: bgyorgy
Revision: 162903

archrelease: copy trunk to community-testing-i686, community-testing-x86_64

Added:
  pcmanfm/repos/community-testing-i686/PKGBUILD
(from rev 162902, pcmanfm/trunk/PKGBUILD)
  pcmanfm/repos/community-testing-i686/pcmanfm.install
(from rev 162902, pcmanfm/trunk/pcmanfm.install)
  pcmanfm/repos/community-testing-x86_64/PKGBUILD
(from rev 162902, pcmanfm/trunk/PKGBUILD)
  pcmanfm/repos/community-testing-x86_64/pcmanfm.install
(from rev 162902, pcmanfm/trunk/pcmanfm.install)
Deleted:
  pcmanfm/repos/community-testing-i686/PKGBUILD
  pcmanfm/repos/community-testing-i686/git-fixes.patch
  pcmanfm/repos/community-testing-i686/pcmanfm.install
  pcmanfm/repos/community-testing-x86_64/PKGBUILD
  pcmanfm/repos/community-testing-x86_64/git-fixes.patch
  pcmanfm/repos/community-testing-x86_64/pcmanfm.install

--+
 /PKGBUILD|   68 ++
 /pcmanfm.install |   22 
 community-testing-i686/PKGBUILD  |   43 -
 community-testing-i686/git-fixes.patch   |  826 -
 community-testing-i686/pcmanfm.install   |   11 
 community-testing-x86_64/PKGBUILD|   43 -
 community-testing-x86_64/git-fixes.patch |  826 -
 community-testing-x86_64/pcmanfm.install |   11 
 8 files changed, 90 insertions(+), 1760 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 162902:162903 to see the changes.


[arch-commits] Commit in pcmanfm/repos (10 files)

2014-10-06 Thread Bartłomiej Piotrowski
Date: Monday, October 6, 2014 @ 14:09:17
  Author: bpiotrowski
Revision: 120233

archrelease: copy trunk to community-i686, community-x86_64

Added:
  
pcmanfm/repos/community-i686/0001-Fix-Open-With-default-application-with-glib-2.41.patch
(from rev 120232, 
pcmanfm/trunk/0001-Fix-Open-With-default-application-with-glib-2.41.patch)
  pcmanfm/repos/community-i686/PKGBUILD
(from rev 120232, pcmanfm/trunk/PKGBUILD)
  pcmanfm/repos/community-i686/pcmanfm.install
(from rev 120232, pcmanfm/trunk/pcmanfm.install)
  
pcmanfm/repos/community-x86_64/0001-Fix-Open-With-default-application-with-glib-2.41.patch
(from rev 120232, 
pcmanfm/trunk/0001-Fix-Open-With-default-application-with-glib-2.41.patch)
  pcmanfm/repos/community-x86_64/PKGBUILD
(from rev 120232, pcmanfm/trunk/PKGBUILD)
  pcmanfm/repos/community-x86_64/pcmanfm.install
(from rev 120232, pcmanfm/trunk/pcmanfm.install)
Deleted:
  pcmanfm/repos/community-i686/PKGBUILD
  pcmanfm/repos/community-i686/pcmanfm.install
  pcmanfm/repos/community-x86_64/PKGBUILD
  pcmanfm/repos/community-x86_64/pcmanfm.install

--+
 /PKGBUILD| 
  80 ++
 /pcmanfm.install | 
  22 ++
 community-i686/0001-Fix-Open-With-default-application-with-glib-2.41.patch   | 
  56 +++
 community-i686/PKGBUILD  | 
  32 
 community-i686/pcmanfm.install   | 
  11 -
 community-x86_64/0001-Fix-Open-With-default-application-with-glib-2.41.patch | 
  56 +++
 community-x86_64/PKGBUILD| 
  32 
 community-x86_64/pcmanfm.install | 
  11 -
 8 files changed, 214 insertions(+), 86 deletions(-)

Copied: 
pcmanfm/repos/community-i686/0001-Fix-Open-With-default-application-with-glib-2.41.patch
 (from rev 120232, 
pcmanfm/trunk/0001-Fix-Open-With-default-application-with-glib-2.41.patch)
===
--- community-i686/0001-Fix-Open-With-default-application-with-glib-2.41.patch  
(rev 0)
+++ community-i686/0001-Fix-Open-With-default-application-with-glib-2.41.patch  
2014-10-06 12:09:17 UTC (rev 120233)
@@ -0,0 +1,56 @@
+From dffe9a095a788c879f5c8b4561516a5478361166 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Bart=C5=82omiej=20Piotrowski?= b...@bpiotrowski.pl
+Date: Mon, 6 Oct 2014 14:02:01 +0200
+Subject: [PATCH] Fix Open With default application with glib = 2.41
+
+---
+ src/volume-manager.c | 26 +-
+ 1 file changed, 25 insertions(+), 1 deletion(-)
+
+diff --git a/src/volume-manager.c b/src/volume-manager.c
+index 8df1b36..6dd4263 100644
+--- a/src/volume-manager.c
 b/src/volume-manager.c
+@@ -138,6 +138,30 @@ static void on_dlg_response(GtkDialog* dlg, int res, 
gpointer user_data)
+ pcmanfm_unref();
+ }
+ 
++static GList * pcmanfm_g_app_info_get_all_for_type(const char *content_type)
++{
++GList*infos, *info;
++GAppInfo *default_info;
++
++infos = g_app_info_get_all_for_type(content_type);
++default_info = g_app_info_get_default_for_type(content_type, FALSE);
++
++if (default_info == NULL)
++return infos;
++
++for (info = infos; info; info = info-next) {
++if (g_app_info_equal (info-data, default_info)) {
++g_object_unref(info-data);
++infos = g_list_delete_link(infos, info);
++break;
++}
++}
++
++infos = g_list_prepend(infos, default_info);
++
++return infos;
++}
++
+ static void on_content_type_finished(GObject* src_obj, GAsyncResult* res, 
gpointer user_data)
+ {
+ AutoRun* data = (AutoRun*)user_data;
+@@ -185,7 +209,7 @@ static void on_content_type_finished(GObject* src_obj, 
GAsyncResult* res, gpoint
+ _do_types:
+ for(type=types;*type;++type)
+ {
+-l = g_app_info_get_all_for_type(*type);
++l = pcmanfm_g_app_info_get_all_for_type(*type);
+ if(l)
+ apps = g_list_concat(apps, l);
+ }
+-- 
+2.1.2
+

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-10-06 12:09:03 UTC (rev 120232)
+++ community-i686/PKGBUILD 2014-10-06 12:09:17 UTC (rev 120233)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Unknown47 unknown...@gmail.com
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: Juergen Hoetzel juer...@archlinux.org
-
-pkgname=pcmanfm
-pkgver=1.2.2
-pkgrel=1
-pkgdesc='Extremely fast and lightweight file manager'
-arch=('i686' 'x86_64')
-url='http://pcmanfm.sourceforge.net/'
-license=('GPL')

[arch-commits] Commit in pcmanfm/repos (10 files)

2014-10-06 Thread Evangelos Foutras
Date: Monday, October 6, 2014 @ 16:07:42
  Author: foutrelis
Revision: 120268

archrelease: copy trunk to community-i686, community-x86_64

Added:
  pcmanfm/repos/community-i686/PKGBUILD
(from rev 120267, pcmanfm/trunk/PKGBUILD)
  pcmanfm/repos/community-i686/pcmanfm.install
(from rev 120267, pcmanfm/trunk/pcmanfm.install)
  pcmanfm/repos/community-x86_64/PKGBUILD
(from rev 120267, pcmanfm/trunk/PKGBUILD)
  pcmanfm/repos/community-x86_64/pcmanfm.install
(from rev 120267, pcmanfm/trunk/pcmanfm.install)
Deleted:
  
pcmanfm/repos/community-i686/0001-Fix-Open-With-default-application-with-glib-2.41.patch
  pcmanfm/repos/community-i686/PKGBUILD
  pcmanfm/repos/community-i686/pcmanfm.install
  
pcmanfm/repos/community-x86_64/0001-Fix-Open-With-default-application-with-glib-2.41.patch
  pcmanfm/repos/community-x86_64/PKGBUILD
  pcmanfm/repos/community-x86_64/pcmanfm.install

--+
 /PKGBUILD| 
  66 ++
 /pcmanfm.install | 
  22 +++
 community-i686/0001-Fix-Open-With-default-application-with-glib-2.41.patch   | 
  56 
 community-i686/PKGBUILD  | 
  40 --
 community-i686/pcmanfm.install   | 
  11 -
 community-x86_64/0001-Fix-Open-With-default-application-with-glib-2.41.patch | 
  56 
 community-x86_64/PKGBUILD| 
  40 --
 community-x86_64/pcmanfm.install | 
  11 -
 8 files changed, 88 insertions(+), 214 deletions(-)

Deleted: 
community-i686/0001-Fix-Open-With-default-application-with-glib-2.41.patch
===
--- community-i686/0001-Fix-Open-With-default-application-with-glib-2.41.patch  
2014-10-06 14:07:23 UTC (rev 120267)
+++ community-i686/0001-Fix-Open-With-default-application-with-glib-2.41.patch  
2014-10-06 14:07:42 UTC (rev 120268)
@@ -1,56 +0,0 @@
-From dffe9a095a788c879f5c8b4561516a5478361166 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Bart=C5=82omiej=20Piotrowski?= b...@bpiotrowski.pl
-Date: Mon, 6 Oct 2014 14:02:01 +0200
-Subject: [PATCH] Fix Open With default application with glib = 2.41
-

- src/volume-manager.c | 26 +-
- 1 file changed, 25 insertions(+), 1 deletion(-)
-
-diff --git a/src/volume-manager.c b/src/volume-manager.c
-index 8df1b36..6dd4263 100644
 a/src/volume-manager.c
-+++ b/src/volume-manager.c
-@@ -138,6 +138,30 @@ static void on_dlg_response(GtkDialog* dlg, int res, 
gpointer user_data)
- pcmanfm_unref();
- }
- 
-+static GList * pcmanfm_g_app_info_get_all_for_type(const char *content_type)
-+{
-+GList*infos, *info;
-+GAppInfo *default_info;
-+
-+infos = g_app_info_get_all_for_type(content_type);
-+default_info = g_app_info_get_default_for_type(content_type, FALSE);
-+
-+if (default_info == NULL)
-+return infos;
-+
-+for (info = infos; info; info = info-next) {
-+if (g_app_info_equal (info-data, default_info)) {
-+g_object_unref(info-data);
-+infos = g_list_delete_link(infos, info);
-+break;
-+}
-+}
-+
-+infos = g_list_prepend(infos, default_info);
-+
-+return infos;
-+}
-+
- static void on_content_type_finished(GObject* src_obj, GAsyncResult* res, 
gpointer user_data)
- {
- AutoRun* data = (AutoRun*)user_data;
-@@ -185,7 +209,7 @@ static void on_content_type_finished(GObject* src_obj, 
GAsyncResult* res, gpoint
- _do_types:
- for(type=types;*type;++type)
- {
--l = g_app_info_get_all_for_type(*type);
-+l = pcmanfm_g_app_info_get_all_for_type(*type);
- if(l)
- apps = g_list_concat(apps, l);
- }
--- 
-2.1.2
-

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-10-06 14:07:23 UTC (rev 120267)
+++ community-i686/PKGBUILD 2014-10-06 14:07:42 UTC (rev 120268)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Unknown47 unknown...@gmail.com
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: Juergen Hoetzel juer...@archlinux.org
-
-pkgname=pcmanfm
-pkgver=1.2.2
-pkgrel=2
-pkgdesc='Extremely fast and lightweight file manager'
-arch=('i686' 'x86_64')
-url='http://pcmanfm.sourceforge.net/'
-license=('GPL')
-groups=('lxde')
-depends=('gtk2' 'desktop-file-utils' 'libfm' 'lxmenu-data')
-makedepends=('intltool')
-optdepends=('gvfs: for trash support, mounting with udisks and remote 
filesystems'
-'udisks: alternative for mounting volumes')
-install=$pkgname.install