[arch-commits] Commit in cinnamon-desktop/trunk (PKGBUILD)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 13:33:33
  Author: bgyorgy
Revision: 136030

upgpkg: cinnamon-desktop 2.6.5-1

Update to version 2.6.5

Modified:
  cinnamon-desktop/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 11:24:53 UTC (rev 136029)
+++ PKGBUILD2015-06-28 11:33:33 UTC (rev 136030)
@@ -3,8 +3,8 @@
 # Contributor:  Jan de Groot j...@archlinux.org
 
 pkgname=cinnamon-desktop
-pkgver=2.6.4
-pkgrel=2
+pkgver=2.6.5
+pkgrel=1
 pkgdesc=Library with common API for various Cinnamon modules
 arch=(i686 x86_64)
 license=(GPL LGPL)
@@ -14,7 +14,7 @@
 install=cinnamon-desktop.install
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-desktop/archive/${pkgver}.tar.gz;
 gnome-3.14.patch)
-sha256sums=('d40fc57202408476ff0bfa191958f16de07cf4c00d911bef57c3107c8e483970'
+sha256sums=('a004790f46d1960592f9462cbf6d394d9a5c66b31bb13cc295ed8acb1135924a'
 'c4df93c49fd3f9f8bc359cbad5d5526eef80ee5c34680f8ba62c67c3dbb7eca5')
 
 prepare() {
@@ -38,4 +38,4 @@
 package() {
   cd $pkgname-$pkgver
   make DESTDIR=$pkgdir install
-}
\ No newline at end of file
+}


[arch-commits] Commit in mate-panel-gtk3/trunk (PKGBUILD fix-force-quit.patch)

2015-06-29 Thread Balló György
Date: Monday, June 29, 2015 @ 19:06:13
  Author: bgyorgy
Revision: 136122

upgpkg: mate-panel-gtk3 1.10.0-4

Fix Force-Quit panel applet to avoid hang with GTK3

Added:
  mate-panel-gtk3/trunk/fix-force-quit.patch
Modified:
  mate-panel-gtk3/trunk/PKGBUILD

--+
 PKGBUILD |   16 +--
 fix-force-quit.patch |  108 +
 2 files changed, 121 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-29 13:48:26 UTC (rev 136121)
+++ PKGBUILD2015-06-29 17:06:13 UTC (rev 136122)
@@ -4,7 +4,7 @@
 _pkgbase=mate-panel
 pkgname=${_pkgbase}-gtk3
 pkgver=${_ver}.0
-pkgrel=3
+pkgrel=4
 pkgdesc=The MATE Panel (GTK3 version [EXPERIMENTAL])
 url=http://mate-desktop.org;
 arch=('i686' 'x86_64')
@@ -14,12 +14,22 @@
  'mate-menus=1.10' 'mate-desktop-gtk3=1.10')
 makedepends=('gobject-introspection' 'mate-common' 'yelp-tools')
 optdepends=('yelp: for reading MATE help documents')
-source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
+source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;
+fix-force-quit.patch)
 groups=('mate-gtk3')
 conflicts=(${_pkgbase})
-sha1sums=('632d7127fba8c5fa76f5dd951db89325c6ca3f89')
+sha1sums=('632d7127fba8c5fa76f5dd951db89325c6ca3f89'
+  '4c89df9a32decc1be4181154a1fa8ba6282abd86')
 install=${_pkgbase}.install
 
+prepare() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+
+# Fix Force-Quit panel applet to avoid hang with GTK3
+# https://github.com/mate-desktop/mate-panel/pull/318
+patch -Np1 -i ../fix-force-quit.patch
+}
+
 build() {
 cd ${srcdir}/${_pkgbase}-${pkgver}
 ./configure \

Added: fix-force-quit.patch
===
--- fix-force-quit.patch(rev 0)
+++ fix-force-quit.patch2015-06-29 17:06:13 UTC (rev 136122)
@@ -0,0 +1,108 @@
+From 2b8df1cf67516a9df1fb8931e88a06b452e890b5 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= ballog...@gmail.com
+Date: Mon, 29 Jun 2015 11:50:20 +0200
+Subject: [PATCH] Fix Force-Quit panel applet
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+This patch implements handling of XInput2 extension events in the applet.
+Without this patch, the applet fails to recognize such events (either mouse
+click for killing application, or escape key for exiting), hence freezing the
+desktop.
+
+Also fix the event mask in call of gdk_device_grab() for keyboard.
+
+Author: Sébastien Villemot sebast...@debian.org
+http://bugs.debian.org/698740
+---
+ mate-panel/panel-force-quit.c | 34 +++---
+ 1 file changed, 27 insertions(+), 7 deletions(-)
+
+diff --git a/mate-panel/panel-force-quit.c b/mate-panel/panel-force-quit.c
+index 8231b8f..f0374e2 100644
+--- a/mate-panel/panel-force-quit.c
 b/mate-panel/panel-force-quit.c
+@@ -32,6 +32,8 @@
+ #include X11/Xlib.h
+ #include X11/keysym.h
+ 
++#include X11/extensions/XInput2.h
++
+ #include panel-icon-names.h
+ #include panel-stock-icons.h
+ 
+@@ -261,22 +263,23 @@ kill_window_question (gpointer window)
+ 
+ static void 
+ handle_button_press_event (GtkWidget *popup,
+- XKeyEvent *event)
++ Display *display,
++ Window subwindow)
+ {
+   Window window;
+ 
+   remove_popup (popup);
+ 
+-  if (event-subwindow == None)
++  if (subwindow == None)
+   return;
+ 
+   if (wm_state_atom == None)
+-  wm_state_atom = XInternAtom (event-display, WM_STATE, FALSE);
++  wm_state_atom = XInternAtom (display, WM_STATE, FALSE);
+ 
+-  window = find_managed_window (event-display, event-subwindow);
++  window = find_managed_window (display, subwindow);
+ 
+   if (window != None) {
+-  if (!gdk_x11_window_lookup_for_display (gdk_x11_lookup_xdisplay 
(event-display), window))
++  if (!gdk_x11_window_lookup_for_display (gdk_x11_lookup_xdisplay 
(display), window))
+   kill_window_question ((gpointer) window);
+   }
+ }
+@@ -287,10 +290,12 @@ popup_filter (GdkXEvent *gdk_xevent,
+ GtkWidget *popup)
+ {
+   XEvent *xevent = (XEvent *) gdk_xevent;
++  XIEvent *xiev;
++  XIDeviceEvent *xidev;
+ 
+   switch (xevent-type) {
+   case ButtonPress:
+-  handle_button_press_event (popup, xevent-xkey);
++  handle_button_press_event (popup, xevent-xbutton.display, 
xevent-xbutton.subwindow);
+   return GDK_FILTER_REMOVE;
+   case KeyPress:
+   if (xevent-xkey.keycode == XKeysymToKeycode 
(xevent-xany.display, XK_Escape)) {
+@@ -298,6 +303,21 @@ popup_filter (GdkXEvent *gdk_xevent,
+   return GDK_FILTER_REMOVE;
+   }
+

[arch-commits] Commit in mate-panel-gtk3/repos (10 files)

2015-06-29 Thread Balló György
Date: Monday, June 29, 2015 @ 19:06:22
  Author: bgyorgy
Revision: 136123

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

Added:
  mate-panel-gtk3/repos/community-i686/PKGBUILD
(from rev 136122, mate-panel-gtk3/trunk/PKGBUILD)
  mate-panel-gtk3/repos/community-i686/fix-force-quit.patch
(from rev 136122, mate-panel-gtk3/trunk/fix-force-quit.patch)
  mate-panel-gtk3/repos/community-i686/mate-panel.install
(from rev 136122, mate-panel-gtk3/trunk/mate-panel.install)
  mate-panel-gtk3/repos/community-x86_64/PKGBUILD
(from rev 136122, mate-panel-gtk3/trunk/PKGBUILD)
  mate-panel-gtk3/repos/community-x86_64/fix-force-quit.patch
(from rev 136122, mate-panel-gtk3/trunk/fix-force-quit.patch)
  mate-panel-gtk3/repos/community-x86_64/mate-panel.install
(from rev 136122, mate-panel-gtk3/trunk/mate-panel.install)
Deleted:
  mate-panel-gtk3/repos/community-i686/PKGBUILD
  mate-panel-gtk3/repos/community-i686/mate-panel.install
  mate-panel-gtk3/repos/community-x86_64/PKGBUILD
  mate-panel-gtk3/repos/community-x86_64/mate-panel.install

---+
 /PKGBUILD |   98 +
 /mate-panel.install   |   24 +++
 community-i686/PKGBUILD   |   39 ---
 community-i686/fix-force-quit.patch   |  108 
 community-i686/mate-panel.install |   12 ---
 community-x86_64/PKGBUILD |   39 ---
 community-x86_64/fix-force-quit.patch |  108 
 community-x86_64/mate-panel.install   |   12 ---
 8 files changed, 338 insertions(+), 102 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-29 17:06:13 UTC (rev 136122)
+++ community-i686/PKGBUILD 2015-06-29 17:06:22 UTC (rev 136123)
@@ -1,39 +0,0 @@
-# Maintainer : Martin Wimpress c...@flexion.org
-
-_ver=1.10
-_pkgbase=mate-panel
-pkgname=${_pkgbase}-gtk3
-pkgver=${_ver}.0
-pkgrel=3
-pkgdesc=The MATE Panel (GTK3 version [EXPERIMENTAL])
-url=http://mate-desktop.org;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('dbus-glib' 'dconf' 'gtk3' 'libwnck3' 'libcanberra' 'libice'
- 'libmateweather-gtk3=1.10' 'librsvg' 'libsm' 'libsoup' 'libxau'
- 'mate-menus=1.10' 'mate-desktop-gtk3=1.10')
-makedepends=('gobject-introspection' 'mate-common' 'yelp-tools')
-optdepends=('yelp: for reading MATE help documents')
-source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
-groups=('mate-gtk3')
-conflicts=(${_pkgbase})
-sha1sums=('632d7127fba8c5fa76f5dd951db89325c6ca3f89')
-install=${_pkgbase}.install
-
-build() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${_pkgbase} \
---sysconfdir=/etc \
---localstatedir=/var \
---with-gtk=3.0 \
---enable-introspection \
---disable-static
-make
-}
-
-package() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: mate-panel-gtk3/repos/community-i686/PKGBUILD (from rev 136122, 
mate-panel-gtk3/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-29 17:06:22 UTC (rev 136123)
@@ -0,0 +1,49 @@
+# Maintainer : Martin Wimpress c...@flexion.org
+
+_ver=1.10
+_pkgbase=mate-panel
+pkgname=${_pkgbase}-gtk3
+pkgver=${_ver}.0
+pkgrel=4
+pkgdesc=The MATE Panel (GTK3 version [EXPERIMENTAL])
+url=http://mate-desktop.org;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus-glib' 'dconf' 'gtk3' 'libwnck3' 'libcanberra' 'libice'
+ 'libmateweather-gtk3=1.10' 'librsvg' 'libsm' 'libsoup' 'libxau'
+ 'mate-menus=1.10' 'mate-desktop-gtk3=1.10')
+makedepends=('gobject-introspection' 'mate-common' 'yelp-tools')
+optdepends=('yelp: for reading MATE help documents')
+source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;
+fix-force-quit.patch)
+groups=('mate-gtk3')
+conflicts=(${_pkgbase})
+sha1sums=('632d7127fba8c5fa76f5dd951db89325c6ca3f89'
+  '4c89df9a32decc1be4181154a1fa8ba6282abd86')
+install=${_pkgbase}.install
+
+prepare() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+
+# Fix Force-Quit panel applet to avoid hang with GTK3
+# https://github.com/mate-desktop/mate-panel/pull/318
+patch -Np1 -i ../fix-force-quit.patch
+}
+
+build() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--with-gtk=3.0 \
+--enable-introspection \
+--disable-static
+make
+}
+
+package() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+make DESTDIR=${pkgdir} install
+}

Copied: 

[arch-commits] Commit in nemo-extensions/trunk (PKGBUILD)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 15:22:41
  Author: bgyorgy
Revision: 136042

upgpkg: nemo-extensions 2.6.0-2

Fix FS#45198 and FS#45248

Modified:
  nemo-extensions/trunk/PKGBUILD

--+
 PKGBUILD |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 13:11:55 UTC (rev 136041)
+++ PKGBUILD2015-06-28 13:22:41 UTC (rev 136042)
@@ -13,7 +13,7 @@
#'nemo-rabbitvcs'
 pkgver=2.6.0
 _pkgver=2.6.x
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('GPL2')
 url=https://github.com/linuxmint/nemo-extensions;
@@ -37,6 +37,10 @@
 
   # GPG version in testing
   patch -Np1 -i ../gpgversion.patch
+
+  # Fix path for nemo-python
+  sed -i 's|libdirsuffix=/i386-linux-gnu/|libdirsuffix=|' 
nemo-python/m4/python.m4
+
 }
 
 build() {
@@ -112,6 +116,7 @@
   make DESTDIR=${pkgdir} install
 
   # seahorse-tool is already in seahorse-nautilus package
+  make -C data DESTDIR=${pkgdir} uninstall
   make -C tool DESTDIR=${pkgdir} uninstall
 }
 


[arch-commits] Commit in nemo-extensions/repos (12 files)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 15:22:50
  Author: bgyorgy
Revision: 136043

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

Added:
  nemo-extensions/repos/community-i686/PKGBUILD
(from rev 136042, nemo-extensions/trunk/PKGBUILD)
  nemo-extensions/repos/community-i686/gpgversion.patch
(from rev 136042, nemo-extensions/trunk/gpgversion.patch)
  nemo-extensions/repos/community-i686/nemo-pastebin.install
(from rev 136042, nemo-extensions/trunk/nemo-pastebin.install)
  nemo-extensions/repos/community-x86_64/PKGBUILD
(from rev 136042, nemo-extensions/trunk/PKGBUILD)
  nemo-extensions/repos/community-x86_64/gpgversion.patch
(from rev 136042, nemo-extensions/trunk/gpgversion.patch)
  nemo-extensions/repos/community-x86_64/nemo-pastebin.install
(from rev 136042, nemo-extensions/trunk/nemo-pastebin.install)
Deleted:
  nemo-extensions/repos/community-i686/PKGBUILD
  nemo-extensions/repos/community-i686/gpgversion.patch
  nemo-extensions/repos/community-i686/nemo-pastebin.install
  nemo-extensions/repos/community-x86_64/PKGBUILD
  nemo-extensions/repos/community-x86_64/gpgversion.patch
  nemo-extensions/repos/community-x86_64/nemo-pastebin.install

+
 /PKGBUILD  |  370 +++
 /gpgversion.patch  |   22 +
 /nemo-pastebin.install |   22 +
 community-i686/PKGBUILD|  180 ---
 community-i686/gpgversion.patch|   11 
 community-i686/nemo-pastebin.install   |   11 
 community-x86_64/PKGBUILD  |  180 ---
 community-x86_64/gpgversion.patch  |   11 
 community-x86_64/nemo-pastebin.install |   11 
 9 files changed, 414 insertions(+), 404 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 13:22:41 UTC (rev 136042)
+++ community-i686/PKGBUILD 2015-06-28 13:22:50 UTC (rev 136043)
@@ -1,180 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
-
-pkgbase=nemo-extensions
-pkgname=('nemo-fileroller'
-'nemo-preview'
-'nemo-python'
-'nemo-share'
-'nemo-seahorse')
-   #'nemo-media-columns'
-   #'nemo-pastebin'
-   #'nemo-compare'
-   #'nemo-rabbitvcs'
-pkgver=2.6.0
-_pkgver=2.6.x
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL2')
-url=https://github.com/linuxmint/nemo-extensions;
-depends=(nemo file-roller cjs clutter-gtk clutter-gst2 gst-plugins-good 
libmusicbrainz5
- evince gtksourceview3 webkitgtk python2-gobject seahorse-nautilus 
samba)
-makedepends=(gconf gnome-common gtk-doc intltool gobject-introspection) # 
python2-distutils-extra
-options=('!emptydirs')
-source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/linuxmint/nemo-extensions/archive/${_pkgver}.tar.gz;
-gpgversion.patch)
-sha256sums=('222a9c96644c3dd22171a97721c11d9bc08e1d27b0c168179947bb94edc824cf'
-'187b9c1d684b81abac7ef3095882cfe859bd50570e554d45fcfdbf6e50455b86')
-
-prepare() {
-  cd ${pkgbase}-${_pkgver}
-
-  # Python2 fix
-  find -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
-
-  # Fix nemo-preview build
-  sed -i '/AM_GNU_GETTEXT/d' nemo-preview/configure.ac
-
-  # GPG version in testing
-  patch -Np1 -i ../gpgversion.patch
-}
-
-build() {
-  cd ${pkgbase}-${_pkgver}
-
-  _configure_pkgs=nemo-fileroller nemo-seahorse nemo-share
-  for dir in ${_configure_pkgs}
-  do
-pushd ${dir}
-autoreconf -fi
-./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/${dir} \
---disable-static --disable-schemas-compile
-make
-popd
-  done
-
-  _autogen_pkgs=nemo-preview nemo-python
-  for dir in ${_autogen_pkgs}
-  do
-pushd ${dir}
-./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/${dir} \
- --disable-static --disable-schemas-compile
-make
-popd
-  done
-
-# # nemo-pastebin
-# cd nemo-pastebin
-# python2 ./setup.py build --build-base ${srcdir}/build/ || return 1
-# cd ..
-
-   # nemo-media-columns
-   # Nothing to do here
-   # Required python2-pypdf from AUR
-
-   # nemo-compare
-   # cd nemo-compare
-
-# nemo-rabbitvcs
-# Nothing to do here
-
-}
-
-package_nemo-fileroller(){
-  pkgdesc=File archiver extension for Nemo
-  depends=(nemo file-roller)
-
-  cd ${pkgbase}-${_pkgver}/nemo-fileroller
-  make DESTDIR=${pkgdir} install
-}
-
-package_nemo-preview(){
-  pkgdesc=(GtkClutter and Javascript-based quick previewer for Nemo)
-  depends=(nemo cjs clutter-gtk clutter-gst2 libmusicbrainz5 evince 
gtksourceview3 webkitgtk)
-
-  cd ${pkgbase}-${_pkgver}/nemo-preview
-  make DESTDIR=${pkgdir} install
-}
-
-package_nemo-python() {
-  pkgdesc=Python2 binding for Nemo components
-  depends=(nemo python2-gobject)
-
-  cd ${pkgbase}-${_pkgver}/nemo-python

[arch-commits] Commit in cinnamon-settings-daemon/repos (8 files)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 13:10:19
  Author: bgyorgy
Revision: 136021

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

Added:
  cinnamon-settings-daemon/repos/community-i686/PKGBUILD
(from rev 136020, cinnamon-settings-daemon/trunk/PKGBUILD)
  cinnamon-settings-daemon/repos/community-i686/cinnamon-settings-daemon.install
(from rev 136020, 
cinnamon-settings-daemon/trunk/cinnamon-settings-daemon.install)
  cinnamon-settings-daemon/repos/community-x86_64/PKGBUILD
(from rev 136020, cinnamon-settings-daemon/trunk/PKGBUILD)
  
cinnamon-settings-daemon/repos/community-x86_64/cinnamon-settings-daemon.install
(from rev 136020, 
cinnamon-settings-daemon/trunk/cinnamon-settings-daemon.install)
Deleted:
  cinnamon-settings-daemon/repos/community-i686/PKGBUILD
  cinnamon-settings-daemon/repos/community-i686/cinnamon-settings-daemon.install
  cinnamon-settings-daemon/repos/community-x86_64/PKGBUILD
  
cinnamon-settings-daemon/repos/community-x86_64/cinnamon-settings-daemon.install

---+
 /PKGBUILD |   82 
 /cinnamon-settings-daemon.install |   24 +
 community-i686/PKGBUILD   |   41 --
 community-i686/cinnamon-settings-daemon.install   |   12 --
 community-x86_64/PKGBUILD |   41 --
 community-x86_64/cinnamon-settings-daemon.install |   12 --
 6 files changed, 106 insertions(+), 106 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 11:10:12 UTC (rev 136020)
+++ community-i686/PKGBUILD 2015-06-28 11:10:19 UTC (rev 136021)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira (faidoc) alexfilgue...@antergos.com
-# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-
-pkgname=cinnamon-settings-daemon
-pkgver=2.6.2
-pkgrel=2
-pkgdesc=The Cinnamon Settings daemon
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('cinnamon-desktop' 'libibus' 'libcanberra-pulse' 'librsvg' 'nss'
- 'pulseaudio-alsa' 'upower' 'libnotify' 'libgnomekbd' 'libwacom'
- 'libgudev')
-makedepends=('intltool' 'docbook-xsl' 'gnome-common' 'xf86-input-wacom')
-options=('!emptydirs')
-install=cinnamon-settings-daemon.install
-url=https://github.com/linuxmint/cinnamon-settings-daemon;
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-settings-daemon/archive/${pkgver}.tar.gz;)
-sha256sums=('a97b85a2f9aafdc9c7c7facc97e422d7bc9531a920ac2e685fd82c56c01d8dec')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --libexecdir=/usr/lib/$pkgname --disable-static --enable-systemd
-
-  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: cinnamon-settings-daemon/repos/community-i686/PKGBUILD (from rev 
136020, cinnamon-settings-daemon/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 11:10:19 UTC (rev 136021)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Alexandre Filgueira (faidoc) alexfilgue...@antergos.com
+# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=cinnamon-settings-daemon
+pkgver=2.6.3
+pkgrel=1
+pkgdesc=The Cinnamon Settings daemon
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('cinnamon-desktop' 'libibus' 'libcanberra-pulse' 'librsvg' 'nss'
+ 'pulseaudio-alsa' 'upower' 'libnotify' 'libgnomekbd' 'libwacom'
+ 'libgudev')
+makedepends=('intltool' 'docbook-xsl' 'gnome-common' 'xf86-input-wacom')
+options=('!emptydirs')
+install=cinnamon-settings-daemon.install
+url=https://github.com/linuxmint/cinnamon-settings-daemon;
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-settings-daemon/archive/${pkgver}.tar.gz;)
+sha256sums=('b71a515f9eed5efd35ef134f291a9dd9674d81026b23c85377493b53ec1cf0ae')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/$pkgname --disable-static --enable-systemd
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-i686/cinnamon-settings-daemon.install
===
--- community-i686/cinnamon-settings-daemon.install 2015-06-28 11:10:12 UTC 
(rev 136020)
+++ community-i686/cinnamon-settings-daemon.install 2015-06-28 11:10:19 

[arch-commits] Commit in cinnamon-settings-daemon/trunk (PKGBUILD)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 13:10:12
  Author: bgyorgy
Revision: 136020

upgpkg: cinnamon-settings-daemon 2.6.3-1

Update to version 2.6.3

Modified:
  cinnamon-settings-daemon/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 11:03:01 UTC (rev 136019)
+++ PKGBUILD2015-06-28 11:10:12 UTC (rev 136020)
@@ -3,8 +3,8 @@
 # Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
 
 pkgname=cinnamon-settings-daemon
-pkgver=2.6.2
-pkgrel=2
+pkgver=2.6.3
+pkgrel=1
 pkgdesc=The Cinnamon Settings daemon
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -16,7 +16,7 @@
 install=cinnamon-settings-daemon.install
 url=https://github.com/linuxmint/cinnamon-settings-daemon;
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-settings-daemon/archive/${pkgver}.tar.gz;)
-sha256sums=('a97b85a2f9aafdc9c7c7facc97e422d7bc9531a920ac2e685fd82c56c01d8dec')
+sha256sums=('b71a515f9eed5efd35ef134f291a9dd9674d81026b23c85377493b53ec1cf0ae')
 
 prepare() {
   cd $pkgname-$pkgver


[arch-commits] Commit in cinnamon-desktop/repos (12 files)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 13:33:42
  Author: bgyorgy
Revision: 136031

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

Added:
  cinnamon-desktop/repos/community-i686/PKGBUILD
(from rev 136030, cinnamon-desktop/trunk/PKGBUILD)
  cinnamon-desktop/repos/community-i686/cinnamon-desktop.install
(from rev 136030, cinnamon-desktop/trunk/cinnamon-desktop.install)
  cinnamon-desktop/repos/community-i686/gnome-3.14.patch
(from rev 136030, cinnamon-desktop/trunk/gnome-3.14.patch)
  cinnamon-desktop/repos/community-x86_64/PKGBUILD
(from rev 136030, cinnamon-desktop/trunk/PKGBUILD)
  cinnamon-desktop/repos/community-x86_64/cinnamon-desktop.install
(from rev 136030, cinnamon-desktop/trunk/cinnamon-desktop.install)
  cinnamon-desktop/repos/community-x86_64/gnome-3.14.patch
(from rev 136030, cinnamon-desktop/trunk/gnome-3.14.patch)
Deleted:
  cinnamon-desktop/repos/community-i686/PKGBUILD
  cinnamon-desktop/repos/community-i686/cinnamon-desktop.install
  cinnamon-desktop/repos/community-i686/gnome-3.14.patch
  cinnamon-desktop/repos/community-x86_64/PKGBUILD
  cinnamon-desktop/repos/community-x86_64/cinnamon-desktop.install
  cinnamon-desktop/repos/community-x86_64/gnome-3.14.patch

---+
 /PKGBUILD |   82 
 /cinnamon-desktop.install |   22 +++
 /gnome-3.14.patch |   48 
 community-i686/PKGBUILD   |   41 --
 community-i686/cinnamon-desktop.install   |   11 ---
 community-i686/gnome-3.14.patch   |   24 
 community-x86_64/PKGBUILD |   41 --
 community-x86_64/cinnamon-desktop.install |   11 ---
 community-x86_64/gnome-3.14.patch |   24 
 9 files changed, 152 insertions(+), 152 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 11:33:33 UTC (rev 136030)
+++ community-i686/PKGBUILD 2015-06-28 11:33:42 UTC (rev 136031)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueria alexfilgue...@antergos.com
-# Contributor:  Jan de Groot j...@archlinux.org
-
-pkgname=cinnamon-desktop
-pkgver=2.6.4
-pkgrel=2
-pkgdesc=Library with common API for various Cinnamon modules
-arch=(i686 x86_64)
-license=(GPL LGPL)
-depends=(gtk3 libxkbfile python2 glib2 libgsystem)
-makedepends=(intltool gobject-introspection gnome-common python2)
-url=https://github.com/linuxmint/cinnamon-desktop;
-install=cinnamon-desktop.install
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-desktop/archive/${pkgver}.tar.gz;
-gnome-3.14.patch)
-sha256sums=('d40fc57202408476ff0bfa191958f16de07cf4c00d911bef57c3107c8e483970'
-'c4df93c49fd3f9f8bc359cbad5d5526eef80ee5c34680f8ba62c67c3dbb7eca5')
-
-prepare() {
-  cd $pkgname-$pkgver
-  # Update configuration for GNOME 3.14
-  patch -Np1 -i ../gnome-3.14.patch
-  # Arch uses systemd
-  sed -i 's|false|true|g' 
schemas/org.cinnamon.desktop.session.gschema.xml.in.in
-  # Fix build failure 
-  sed -i 's|subdir-objects||g' configure.ac
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib/$pkgname --disable-static
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
\ No newline at end of file

Copied: cinnamon-desktop/repos/community-i686/PKGBUILD (from rev 136030, 
cinnamon-desktop/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 11:33:42 UTC (rev 136031)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Alexandre Filgueria alexfilgue...@antergos.com
+# Contributor:  Jan de Groot j...@archlinux.org
+
+pkgname=cinnamon-desktop
+pkgver=2.6.5
+pkgrel=1
+pkgdesc=Library with common API for various Cinnamon modules
+arch=(i686 x86_64)
+license=(GPL LGPL)
+depends=(gtk3 libxkbfile python2 glib2 libgsystem)
+makedepends=(intltool gobject-introspection gnome-common python2)
+url=https://github.com/linuxmint/cinnamon-desktop;
+install=cinnamon-desktop.install
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-desktop/archive/${pkgver}.tar.gz;
+gnome-3.14.patch)
+sha256sums=('a004790f46d1960592f9462cbf6d394d9a5c66b31bb13cc295ed8acb1135924a'
+'c4df93c49fd3f9f8bc359cbad5d5526eef80ee5c34680f8ba62c67c3dbb7eca5')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # Update configuration for GNOME 3.14
+  patch -Np1 -i ../gnome-3.14.patch
+  # Arch uses systemd
+  sed -i 's|false|true|g' 
schemas/org.cinnamon.desktop.session.gschema.xml.in.in
+  # Fix build failure 
+  sed -i 's|subdir-objects||g' configure.ac
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+

[arch-commits] Commit in cinnamon-screensaver/trunk (PKGBUILD)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 14:20:11
  Author: bgyorgy
Revision: 136036

upgpkg: cinnamon-screensaver 2.6.4-2

Use python2 for webkit screensaver

Modified:
  cinnamon-screensaver/trunk/PKGBUILD

--+
 PKGBUILD |   10 --
 1 file changed, 8 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 11:53:17 UTC (rev 136035)
+++ PKGBUILD2015-06-28 12:20:11 UTC (rev 136036)
@@ -5,13 +5,13 @@
 
 pkgname=cinnamon-screensaver
 pkgver=2.6.4
-pkgrel=1
+pkgrel=2
 pkgdesc=Screensaver designed to integrate well with the Cinnamon desktop.
 arch=('i686' 'x86_64')
 license=('GPL')
 url=https://github.com/linuxmint/cinnamon-screensaver;
 backup=(etc/pam.d/cinnamon-screensaver)
-depends=('cinnamon-desktop' 'cinnamon-translations' 'dbus-glib' 'libgnomekbd' 
'webkit2gtk' 'python')
+depends=('cinnamon-desktop' 'cinnamon-translations' 'dbus-glib' 'libgnomekbd' 
'python2-gobject' 'webkit2gtk')
 makedepends=('intltool' 'gnome-common')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/cinnamon-screensaver/archive/$pkgver.tar.gz
cinnamon-screensaver.pam)
@@ -18,6 +18,12 @@
 sha256sums=('b5da1cd64ab20e52582088c1fa8ac79741b1a17cc018a8f370936d9707dbbbde'
 'c34925177c883dc4935408a4679e984855b14ef18a208bb5c7c3e5be3817619a')
 
+prepare() {
+  cd $pkgname-$pkgver
+  # Python2 fix
+  sed -i 's@^#!.*python$@#!/usr/bin/python2@' data/screensavers/*/main
+}
+
 build() {
   cd $pkgname-$pkgver
 


[arch-commits] Commit in cinnamon-screensaver/repos (8 files)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 14:20:19
  Author: bgyorgy
Revision: 136037

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

Added:
  cinnamon-screensaver/repos/community-i686/PKGBUILD
(from rev 136036, cinnamon-screensaver/trunk/PKGBUILD)
  cinnamon-screensaver/repos/community-i686/cinnamon-screensaver.pam
(from rev 136036, cinnamon-screensaver/trunk/cinnamon-screensaver.pam)
  cinnamon-screensaver/repos/community-x86_64/PKGBUILD
(from rev 136036, cinnamon-screensaver/trunk/PKGBUILD)
  cinnamon-screensaver/repos/community-x86_64/cinnamon-screensaver.pam
(from rev 136036, cinnamon-screensaver/trunk/cinnamon-screensaver.pam)
Deleted:
  cinnamon-screensaver/repos/community-i686/PKGBUILD
  cinnamon-screensaver/repos/community-i686/cinnamon-screensaver.pam
  cinnamon-screensaver/repos/community-x86_64/PKGBUILD
  cinnamon-screensaver/repos/community-x86_64/cinnamon-screensaver.pam

---+
 /PKGBUILD |   82 
 /cinnamon-screensaver.pam |   12 
 community-i686/PKGBUILD   |   35 ---
 community-i686/cinnamon-screensaver.pam   |6 --
 community-x86_64/PKGBUILD |   35 ---
 community-x86_64/cinnamon-screensaver.pam |6 --
 6 files changed, 94 insertions(+), 82 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 12:20:11 UTC (rev 136036)
+++ community-i686/PKGBUILD 2015-06-28 12:20:19 UTC (rev 136037)
@@ -1,35 +0,0 @@
-# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
-# Based on gnome-screensaver package:
-# Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Jan de Groot j...@archlinux.org
-
-pkgname=cinnamon-screensaver
-pkgver=2.6.4
-pkgrel=1
-pkgdesc=Screensaver designed to integrate well with the Cinnamon desktop.
-arch=('i686' 'x86_64')
-license=('GPL')
-url=https://github.com/linuxmint/cinnamon-screensaver;
-backup=(etc/pam.d/cinnamon-screensaver)
-depends=('cinnamon-desktop' 'cinnamon-translations' 'dbus-glib' 'libgnomekbd' 
'webkit2gtk' 'python')
-makedepends=('intltool' 'gnome-common')
-source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/cinnamon-screensaver/archive/$pkgver.tar.gz
-   cinnamon-screensaver.pam)
-sha256sums=('b5da1cd64ab20e52582088c1fa8ac79741b1a17cc018a8f370936d9707dbbbde'
-'c34925177c883dc4935408a4679e984855b14ef18a208bb5c7c3e5be3817619a')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
-   --libexecdir=/usr/lib/cinnamon-screensaver \
-   --localstatedir=/var \
-   --with-mit-ext --with-systemd
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  install -Dm644 ../cinnamon-screensaver.pam 
$pkgdir/etc/pam.d/cinnamon-screensaver
-}

Copied: cinnamon-screensaver/repos/community-i686/PKGBUILD (from rev 136036, 
cinnamon-screensaver/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 12:20:19 UTC (rev 136037)
@@ -0,0 +1,41 @@
+# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
+# Based on gnome-screensaver package:
+# Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Jan de Groot j...@archlinux.org
+
+pkgname=cinnamon-screensaver
+pkgver=2.6.4
+pkgrel=2
+pkgdesc=Screensaver designed to integrate well with the Cinnamon desktop.
+arch=('i686' 'x86_64')
+license=('GPL')
+url=https://github.com/linuxmint/cinnamon-screensaver;
+backup=(etc/pam.d/cinnamon-screensaver)
+depends=('cinnamon-desktop' 'cinnamon-translations' 'dbus-glib' 'libgnomekbd' 
'python2-gobject' 'webkit2gtk')
+makedepends=('intltool' 'gnome-common')
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/cinnamon-screensaver/archive/$pkgver.tar.gz
+   cinnamon-screensaver.pam)
+sha256sums=('b5da1cd64ab20e52582088c1fa8ac79741b1a17cc018a8f370936d9707dbbbde'
+'c34925177c883dc4935408a4679e984855b14ef18a208bb5c7c3e5be3817619a')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # Python2 fix
+  sed -i 's@^#!.*python$@#!/usr/bin/python2@' data/screensavers/*/main
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+   --libexecdir=/usr/lib/cinnamon-screensaver \
+   --localstatedir=/var \
+   --with-mit-ext --with-systemd
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -Dm644 ../cinnamon-screensaver.pam 
$pkgdir/etc/pam.d/cinnamon-screensaver
+}

Deleted: community-i686/cinnamon-screensaver.pam
===
--- community-i686/cinnamon-screensaver.pam 2015-06-28 12:20:11 UTC (rev 
136036)
+++ community-i686/cinnamon-screensaver.pam 

[arch-commits] Commit in mate-media/trunk (PKGBUILD mate-media-gstreamer.install)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 22:45:15
  Author: bgyorgy
Revision: 136069

upgpkg: mate-media 1.10.0-2

Remove unused dependencies

Modified:
  mate-media/trunk/PKGBUILD
Deleted:
  mate-media/trunk/mate-media-gstreamer.install

--+
 PKGBUILD |8 
 mate-media-gstreamer.install |   12 
 2 files changed, 4 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 20:32:14 UTC (rev 136068)
+++ PKGBUILD2015-06-28 20:45:15 UTC (rev 136069)
@@ -4,13 +4,13 @@
 _pkgbase=mate-media
 pkgname=(${_pkgbase})
 pkgver=${_ver}.0
-pkgrel=1
+pkgrel=2
 url=http://mate-desktop.org;
-pkgdesc=MATE Media Tools  (GTK2 version)
+pkgdesc=MATE Media Tools (GTK2 version)
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('gtk2' 'libcanberra-pulse' 'libmatemixer' 'libunique' 'marco=1.10' 
'mate-desktop=1.10')
-makedepends=('mate-common' 'mate-panel=1.10' 'mate-settings-daemon=1.10')
+depends=('gtk2' 'libcanberra' 'libmatemixer' 'libunique' 'mate-desktop=1.10')
+makedepends=('mate-common')
 
source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
 groups=('mate-extra')
 replaces=(${_pkgbase}-gstreamer ${_pkgbase}-pulseaudio)

Deleted: mate-media-gstreamer.install
===
--- mate-media-gstreamer.install2015-06-28 20:32:14 UTC (rev 136068)
+++ mate-media-gstreamer.install2015-06-28 20:45:15 UTC (rev 136069)
@@ -1,12 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas/
-gtk-update-icon-cache -q -t -f /usr/share/icons/mate
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}


[arch-commits] Commit in mate-desktop/trunk (PKGBUILD)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 22:55:21
  Author: bgyorgy
Revision: 136077

upgpkg: mate-desktop 1.10.0-1

This package no longer contains help files (moved to mate-user-guide)

Modified:
  mate-desktop/trunk/PKGBUILD

--+
 PKGBUILD |1 -
 1 file changed, 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 20:50:37 UTC (rev 136076)
+++ PKGBUILD2015-06-28 20:55:21 UTC (rev 136077)
@@ -11,7 +11,6 @@
 license=('GPL' 'LGPL')
 depends=('dconf' 'gtk2' 'gtk3' 'startup-notification')
 makedepends=('gobject-introspection' 'mate-common' 'yelp-tools')
-optdepends=('yelp: for reading MATE help documents')
 
source=(http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz;)
 sha1sums=('ec52966a5f47730c16a9a9c6c1b95b73d7afee84')
 install=${pkgbase}.install


[arch-commits] Commit in mate-control-center-gtk3/trunk (PKGBUILD)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 23:15:58
  Author: bgyorgy
Revision: 136083

upgpkg: mate-control-center-gtk3 1.10.0-3

Remove unused dependency on caja-gtk3

Modified:
  mate-control-center-gtk3/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 21:05:04 UTC (rev 136082)
+++ PKGBUILD2015-06-28 21:15:58 UTC (rev 136083)
@@ -4,13 +4,13 @@
 _pkgbase=mate-control-center
 pkgname=${_pkgbase}-gtk3
 pkgver=${_ver}.0
-pkgrel=2
+pkgrel=3
 pkgdesc=The Control Center for MATE (GTK3 version [EXPERIMENTAL])
 url=http://mate-desktop.org;
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('caja-gtk3=1.10' 'dbus-glib' 'dconf' 'desktop-file-utils' 
'gsettings-desktop-schemas'
- 'gtk3' 'mate-desktop-gtk3=1.10' 'mate-icon-theme' 'mate-menus=1.10' 
'mate-settings-daemon-gtk3=1.10'
+depends=('dbus-glib' 'dconf' 'desktop-file-utils' 'gsettings-desktop-schemas' 
'gtk3'
+ 'mate-desktop-gtk3=1.10' 'mate-icon-theme' 'mate-menus=1.10' 
'mate-settings-daemon-gtk3=1.10'
  'marco-gtk3=1.10' 'libgtop' 'libmatekbd-gtk3=1.10' 'libunique3' 
'librsvg' 'libxss'
  'libxt' 'startup-notification')
 makedepends=('docbook2x' 'mate-common' 'yelp-tools')


[arch-commits] Commit in mate-control-center-gtk3/repos (14 files)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 23:16:08
  Author: bgyorgy
Revision: 136084

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

Added:
  
mate-control-center-gtk3/repos/community-i686/0001_fix_keyboard_and_mouse_properties_windows.diff
(from rev 136083, 
mate-control-center-gtk3/trunk/0001_fix_keyboard_and_mouse_properties_windows.diff)
  
mate-control-center-gtk3/repos/community-i686/0002_adjust_mate-about-me_dialog_window.diff
(from rev 136083, 
mate-control-center-gtk3/trunk/0002_adjust_mate-about-me_dialog_window.diff)
  mate-control-center-gtk3/repos/community-i686/PKGBUILD
(from rev 136083, mate-control-center-gtk3/trunk/PKGBUILD)
  mate-control-center-gtk3/repos/community-i686/mate-control-center.install
(from rev 136083, 
mate-control-center-gtk3/trunk/mate-control-center.install)
  
mate-control-center-gtk3/repos/community-x86_64/0001_fix_keyboard_and_mouse_properties_windows.diff
(from rev 136083, 
mate-control-center-gtk3/trunk/0001_fix_keyboard_and_mouse_properties_windows.diff)
  
mate-control-center-gtk3/repos/community-x86_64/0002_adjust_mate-about-me_dialog_window.diff
(from rev 136083, 
mate-control-center-gtk3/trunk/0002_adjust_mate-about-me_dialog_window.diff)
  mate-control-center-gtk3/repos/community-x86_64/PKGBUILD
(from rev 136083, mate-control-center-gtk3/trunk/PKGBUILD)
  mate-control-center-gtk3/repos/community-x86_64/mate-control-center.install
(from rev 136083, 
mate-control-center-gtk3/trunk/mate-control-center.install)
Deleted:
  
mate-control-center-gtk3/repos/community-i686/0001_fix_keyboard_and_mouse_properties_windows.diff
  
mate-control-center-gtk3/repos/community-i686/0002_adjust_mate-about-me_dialog_window.diff
  mate-control-center-gtk3/repos/community-i686/PKGBUILD
  
mate-control-center-gtk3/repos/community-x86_64/0001_fix_keyboard_and_mouse_properties_windows.diff
  
mate-control-center-gtk3/repos/community-x86_64/0002_adjust_mate-about-me_dialog_window.diff
  mate-control-center-gtk3/repos/community-x86_64/PKGBUILD

--+
 /0001_fix_keyboard_and_mouse_properties_windows.diff |  216 
++
 /0002_adjust_mate-about-me_dialog_window.diff|   26 +
 /PKGBUILD|  106 

 community-i686/0001_fix_keyboard_and_mouse_properties_windows.diff   |  108 
-
 community-i686/0002_adjust_mate-about-me_dialog_window.diff  |   13 
 community-i686/PKGBUILD  |   53 --
 community-i686/mate-control-center.install   |   14 
 community-x86_64/0001_fix_keyboard_and_mouse_properties_windows.diff |  108 
-
 community-x86_64/0002_adjust_mate-about-me_dialog_window.diff|   13 
 community-x86_64/PKGBUILD|   53 --
 community-x86_64/mate-control-center.install |   14 
 11 files changed, 376 insertions(+), 348 deletions(-)

Deleted: community-i686/0001_fix_keyboard_and_mouse_properties_windows.diff
===
--- community-i686/0001_fix_keyboard_and_mouse_properties_windows.diff  
2015-06-28 21:15:58 UTC (rev 136083)
+++ community-i686/0001_fix_keyboard_and_mouse_properties_windows.diff  
2015-06-28 21:16:08 UTC (rev 136084)
@@ -1,108 +0,0 @@
-diff --git a/capplets/keyboard/mate-keyboard-properties-layout-chooser.ui 
b/capplets/keyboard/mate-keyboard-properties-layout-chooser.ui
-index 2de4c9b..1df1fa7 100644
 a/capplets/keyboard/mate-keyboard-properties-layout-chooser.ui
-+++ b/capplets/keyboard/mate-keyboard-properties-layout-chooser.ui
-@@ -6,7 +6,7 @@
- property name=visibleTrue/property
- property name=border_width5/property
- property name=title translatable=yesChoose a Layout/property
--property name=default_width670/property
-+property name=default_width900/property
- property name=default_height350/property
- property name=type_hintdialog/property
- child internal-child=vbox
-@@ -27,9 +27,9 @@
- child
-   object class=GtkAlignment id=alignment1
- property name=visibleTrue/property
--property name=top_padding3/property
--property name=bottom_padding3/property
--property name=left_padding3/property
-+property name=top_padding6/property
-+property name=bottom_padding6/property
-+property name=left_padding10/property
- property name=right_padding6/property
- child
-   object class=GtkTable id=table1
-@@ -107,10 +107,10 @@
- child
-   object class=GtkAlignment id=alignment2
- property name=visibleTrue/property
--property 

[arch-commits] Commit in engrampa/repos (12 files)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 23:26:13
  Author: bgyorgy
Revision: 136087

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

Added:
  engrampa/repos/community-i686/PKGBUILD
(from rev 136086, engrampa/trunk/PKGBUILD)
  engrampa/repos/community-i686/engrampa.install
(from rev 136086, engrampa/trunk/engrampa.install)
  engrampa/repos/community-i686/fr-rpm-bsdtar.patch
(from rev 136086, engrampa/trunk/fr-rpm-bsdtar.patch)
  engrampa/repos/community-x86_64/PKGBUILD
(from rev 136086, engrampa/trunk/PKGBUILD)
  engrampa/repos/community-x86_64/engrampa.install
(from rev 136086, engrampa/trunk/engrampa.install)
  engrampa/repos/community-x86_64/fr-rpm-bsdtar.patch
(from rev 136086, engrampa/trunk/fr-rpm-bsdtar.patch)
Deleted:
  engrampa/repos/community-i686/PKGBUILD
  engrampa/repos/community-i686/engrampa.install
  engrampa/repos/community-i686/fr-rpm-bsdtar.patch
  engrampa/repos/community-x86_64/PKGBUILD
  engrampa/repos/community-x86_64/engrampa.install
  engrampa/repos/community-x86_64/fr-rpm-bsdtar.patch

--+
 /PKGBUILD|   96 ++
 /engrampa.install|   26 +++
 /fr-rpm-bsdtar.patch |  120 +
 community-i686/PKGBUILD  |   47 
 community-i686/engrampa.install  |   13 ---
 community-i686/fr-rpm-bsdtar.patch   |   60 
 community-x86_64/PKGBUILD|   47 
 community-x86_64/engrampa.install|   13 ---
 community-x86_64/fr-rpm-bsdtar.patch |   60 
 9 files changed, 242 insertions(+), 240 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 21:26:05 UTC (rev 136086)
+++ community-i686/PKGBUILD 2015-06-28 21:26:13 UTC (rev 136087)
@@ -1,47 +0,0 @@
-# Maintainer : Martin Wimpress c...@flexion.org
-
-_ver=1.10
-_pkgbase=engrampa
-pkgname=(${_pkgbase})
-pkgver=${_ver}.0
-pkgrel=1
-pkgdesc=Archive manipulator for MATE (GTK2 version)
-url=http://mate-desktop.org;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('bzip2' 'caja=1.10' 'desktop-file-utils' 'gtk2' 'gzip' 'libarchive' 
'tar')
-makedepends=('mate-common' 'yelp-tools')
-optdepends=('unrar: for RAR uncompression'
-'zip: for ZIP archives' 'unzip: for ZIP archives'
-'p7zip: 7zip compression utility' 'arj: for ARJ archives'
-'unace: extraction tool for the proprietary ace archive format'
-'yelp: for reading MATE help documents')
-groups=('mate-extra')
-conflicts=(${_pkgbase}-gtk3)
-source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;
-fr-rpm-bsdtar.patch)
-sha1sums=('bca7140ac1715620fc2336ef6352df8a6f9d927b'
-  '219b05a979bf6f249aaae27964f02345fd81168d')
-install=${_pkgbase}.install
-
-prepare() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-# This patch 'depends' on libarchive
-patch -Np1 -i ${srcdir}/fr-rpm-bsdtar.patch
-}
-
-build() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${_pkgbase} \
---with-gtk=2.0 \
---disable-static \
---disable-packagekit
-make
-}
-
-package() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: engrampa/repos/community-i686/PKGBUILD (from rev 136086, 
engrampa/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 21:26:13 UTC (rev 136087)
@@ -0,0 +1,48 @@
+# Maintainer : Martin Wimpress c...@flexion.org
+
+_ver=1.10
+_pkgbase=engrampa
+pkgname=(${_pkgbase})
+pkgver=${_ver}.0
+pkgrel=2
+pkgdesc=Archive manipulator for MATE (GTK2 version)
+url=http://mate-desktop.org;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('bzip2' 'desktop-file-utils' 'gtk2' 'gzip' 'libarchive' 'tar')
+makedepends=('caja=1.10' 'mate-common' 'yelp-tools')
+optdepends=('caja: file archiver extension'
+'unrar: for RAR uncompression'
+'zip: for ZIP archives' 'unzip: for ZIP archives'
+'p7zip: 7zip compression utility' 'arj: for ARJ archives'
+'unace: extraction tool for the proprietary ace archive format'
+'yelp: for reading MATE help documents')
+groups=('mate-extra')
+conflicts=(${_pkgbase}-gtk3)
+source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;
+fr-rpm-bsdtar.patch)
+sha1sums=('bca7140ac1715620fc2336ef6352df8a6f9d927b'
+  '219b05a979bf6f249aaae27964f02345fd81168d')
+install=${_pkgbase}.install
+
+prepare() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+# This patch 'depends' on libarchive
+patch -Np1 -i ${srcdir}/fr-rpm-bsdtar.patch
+}
+
+build() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+

[arch-commits] Commit in engrampa/trunk (PKGBUILD)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 23:26:05
  Author: bgyorgy
Revision: 136086

upgpkg: engrampa 1.10.0-2

Remove unused dependency on caja

Modified:
  engrampa/trunk/PKGBUILD

--+
 PKGBUILD |9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 21:25:03 UTC (rev 136085)
+++ PKGBUILD2015-06-28 21:26:05 UTC (rev 136086)
@@ -4,14 +4,15 @@
 _pkgbase=engrampa
 pkgname=(${_pkgbase})
 pkgver=${_ver}.0
-pkgrel=1
+pkgrel=2
 pkgdesc=Archive manipulator for MATE (GTK2 version)
 url=http://mate-desktop.org;
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('bzip2' 'caja=1.10' 'desktop-file-utils' 'gtk2' 'gzip' 'libarchive' 
'tar')
-makedepends=('mate-common' 'yelp-tools')
-optdepends=('unrar: for RAR uncompression'
+depends=('bzip2' 'desktop-file-utils' 'gtk2' 'gzip' 'libarchive' 'tar')
+makedepends=('caja=1.10' 'mate-common' 'yelp-tools')
+optdepends=('caja: file archiver extension'
+'unrar: for RAR uncompression'
 'zip: for ZIP archives' 'unzip: for ZIP archives'
 'p7zip: 7zip compression utility' 'arj: for ARJ archives'
 'unace: extraction tool for the proprietary ace archive format'


[arch-commits] Commit in engrampa-gtk3/repos (12 files)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 23:28:10
  Author: bgyorgy
Revision: 136089

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

Added:
  engrampa-gtk3/repos/community-i686/PKGBUILD
(from rev 136088, engrampa-gtk3/trunk/PKGBUILD)
  engrampa-gtk3/repos/community-i686/engrampa.install
(from rev 136088, engrampa-gtk3/trunk/engrampa.install)
  engrampa-gtk3/repos/community-i686/fr-rpm-bsdtar.patch
(from rev 136088, engrampa-gtk3/trunk/fr-rpm-bsdtar.patch)
  engrampa-gtk3/repos/community-x86_64/PKGBUILD
(from rev 136088, engrampa-gtk3/trunk/PKGBUILD)
  engrampa-gtk3/repos/community-x86_64/engrampa.install
(from rev 136088, engrampa-gtk3/trunk/engrampa.install)
  engrampa-gtk3/repos/community-x86_64/fr-rpm-bsdtar.patch
(from rev 136088, engrampa-gtk3/trunk/fr-rpm-bsdtar.patch)
Deleted:
  engrampa-gtk3/repos/community-i686/PKGBUILD
  engrampa-gtk3/repos/community-i686/engrampa.install
  engrampa-gtk3/repos/community-i686/fr-rpm-bsdtar.patch
  engrampa-gtk3/repos/community-x86_64/PKGBUILD
  engrampa-gtk3/repos/community-x86_64/engrampa.install
  engrampa-gtk3/repos/community-x86_64/fr-rpm-bsdtar.patch

--+
 /PKGBUILD|   98 ++
 /engrampa.install|   26 +++
 /fr-rpm-bsdtar.patch |  120 +
 community-i686/PKGBUILD  |   48 -
 community-i686/engrampa.install  |   13 ---
 community-i686/fr-rpm-bsdtar.patch   |   60 
 community-x86_64/PKGBUILD|   48 -
 community-x86_64/engrampa.install|   13 ---
 community-x86_64/fr-rpm-bsdtar.patch |   60 
 9 files changed, 244 insertions(+), 242 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 21:28:02 UTC (rev 136088)
+++ community-i686/PKGBUILD 2015-06-28 21:28:10 UTC (rev 136089)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-
-_ver=1.10
-_pkgbase=engrampa
-pkgname=(${_pkgbase}-gtk3)
-pkgver=${_ver}.0
-pkgrel=1
-pkgdesc=Archive manipulator for MATE (GTK3 version [EXPERIMENTAL])
-url=http://mate-desktop.org;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('bzip2' 'caja-gtk3=1.10' 'desktop-file-utils' 'gtk3' 'gzip' 
'libarchive' 'tar')
-makedepends=('mate-common' 'yelp-tools')
-optdepends=('unrar: for RAR uncompression'
-'zip: for ZIP archives' 'unzip: for ZIP archives'
-'p7zip: 7zip compression utility' 'arj: for ARJ archives'
-'unace: extraction tool for the proprietary ace archive format'
-'yelp: for reading MATE help documents')
-groups=('mate-extra-gtk3')
-conflicts=(${_pkgbase})
-source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;
-fr-rpm-bsdtar.patch)
-sha1sums=('bca7140ac1715620fc2336ef6352df8a6f9d927b'
-  '219b05a979bf6f249aaae27964f02345fd81168d')
-install=${_pkgbase}.install
-
-prepare() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-# This patch 'depends' on libarchive
-patch -Np1 -i ${srcdir}/fr-rpm-bsdtar.patch
-}
-
-build() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${_pkgbase} \
---with-gtk=3.0 \
---disable-static \
---disable-packagekit
-make
-}
-
-package() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: engrampa-gtk3/repos/community-i686/PKGBUILD (from rev 136088, 
engrampa-gtk3/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 21:28:10 UTC (rev 136089)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+
+_ver=1.10
+_pkgbase=engrampa
+pkgname=(${_pkgbase}-gtk3)
+pkgver=${_ver}.0
+pkgrel=2
+pkgdesc=Archive manipulator for MATE (GTK3 version [EXPERIMENTAL])
+url=http://mate-desktop.org;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('bzip2' 'desktop-file-utils' 'gtk3' 'gzip' 'libarchive' 'tar')
+makedepends=('caja-gtk3=1.10' 'mate-common' 'yelp-tools')
+optdepends=('caja-gtk3: file archiver extension'
+'unrar: for RAR uncompression'
+'zip: for ZIP archives' 'unzip: for ZIP archives'
+'p7zip: 7zip compression utility' 'arj: for ARJ archives'
+'unace: extraction tool for the proprietary ace archive format'
+'yelp: for reading MATE help documents')
+groups=('mate-extra-gtk3')
+conflicts=(${_pkgbase})
+source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;
+fr-rpm-bsdtar.patch)
+sha1sums=('bca7140ac1715620fc2336ef6352df8a6f9d927b'
+  '219b05a979bf6f249aaae27964f02345fd81168d')
+install=${_pkgbase}.install
+
+prepare() {
+cd 

[arch-commits] Commit in engrampa-gtk3/trunk (PKGBUILD)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 23:28:02
  Author: bgyorgy
Revision: 136088

upgpkg: engrampa-gtk3 1.10.0-2

Remove unused dependency on caja-gtk3

Modified:
  engrampa-gtk3/trunk/PKGBUILD

--+
 PKGBUILD |9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 21:26:13 UTC (rev 136087)
+++ PKGBUILD2015-06-28 21:28:02 UTC (rev 136088)
@@ -5,14 +5,15 @@
 _pkgbase=engrampa
 pkgname=(${_pkgbase}-gtk3)
 pkgver=${_ver}.0
-pkgrel=1
+pkgrel=2
 pkgdesc=Archive manipulator for MATE (GTK3 version [EXPERIMENTAL])
 url=http://mate-desktop.org;
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('bzip2' 'caja-gtk3=1.10' 'desktop-file-utils' 'gtk3' 'gzip' 
'libarchive' 'tar')
-makedepends=('mate-common' 'yelp-tools')
-optdepends=('unrar: for RAR uncompression'
+depends=('bzip2' 'desktop-file-utils' 'gtk3' 'gzip' 'libarchive' 'tar')
+makedepends=('caja-gtk3=1.10' 'mate-common' 'yelp-tools')
+optdepends=('caja-gtk3: file archiver extension'
+'unrar: for RAR uncompression'
 'zip: for ZIP archives' 'unzip: for ZIP archives'
 'p7zip: 7zip compression utility' 'arj: for ARJ archives'
 'unace: extraction tool for the proprietary ace archive format'


[arch-commits] Commit in mate-sensors-applet/trunk (PKGBUILD)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 22:09:13
  Author: bgyorgy
Revision: 136057

upgpkg: mate-sensors-applet 1.10.2-2

Move libxnvctrl to makedepends as it's a static library

Modified:
  mate-sensors-applet/trunk/PKGBUILD

--+
 PKGBUILD |7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 20:06:44 UTC (rev 136056)
+++ PKGBUILD2015-06-28 20:09:13 UTC (rev 136057)
@@ -4,14 +4,13 @@
 _pkgbase=mate-sensors-applet
 pkgname=(${_pkgbase})
 pkgver=${_ver}.2
-pkgrel=1
+pkgrel=2
 pkgdesc=A MATE Panel applet to display readings from hardware sensors, 
including CPU temperature, fan speeds and voltage readings. (GTK2 version)
 url=http://mate-desktop.org;
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('dbus' 'gtk2' 'libatasmart' 'libnotify' 'libxnvctrl' 'lm_sensors'
- 'mate-panel=1.10')
-makedepends=('docbook-xml' 'mate-common' 'rarian' 'yelp-tools')
+depends=('dbus' 'gtk2' 'libatasmart' 'libnotify' 'lm_sensors' 
'mate-panel=1.10')
+makedepends=('docbook-xml' 'libxnvctrl' 'mate-common' 'rarian' 'yelp-tools')
 optdepends=('yelp: for reading MATE help documents')
 groups=('mate-extra')
 conflicts=(${_pkgbase}-gtk3)


[arch-commits] Commit in mate-sensors-applet/repos (8 files)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 22:09:20
  Author: bgyorgy
Revision: 136058

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

Added:
  mate-sensors-applet/repos/community-i686/PKGBUILD
(from rev 136057, mate-sensors-applet/trunk/PKGBUILD)
  mate-sensors-applet/repos/community-i686/mate-sensors-applet.install
(from rev 136057, mate-sensors-applet/trunk/mate-sensors-applet.install)
  mate-sensors-applet/repos/community-x86_64/PKGBUILD
(from rev 136057, mate-sensors-applet/trunk/PKGBUILD)
  mate-sensors-applet/repos/community-x86_64/mate-sensors-applet.install
(from rev 136057, mate-sensors-applet/trunk/mate-sensors-applet.install)
Deleted:
  mate-sensors-applet/repos/community-i686/PKGBUILD
  mate-sensors-applet/repos/community-i686/mate-sensors-applet.install
  mate-sensors-applet/repos/community-x86_64/PKGBUILD
  mate-sensors-applet/repos/community-x86_64/mate-sensors-applet.install

--+
 /PKGBUILD|   68 +
 /mate-sensors-applet.install |   24 
 community-i686/PKGBUILD  |   35 
 community-i686/mate-sensors-applet.install   |   12 
 community-x86_64/PKGBUILD|   35 
 community-x86_64/mate-sensors-applet.install |   12 
 6 files changed, 92 insertions(+), 94 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 20:09:13 UTC (rev 136057)
+++ community-i686/PKGBUILD 2015-06-28 20:09:20 UTC (rev 136058)
@@ -1,35 +0,0 @@
-# Maintainer : Martin Wimpress c...@flexion.org
-
-_ver=1.10
-_pkgbase=mate-sensors-applet
-pkgname=(${_pkgbase})
-pkgver=${_ver}.2
-pkgrel=1
-pkgdesc=A MATE Panel applet to display readings from hardware sensors, 
including CPU temperature, fan speeds and voltage readings. (GTK2 version)
-url=http://mate-desktop.org;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('dbus' 'gtk2' 'libatasmart' 'libnotify' 'libxnvctrl' 'lm_sensors'
- 'mate-panel=1.10')
-makedepends=('docbook-xml' 'mate-common' 'rarian' 'yelp-tools')
-optdepends=('yelp: for reading MATE help documents')
-groups=('mate-extra')
-conflicts=(${_pkgbase}-gtk3)
-source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
-sha1sums=('d5dab31c42db7ebcd38cf31e8a9f2faef0da5ebc')
-install=${_pkgbase}.install
-
-build() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${_pkgbase} \
---with-gtk=2.0 \
---disable-static
-  make
-}
-
-package() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: mate-sensors-applet/repos/community-i686/PKGBUILD (from rev 136057, 
mate-sensors-applet/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 20:09:20 UTC (rev 136058)
@@ -0,0 +1,34 @@
+# Maintainer : Martin Wimpress c...@flexion.org
+
+_ver=1.10
+_pkgbase=mate-sensors-applet
+pkgname=(${_pkgbase})
+pkgver=${_ver}.2
+pkgrel=2
+pkgdesc=A MATE Panel applet to display readings from hardware sensors, 
including CPU temperature, fan speeds and voltage readings. (GTK2 version)
+url=http://mate-desktop.org;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus' 'gtk2' 'libatasmart' 'libnotify' 'lm_sensors' 
'mate-panel=1.10')
+makedepends=('docbook-xml' 'libxnvctrl' 'mate-common' 'rarian' 'yelp-tools')
+optdepends=('yelp: for reading MATE help documents')
+groups=('mate-extra')
+conflicts=(${_pkgbase}-gtk3)
+source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
+sha1sums=('d5dab31c42db7ebcd38cf31e8a9f2faef0da5ebc')
+install=${_pkgbase}.install
+
+build() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--with-gtk=2.0 \
+--disable-static
+  make
+}
+
+package() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+make DESTDIR=${pkgdir} install
+}

Deleted: community-i686/mate-sensors-applet.install
===
--- community-i686/mate-sensors-applet.install  2015-06-28 20:09:13 UTC (rev 
136057)
+++ community-i686/mate-sensors-applet.install  2015-06-28 20:09:20 UTC (rev 
136058)
@@ -1,12 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas/
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: mate-sensors-applet/repos/community-i686/mate-sensors-applet.install 
(from rev 136057, mate-sensors-applet/trunk/mate-sensors-applet.install)
===
--- 

[arch-commits] Commit in mate-sensors-applet-gtk3/repos (8 files)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 22:14:25
  Author: bgyorgy
Revision: 136060

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

Added:
  mate-sensors-applet-gtk3/repos/community-i686/PKGBUILD
(from rev 136059, mate-sensors-applet-gtk3/trunk/PKGBUILD)
  mate-sensors-applet-gtk3/repos/community-i686/mate-sensors-applet.install
(from rev 136059, 
mate-sensors-applet-gtk3/trunk/mate-sensors-applet.install)
  mate-sensors-applet-gtk3/repos/community-x86_64/PKGBUILD
(from rev 136059, mate-sensors-applet-gtk3/trunk/PKGBUILD)
  mate-sensors-applet-gtk3/repos/community-x86_64/mate-sensors-applet.install
(from rev 136059, 
mate-sensors-applet-gtk3/trunk/mate-sensors-applet.install)
Deleted:
  mate-sensors-applet-gtk3/repos/community-i686/PKGBUILD
  mate-sensors-applet-gtk3/repos/community-i686/mate-sensors-applet.install
  mate-sensors-applet-gtk3/repos/community-x86_64/PKGBUILD
  mate-sensors-applet-gtk3/repos/community-x86_64/mate-sensors-applet.install

--+
 /PKGBUILD|   68 +
 /mate-sensors-applet.install |   24 
 community-i686/PKGBUILD  |   35 
 community-i686/mate-sensors-applet.install   |   12 
 community-x86_64/PKGBUILD|   35 
 community-x86_64/mate-sensors-applet.install |   12 
 6 files changed, 92 insertions(+), 94 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 20:14:17 UTC (rev 136059)
+++ community-i686/PKGBUILD 2015-06-28 20:14:25 UTC (rev 136060)
@@ -1,35 +0,0 @@
-# Maintainer : Martin Wimpress c...@flexion.org
-
-_ver=1.10
-_pkgbase=mate-sensors-applet
-pkgname=(${_pkgbase}-gtk3)
-pkgver=${_ver}.2
-pkgrel=1
-pkgdesc=A MATE Panel applet to display readings from hardware sensors, 
including CPU temperature, fan speeds and voltage readings. (GTK3 version 
[EXPERIMENTAL])
-url=http://mate-desktop.org;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('dbus' 'gtk3' 'libatasmart' 'libnotify' 'libxnvctrl' 'lm_sensors'
- 'mate-panel-gtk3=1.10')
-makedepends=('docbook-xml' 'mate-common' 'rarian' 'yelp-tools')
-optdepends=('yelp: for reading MATE help documents')
-groups=('mate-extra-gtk3')
-conflicts=(${_pkgbase})
-source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
-sha1sums=('d5dab31c42db7ebcd38cf31e8a9f2faef0da5ebc')
-install=${_pkgbase}.install
-
-build() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${_pkgbase} \
---with-gtk=3.0 \
---disable-static
-  make
-}
-
-package() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: mate-sensors-applet-gtk3/repos/community-i686/PKGBUILD (from rev 
136059, mate-sensors-applet-gtk3/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 20:14:25 UTC (rev 136060)
@@ -0,0 +1,34 @@
+# Maintainer : Martin Wimpress c...@flexion.org
+
+_ver=1.10
+_pkgbase=mate-sensors-applet
+pkgname=(${_pkgbase}-gtk3)
+pkgver=${_ver}.2
+pkgrel=2
+pkgdesc=A MATE Panel applet to display readings from hardware sensors, 
including CPU temperature, fan speeds and voltage readings. (GTK3 version 
[EXPERIMENTAL])
+url=http://mate-desktop.org;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus' 'gtk3' 'libatasmart' 'libnotify'  'lm_sensors' 
'mate-panel-gtk3=1.10')
+makedepends=('docbook-xml' 'libxnvctrl' 'mate-common' 'rarian' 'yelp-tools')
+optdepends=('yelp: for reading MATE help documents')
+groups=('mate-extra-gtk3')
+conflicts=(${_pkgbase})
+source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
+sha1sums=('d5dab31c42db7ebcd38cf31e8a9f2faef0da5ebc')
+install=${_pkgbase}.install
+
+build() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--with-gtk=3.0 \
+--disable-static
+  make
+}
+
+package() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+make DESTDIR=${pkgdir} install
+}

Deleted: community-i686/mate-sensors-applet.install
===
--- community-i686/mate-sensors-applet.install  2015-06-28 20:14:17 UTC (rev 
136059)
+++ community-i686/mate-sensors-applet.install  2015-06-28 20:14:25 UTC (rev 
136060)
@@ -1,12 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas/
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: 
mate-sensors-applet-gtk3/repos/community-i686/mate-sensors-applet.install (from 
rev 136059, 

[arch-commits] Commit in mate-sensors-applet-gtk3/trunk (PKGBUILD)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 22:14:17
  Author: bgyorgy
Revision: 136059

upgpkg: mate-sensors-applet-gtk3 1.10.2-2

Move libxnvctrl to makedepends as it's a static library

Modified:
  mate-sensors-applet-gtk3/trunk/PKGBUILD

--+
 PKGBUILD |7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 20:09:20 UTC (rev 136058)
+++ PKGBUILD2015-06-28 20:14:17 UTC (rev 136059)
@@ -4,14 +4,13 @@
 _pkgbase=mate-sensors-applet
 pkgname=(${_pkgbase}-gtk3)
 pkgver=${_ver}.2
-pkgrel=1
+pkgrel=2
 pkgdesc=A MATE Panel applet to display readings from hardware sensors, 
including CPU temperature, fan speeds and voltage readings. (GTK3 version 
[EXPERIMENTAL])
 url=http://mate-desktop.org;
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('dbus' 'gtk3' 'libatasmart' 'libnotify' 'libxnvctrl' 'lm_sensors'
- 'mate-panel-gtk3=1.10')
-makedepends=('docbook-xml' 'mate-common' 'rarian' 'yelp-tools')
+depends=('dbus' 'gtk3' 'libatasmart' 'libnotify'  'lm_sensors' 
'mate-panel-gtk3=1.10')
+makedepends=('docbook-xml' 'libxnvctrl' 'mate-common' 'rarian' 'yelp-tools')
 optdepends=('yelp: for reading MATE help documents')
 groups=('mate-extra-gtk3')
 conflicts=(${_pkgbase})


[arch-commits] Commit in mate-panel/trunk (PKGBUILD)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 22:25:32
  Author: bgyorgy
Revision: 136063

upgpkg: mate-panel 1.10.0-3

Remove unused dependencies

Modified:
  mate-panel/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 20:16:28 UTC (rev 136062)
+++ PKGBUILD2015-06-28 20:25:32 UTC (rev 136063)
@@ -4,14 +4,14 @@
 _pkgbase=mate-panel
 pkgname=${_pkgbase}
 pkgver=${_ver}.0
-pkgrel=2
+pkgrel=3
 pkgdesc=The MATE Panel (GTK2 version)
 url=http://mate-desktop.org;
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('caja=1.10' 'dbus-glib' 'dconf' 'gtk2' 'libwnck' 'libcanberra' 
'libice'
- 'libmateweather=1.10' 'librsvg' 'libsm' 'libsoup' 'libxau' 
'marco=1.10'
- 'mate-menus=1.10' 'mate-desktop=1.10' 'mate-session-manager=1.10')
+depends=('dbus-glib' 'dconf' 'gtk2' 'libwnck' 'libcanberra' 'libice'
+ 'libmateweather=1.10' 'librsvg' 'libsm' 'libsoup' 'libxau'
+ 'mate-menus=1.10' 'mate-desktop=1.10')
 makedepends=('gobject-introspection' 'mate-common' 'yelp-tools')
 optdepends=('yelp: for reading MATE help documents')
 
source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)


[arch-commits] Commit in mate-panel/repos (8 files)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 22:25:40
  Author: bgyorgy
Revision: 136064

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

Added:
  mate-panel/repos/community-i686/PKGBUILD
(from rev 136063, mate-panel/trunk/PKGBUILD)
  mate-panel/repos/community-i686/mate-panel.install
(from rev 136063, mate-panel/trunk/mate-panel.install)
  mate-panel/repos/community-x86_64/PKGBUILD
(from rev 136063, mate-panel/trunk/PKGBUILD)
  mate-panel/repos/community-x86_64/mate-panel.install
(from rev 136063, mate-panel/trunk/mate-panel.install)
Deleted:
  mate-panel/repos/community-i686/PKGBUILD
  mate-panel/repos/community-i686/mate-panel.install
  mate-panel/repos/community-x86_64/PKGBUILD
  mate-panel/repos/community-x86_64/mate-panel.install

-+
 /PKGBUILD   |   78 ++
 /mate-panel.install |   24 ++
 community-i686/PKGBUILD |   39 -
 community-i686/mate-panel.install   |   12 -
 community-x86_64/PKGBUILD   |   39 -
 community-x86_64/mate-panel.install |   12 -
 6 files changed, 102 insertions(+), 102 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 20:25:32 UTC (rev 136063)
+++ community-i686/PKGBUILD 2015-06-28 20:25:40 UTC (rev 136064)
@@ -1,39 +0,0 @@
-# Maintainer : Martin Wimpress c...@flexion.org
-
-_ver=1.10
-_pkgbase=mate-panel
-pkgname=${_pkgbase}
-pkgver=${_ver}.0
-pkgrel=2
-pkgdesc=The MATE Panel (GTK2 version)
-url=http://mate-desktop.org;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('caja=1.10' 'dbus-glib' 'dconf' 'gtk2' 'libwnck' 'libcanberra' 
'libice'
- 'libmateweather=1.10' 'librsvg' 'libsm' 'libsoup' 'libxau' 
'marco=1.10'
- 'mate-menus=1.10' 'mate-desktop=1.10' 'mate-session-manager=1.10')
-makedepends=('gobject-introspection' 'mate-common' 'yelp-tools')
-optdepends=('yelp: for reading MATE help documents')
-source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
-groups=('mate')
-conflicts=(${_pkgbase}-gtk3)
-sha1sums=('632d7127fba8c5fa76f5dd951db89325c6ca3f89')
-install=${_pkgbase}.install
-
-build() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${_pkgbase} \
---sysconfdir=/etc \
---localstatedir=/var \
---with-gtk=2.0 \
---enable-introspection \
---disable-static
-make
-}
-
-package() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: mate-panel/repos/community-i686/PKGBUILD (from rev 136063, 
mate-panel/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 20:25:40 UTC (rev 136064)
@@ -0,0 +1,39 @@
+# Maintainer : Martin Wimpress c...@flexion.org
+
+_ver=1.10
+_pkgbase=mate-panel
+pkgname=${_pkgbase}
+pkgver=${_ver}.0
+pkgrel=3
+pkgdesc=The MATE Panel (GTK2 version)
+url=http://mate-desktop.org;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus-glib' 'dconf' 'gtk2' 'libwnck' 'libcanberra' 'libice'
+ 'libmateweather=1.10' 'librsvg' 'libsm' 'libsoup' 'libxau'
+ 'mate-menus=1.10' 'mate-desktop=1.10')
+makedepends=('gobject-introspection' 'mate-common' 'yelp-tools')
+optdepends=('yelp: for reading MATE help documents')
+source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
+groups=('mate')
+conflicts=(${_pkgbase}-gtk3)
+sha1sums=('632d7127fba8c5fa76f5dd951db89325c6ca3f89')
+install=${_pkgbase}.install
+
+build() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--with-gtk=2.0 \
+--enable-introspection \
+--disable-static
+make
+}
+
+package() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+make DESTDIR=${pkgdir} install
+}

Deleted: community-i686/mate-panel.install
===
--- community-i686/mate-panel.install   2015-06-28 20:25:32 UTC (rev 136063)
+++ community-i686/mate-panel.install   2015-06-28 20:25:40 UTC (rev 136064)
@@ -1,12 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas/
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: mate-panel/repos/community-i686/mate-panel.install (from rev 136063, 
mate-panel/trunk/mate-panel.install)
===
--- community-i686/mate-panel.install   (rev 0)
+++ community-i686/mate-panel.install   2015-06-28 20:25:40 UTC (rev 

[arch-commits] Commit in mate-panel-gtk3/trunk (PKGBUILD)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 22:30:08
  Author: bgyorgy
Revision: 136066

upgpkg: mate-panel-gtk3 1.10.0-3

Remove unused dependencies

Modified:
  mate-panel-gtk3/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 20:28:10 UTC (rev 136065)
+++ PKGBUILD2015-06-28 20:30:08 UTC (rev 136066)
@@ -4,14 +4,14 @@
 _pkgbase=mate-panel
 pkgname=${_pkgbase}-gtk3
 pkgver=${_ver}.0
-pkgrel=2
+pkgrel=3
 pkgdesc=The MATE Panel (GTK3 version [EXPERIMENTAL])
 url=http://mate-desktop.org;
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('caja-gtk3=1.10' 'dbus-glib' 'dconf' 'gtk3' 'libwnck3' 'libcanberra' 
'libice'
- 'libmateweather-gtk3=1.10' 'librsvg' 'libsm' 'libsoup' 'libxau' 
'marco-gtk3=1.10'
- 'mate-menus=1.10' 'mate-desktop-gtk3=1.10' 
'mate-session-manager-gtk3=1.10')
+depends=('dbus-glib' 'dconf' 'gtk3' 'libwnck3' 'libcanberra' 'libice'
+ 'libmateweather-gtk3=1.10' 'librsvg' 'libsm' 'libsoup' 'libxau'
+ 'mate-menus=1.10' 'mate-desktop-gtk3=1.10')
 makedepends=('gobject-introspection' 'mate-common' 'yelp-tools')
 optdepends=('yelp: for reading MATE help documents')
 
source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)


[arch-commits] Commit in mate-panel-gtk3/repos (8 files)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 22:30:16
  Author: bgyorgy
Revision: 136067

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

Added:
  mate-panel-gtk3/repos/community-i686/PKGBUILD
(from rev 136066, mate-panel-gtk3/trunk/PKGBUILD)
  mate-panel-gtk3/repos/community-i686/mate-panel.install
(from rev 136066, mate-panel-gtk3/trunk/mate-panel.install)
  mate-panel-gtk3/repos/community-x86_64/PKGBUILD
(from rev 136066, mate-panel-gtk3/trunk/PKGBUILD)
  mate-panel-gtk3/repos/community-x86_64/mate-panel.install
(from rev 136066, mate-panel-gtk3/trunk/mate-panel.install)
Deleted:
  mate-panel-gtk3/repos/community-i686/PKGBUILD
  mate-panel-gtk3/repos/community-i686/mate-panel.install
  mate-panel-gtk3/repos/community-x86_64/PKGBUILD
  mate-panel-gtk3/repos/community-x86_64/mate-panel.install

-+
 /PKGBUILD   |   78 ++
 /mate-panel.install |   24 ++
 community-i686/PKGBUILD |   39 -
 community-i686/mate-panel.install   |   12 -
 community-x86_64/PKGBUILD   |   39 -
 community-x86_64/mate-panel.install |   12 -
 6 files changed, 102 insertions(+), 102 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 20:30:08 UTC (rev 136066)
+++ community-i686/PKGBUILD 2015-06-28 20:30:16 UTC (rev 136067)
@@ -1,39 +0,0 @@
-# Maintainer : Martin Wimpress c...@flexion.org
-
-_ver=1.10
-_pkgbase=mate-panel
-pkgname=${_pkgbase}-gtk3
-pkgver=${_ver}.0
-pkgrel=2
-pkgdesc=The MATE Panel (GTK3 version [EXPERIMENTAL])
-url=http://mate-desktop.org;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('caja-gtk3=1.10' 'dbus-glib' 'dconf' 'gtk3' 'libwnck3' 'libcanberra' 
'libice'
- 'libmateweather-gtk3=1.10' 'librsvg' 'libsm' 'libsoup' 'libxau' 
'marco-gtk3=1.10'
- 'mate-menus=1.10' 'mate-desktop-gtk3=1.10' 
'mate-session-manager-gtk3=1.10')
-makedepends=('gobject-introspection' 'mate-common' 'yelp-tools')
-optdepends=('yelp: for reading MATE help documents')
-source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
-groups=('mate-gtk3')
-conflicts=(${_pkgbase})
-sha1sums=('632d7127fba8c5fa76f5dd951db89325c6ca3f89')
-install=${_pkgbase}.install
-
-build() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${_pkgbase} \
---sysconfdir=/etc \
---localstatedir=/var \
---with-gtk=3.0 \
---enable-introspection \
---disable-static
-make
-}
-
-package() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: mate-panel-gtk3/repos/community-i686/PKGBUILD (from rev 136066, 
mate-panel-gtk3/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 20:30:16 UTC (rev 136067)
@@ -0,0 +1,39 @@
+# Maintainer : Martin Wimpress c...@flexion.org
+
+_ver=1.10
+_pkgbase=mate-panel
+pkgname=${_pkgbase}-gtk3
+pkgver=${_ver}.0
+pkgrel=3
+pkgdesc=The MATE Panel (GTK3 version [EXPERIMENTAL])
+url=http://mate-desktop.org;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus-glib' 'dconf' 'gtk3' 'libwnck3' 'libcanberra' 'libice'
+ 'libmateweather-gtk3=1.10' 'librsvg' 'libsm' 'libsoup' 'libxau'
+ 'mate-menus=1.10' 'mate-desktop-gtk3=1.10')
+makedepends=('gobject-introspection' 'mate-common' 'yelp-tools')
+optdepends=('yelp: for reading MATE help documents')
+source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
+groups=('mate-gtk3')
+conflicts=(${_pkgbase})
+sha1sums=('632d7127fba8c5fa76f5dd951db89325c6ca3f89')
+install=${_pkgbase}.install
+
+build() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--with-gtk=3.0 \
+--enable-introspection \
+--disable-static
+make
+}
+
+package() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+make DESTDIR=${pkgdir} install
+}

Deleted: community-i686/mate-panel.install
===
--- community-i686/mate-panel.install   2015-06-28 20:30:08 UTC (rev 136066)
+++ community-i686/mate-panel.install   2015-06-28 20:30:16 UTC (rev 136067)
@@ -1,12 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas/
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: mate-panel-gtk3/repos/community-i686/mate-panel.install (from rev 
136066, mate-panel-gtk3/trunk/mate-panel.install)

[arch-commits] Commit in mate-media/repos (6 files)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 22:45:23
  Author: bgyorgy
Revision: 136070

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

Added:
  mate-media/repos/community-i686/PKGBUILD
(from rev 136069, mate-media/trunk/PKGBUILD)
  mate-media/repos/community-x86_64/PKGBUILD
(from rev 136069, mate-media/trunk/PKGBUILD)
Deleted:
  mate-media/repos/community-i686/PKGBUILD
  mate-media/repos/community-i686/mate-media-gstreamer.install
  mate-media/repos/community-x86_64/PKGBUILD
  mate-media/repos/community-x86_64/mate-media-gstreamer.install

---+
 /PKGBUILD |   70 
 community-i686/PKGBUILD   |   35 
 community-i686/mate-media-gstreamer.install   |   12 
 community-x86_64/PKGBUILD |   35 
 community-x86_64/mate-media-gstreamer.install |   12 
 5 files changed, 70 insertions(+), 94 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 20:45:15 UTC (rev 136069)
+++ community-i686/PKGBUILD 2015-06-28 20:45:23 UTC (rev 136070)
@@ -1,35 +0,0 @@
-# Maintainer : Martin Wimpress c...@flexion.org
-
-_ver=1.10
-_pkgbase=mate-media
-pkgname=(${_pkgbase})
-pkgver=${_ver}.0
-pkgrel=1
-url=http://mate-desktop.org;
-pkgdesc=MATE Media Tools  (GTK2 version)
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gtk2' 'libcanberra-pulse' 'libmatemixer' 'libunique' 'marco=1.10' 
'mate-desktop=1.10')
-makedepends=('mate-common' 'mate-panel=1.10' 'mate-settings-daemon=1.10')
-source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
-groups=('mate-extra')
-replaces=(${_pkgbase}-gstreamer ${_pkgbase}-pulseaudio)
-conflicts=(${_pkgbase}-gtk3 ${_pkgbase}-gstreamer ${_pkgbase}-pulseaudio)
-sha1sums=('702b6aa48312eb58891b6cca887bd112e7f0b86c')
-
-build() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/${_pkgbase} \
---localstatedir=/var \
---with-gtk=2.0 \
---disable-static
-make
-}
-
-package() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: mate-media/repos/community-i686/PKGBUILD (from rev 136069, 
mate-media/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 20:45:23 UTC (rev 136070)
@@ -0,0 +1,35 @@
+# Maintainer : Martin Wimpress c...@flexion.org
+
+_ver=1.10
+_pkgbase=mate-media
+pkgname=(${_pkgbase})
+pkgver=${_ver}.0
+pkgrel=2
+url=http://mate-desktop.org;
+pkgdesc=MATE Media Tools (GTK2 version)
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtk2' 'libcanberra' 'libmatemixer' 'libunique' 'mate-desktop=1.10')
+makedepends=('mate-common')
+source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
+groups=('mate-extra')
+replaces=(${_pkgbase}-gstreamer ${_pkgbase}-pulseaudio)
+conflicts=(${_pkgbase}-gtk3 ${_pkgbase}-gstreamer ${_pkgbase}-pulseaudio)
+sha1sums=('702b6aa48312eb58891b6cca887bd112e7f0b86c')
+
+build() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/${_pkgbase} \
+--localstatedir=/var \
+--with-gtk=2.0 \
+--disable-static
+make
+}
+
+package() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+make DESTDIR=${pkgdir} install
+}

Deleted: community-i686/mate-media-gstreamer.install
===
--- community-i686/mate-media-gstreamer.install 2015-06-28 20:45:15 UTC (rev 
136069)
+++ community-i686/mate-media-gstreamer.install 2015-06-28 20:45:23 UTC (rev 
136070)
@@ -1,12 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas/
-gtk-update-icon-cache -q -t -f /usr/share/icons/mate
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-06-28 20:45:15 UTC (rev 136069)
+++ community-x86_64/PKGBUILD   2015-06-28 20:45:23 UTC (rev 136070)
@@ -1,35 +0,0 @@
-# Maintainer : Martin Wimpress c...@flexion.org
-
-_ver=1.10
-_pkgbase=mate-media
-pkgname=(${_pkgbase})
-pkgver=${_ver}.0
-pkgrel=1
-url=http://mate-desktop.org;
-pkgdesc=MATE Media Tools  (GTK2 version)
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gtk2' 'libcanberra-pulse' 'libmatemixer' 'libunique' 'marco=1.10' 
'mate-desktop=1.10')
-makedepends=('mate-common' 'mate-panel=1.10' 'mate-settings-daemon=1.10')
-source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
-groups=('mate-extra')
-replaces=(${_pkgbase}-gstreamer 

[arch-commits] Commit in mate-media-gtk3/repos (4 files)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 22:47:37
  Author: bgyorgy
Revision: 136072

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

Added:
  mate-media-gtk3/repos/community-i686/PKGBUILD
(from rev 136071, mate-media-gtk3/trunk/PKGBUILD)
  mate-media-gtk3/repos/community-x86_64/PKGBUILD
(from rev 136071, mate-media-gtk3/trunk/PKGBUILD)
Deleted:
  mate-media-gtk3/repos/community-i686/PKGBUILD
  mate-media-gtk3/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   68 
 community-i686/PKGBUILD   |   35 --
 community-x86_64/PKGBUILD |   35 --
 3 files changed, 68 insertions(+), 70 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 20:47:28 UTC (rev 136071)
+++ community-i686/PKGBUILD 2015-06-28 20:47:37 UTC (rev 136072)
@@ -1,35 +0,0 @@
-# Maintainer : Martin Wimpress c...@flexion.org
-
-_ver=1.10
-_pkgbase=mate-media
-pkgname=(${_pkgbase}-gtk3)
-pkgver=${_ver}.0
-pkgrel=1
-url=http://mate-desktop.org;
-pkgdesc=MATE Media Tools (GTK3 version [EXPERIMENTAL])
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gtk3' 'libcanberra-pulse' 'libmatemixer' 'libunique3' 
'marco-gtk3=1.10'
- 'mate-desktop-gtk3=1.10')
-makedepends=('mate-common' 'mate-panel-gtk3=1.10' 
'mate-settings-daemon-gtk3=1.10')
-source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
-groups=('mate-extra-gtk3')
-conflicts=(${_pkgbase}${_pkgbase}-gstreamer ${_pkgbase}-pulseaudio)
-sha1sums=('702b6aa48312eb58891b6cca887bd112e7f0b86c')
-
-build() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/${_pkgbase} \
---localstatedir=/var \
---with-gtk=3.0 \
---disable-static
-make
-}
-
-package() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: mate-media-gtk3/repos/community-i686/PKGBUILD (from rev 136071, 
mate-media-gtk3/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 20:47:37 UTC (rev 136072)
@@ -0,0 +1,34 @@
+# Maintainer : Martin Wimpress c...@flexion.org
+
+_ver=1.10
+_pkgbase=mate-media
+pkgname=(${_pkgbase}-gtk3)
+pkgver=${_ver}.0
+pkgrel=2
+url=http://mate-desktop.org;
+pkgdesc=MATE Media Tools (GTK3 version [EXPERIMENTAL])
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtk3' 'libcanberra' 'libmatemixer' 'libunique3' 
'mate-desktop-gtk3=1.10')
+makedepends=('mate-common')
+source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
+groups=('mate-extra-gtk3')
+conflicts=(${_pkgbase}${_pkgbase}-gstreamer ${_pkgbase}-pulseaudio)
+sha1sums=('702b6aa48312eb58891b6cca887bd112e7f0b86c')
+
+build() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/${_pkgbase} \
+--localstatedir=/var \
+--with-gtk=3.0 \
+--disable-static
+make
+}
+
+package() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+make DESTDIR=${pkgdir} install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-06-28 20:47:28 UTC (rev 136071)
+++ community-x86_64/PKGBUILD   2015-06-28 20:47:37 UTC (rev 136072)
@@ -1,35 +0,0 @@
-# Maintainer : Martin Wimpress c...@flexion.org
-
-_ver=1.10
-_pkgbase=mate-media
-pkgname=(${_pkgbase}-gtk3)
-pkgver=${_ver}.0
-pkgrel=1
-url=http://mate-desktop.org;
-pkgdesc=MATE Media Tools (GTK3 version [EXPERIMENTAL])
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gtk3' 'libcanberra-pulse' 'libmatemixer' 'libunique3' 
'marco-gtk3=1.10'
- 'mate-desktop-gtk3=1.10')
-makedepends=('mate-common' 'mate-panel-gtk3=1.10' 
'mate-settings-daemon-gtk3=1.10')
-source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
-groups=('mate-extra-gtk3')
-conflicts=(${_pkgbase}${_pkgbase}-gstreamer ${_pkgbase}-pulseaudio)
-sha1sums=('702b6aa48312eb58891b6cca887bd112e7f0b86c')
-
-build() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/${_pkgbase} \
---localstatedir=/var \
---with-gtk=3.0 \
---disable-static
-make
-}
-
-package() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: mate-media-gtk3/repos/community-x86_64/PKGBUILD (from rev 136071, 
mate-media-gtk3/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-06-28 20:47:37 UTC (rev 

[arch-commits] Commit in mate-media-gtk3/trunk (PKGBUILD)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 22:47:28
  Author: bgyorgy
Revision: 136071

upgpkg: mate-media-gtk3 1.10.0-2

Remove unused dependencies

Modified:
  mate-media-gtk3/trunk/PKGBUILD

--+
 PKGBUILD |7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 20:45:23 UTC (rev 136070)
+++ PKGBUILD2015-06-28 20:47:28 UTC (rev 136071)
@@ -4,14 +4,13 @@
 _pkgbase=mate-media
 pkgname=(${_pkgbase}-gtk3)
 pkgver=${_ver}.0
-pkgrel=1
+pkgrel=2
 url=http://mate-desktop.org;
 pkgdesc=MATE Media Tools (GTK3 version [EXPERIMENTAL])
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('gtk3' 'libcanberra-pulse' 'libmatemixer' 'libunique3' 
'marco-gtk3=1.10'
- 'mate-desktop-gtk3=1.10')
-makedepends=('mate-common' 'mate-panel-gtk3=1.10' 
'mate-settings-daemon-gtk3=1.10')
+depends=('gtk3' 'libcanberra' 'libmatemixer' 'libunique3' 
'mate-desktop-gtk3=1.10')
+makedepends=('mate-common')
 
source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
 groups=('mate-extra-gtk3')
 conflicts=(${_pkgbase}${_pkgbase}-gstreamer ${_pkgbase}-pulseaudio)


[arch-commits] Commit in mate-control-center/trunk (PKGBUILD)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 23:04:53
  Author: bgyorgy
Revision: 136081

upgpkg: mate-control-center 1.10.0-3

Remove unused dependency on caja

Modified:
  mate-control-center/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 21:04:15 UTC (rev 136080)
+++ PKGBUILD2015-06-28 21:04:53 UTC (rev 136081)
@@ -4,13 +4,13 @@
 _pkgbase=mate-control-center
 pkgname=${_pkgbase}
 pkgver=${_ver}.0
-pkgrel=2
+pkgrel=3
 pkgdesc=The Control Center for MATE (GTK2 version)
 url=http://mate-desktop.org;
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('caja=1.10' 'dbus-glib' 'dconf' 'desktop-file-utils' 
'gsettings-desktop-schemas'
- 'gtk2' 'mate-desktop=1.10' 'mate-icon-theme' 'mate-menus=1.10' 
'mate-settings-daemon=1.10'
+depends=('dbus-glib' 'dconf' 'desktop-file-utils' 'gsettings-desktop-schemas' 
'gtk2'
+ 'mate-desktop=1.10' 'mate-icon-theme' 'mate-menus=1.10' 
'mate-settings-daemon=1.10'
  'marco=1.10' 'libgtop' 'libmatekbd=1.10' 'libunique' 'librsvg' 
'libxss'
  'libxt' 'startup-notification')
 makedepends=('docbook2x' 'mate-common' 'yelp-tools')


[arch-commits] Commit in mate-control-center/repos (16 files)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 23:05:04
  Author: bgyorgy
Revision: 136082

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

Added:
  
mate-control-center/repos/community-i686/0001_fix_keyboard_and_mouse_properties_windows.diff
(from rev 136081, 
mate-control-center/trunk/0001_fix_keyboard_and_mouse_properties_windows.diff)
  
mate-control-center/repos/community-i686/0002_adjust_mate-about-me_dialog_window.diff
(from rev 136081, 
mate-control-center/trunk/0002_adjust_mate-about-me_dialog_window.diff)
  mate-control-center/repos/community-i686/PKGBUILD
(from rev 136081, mate-control-center/trunk/PKGBUILD)
  mate-control-center/repos/community-i686/mate-control-center.install
(from rev 136081, mate-control-center/trunk/mate-control-center.install)
  
mate-control-center/repos/community-x86_64/0001_fix_keyboard_and_mouse_properties_windows.diff
(from rev 136081, 
mate-control-center/trunk/0001_fix_keyboard_and_mouse_properties_windows.diff)
  
mate-control-center/repos/community-x86_64/0002_adjust_mate-about-me_dialog_window.diff
(from rev 136081, 
mate-control-center/trunk/0002_adjust_mate-about-me_dialog_window.diff)
  mate-control-center/repos/community-x86_64/PKGBUILD
(from rev 136081, mate-control-center/trunk/PKGBUILD)
  mate-control-center/repos/community-x86_64/mate-control-center.install
(from rev 136081, mate-control-center/trunk/mate-control-center.install)
Deleted:
  
mate-control-center/repos/community-i686/0001_fix_keyboard_and_mouse_properties_windows.diff
  
mate-control-center/repos/community-i686/0002_adjust_mate-about-me_dialog_window.diff
  mate-control-center/repos/community-i686/PKGBUILD
  mate-control-center/repos/community-i686/mate-control-center.install
  
mate-control-center/repos/community-x86_64/0001_fix_keyboard_and_mouse_properties_windows.diff
  
mate-control-center/repos/community-x86_64/0002_adjust_mate-about-me_dialog_window.diff
  mate-control-center/repos/community-x86_64/PKGBUILD
  mate-control-center/repos/community-x86_64/mate-control-center.install

--+
 /0001_fix_keyboard_and_mouse_properties_windows.diff |  216 
++
 /0002_adjust_mate-about-me_dialog_window.diff|   26 +
 /PKGBUILD|  106 

 /mate-control-center.install |   28 +
 community-i686/0001_fix_keyboard_and_mouse_properties_windows.diff   |  108 
-
 community-i686/0002_adjust_mate-about-me_dialog_window.diff  |   13 
 community-i686/PKGBUILD  |   53 --
 community-i686/mate-control-center.install   |   14 
 community-x86_64/0001_fix_keyboard_and_mouse_properties_windows.diff |  108 
-
 community-x86_64/0002_adjust_mate-about-me_dialog_window.diff|   13 
 community-x86_64/PKGBUILD|   53 --
 community-x86_64/mate-control-center.install |   14 
 12 files changed, 376 insertions(+), 376 deletions(-)

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


[arch-commits] Commit in atril-gtk3/trunk (PKGBUILD)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 23:42:20
  Author: bgyorgy
Revision: 136091

upgpkg: atril-gtk3 1.10.0-1

7z and rar files are supported via bsdtar now

Modified:
  atril-gtk3/trunk/PKGBUILD

--+
 PKGBUILD |2 --
 1 file changed, 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 21:42:03 UTC (rev 136090)
+++ PKGBUILD2015-06-28 21:42:20 UTC (rev 136091)
@@ -17,9 +17,7 @@
 optdepends=('caja-gtk3: Document Properties extension'
 'djvulibre: DjVu support'
 'libgxps: XPS support'
-'p7zip: cbz and cb7 compressed comic books'
 'texlive-bin: DVI support'
-'unrar: cbr compressed comic books'
 'yelp: for reading MATE help documents')
 groups=('mate-extra-gtk3')
 conflicts=(${_pkgbase})


[arch-commits] Commit in atril/trunk (PKGBUILD)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 23:42:03
  Author: bgyorgy
Revision: 136090

upgpkg: atril 1.10.0-1

7z and rar files are supported via bsdtar now

Modified:
  atril/trunk/PKGBUILD

--+
 PKGBUILD |2 --
 1 file changed, 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 21:28:10 UTC (rev 136089)
+++ PKGBUILD2015-06-28 21:42:03 UTC (rev 136090)
@@ -16,9 +16,7 @@
 optdepends=('caja: Document Properties extension'
 'djvulibre: DjVu support'
 'libgxps: XPS support'
-'p7zip: cbz and cb7 compressed comic books'
 'texlive-bin: DVI support'
-'unrar: cbr compressed comic books'
 'yelp: for reading MATE help documents')
 groups=('mate-extra')
 conflicts=(${_pkgbase}-gtk3)


[arch-commits] Commit in (6 files)

2015-07-04 Thread Balló György
Date: Sunday, July 5, 2015 @ 00:49:45
  Author: bgyorgy
Revision: 136423

Move blueberry from AUR as optional dependency for Cinnamon

Added:
  blueberry/
  blueberry/trunk/
  blueberry/trunk/PKGBUILD
  blueberry/trunk/blueberry.install
  blueberry/trunk/detect-more-de.patch
  blueberry/trunk/fix-monitoring-settings.patch

---+
 PKGBUILD  |   49 
 blueberry.install |   12 +
 detect-more-de.patch  |   31 +
 fix-monitoring-settings.patch |   30 
 4 files changed, 122 insertions(+)

Added: blueberry/trunk/PKGBUILD
===
--- blueberry/trunk/PKGBUILD(rev 0)
+++ blueberry/trunk/PKGBUILD2015-07-04 22:49:45 UTC (rev 136423)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Balló György ballogyor+arch at gmail dot com
+# Contributer: Sam Burgos jsbm1089 at gmail dot com
+
+pkgname=blueberry
+pkgver=1.0.9
+pkgrel=1
+pkgdesc=Bluetooth configuration tool
+arch=('any')
+url=https://github.com/linuxmint/blueberry;
+license=('GPL')
+depends=('gnome-bluetooth' 'python2-gobject' 'rfkill')
+install=$pkgname.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/blueberry/archive/$pkgver.tar.gz
+fix-monitoring-settings.patch
+detect-more-de.patch)
+md5sums=('c5c84b09df2a8a4ffeff85d4eeb28fb7'
+ '3824201f2b939bea0e522140c292d56e'
+ '71977387ffb8bfa1415fa10353c821b6')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Fix monitoring settings
+  patch -Np1 -i ../fix-monitoring-settings.patch
+
+  # Detect more DEs via XDG_CURRENT_DESKTOP
+  patch -Np1 -i ../detect-more-de.patch
+
+  # Hide in GNOME, KDE and Unity
+  for i in etc/xdg/autostart/blueberry-tray.desktop 
usr/share/applications/blueberry.desktop
+do echo NotShowIn=GNOME;KDE;Unity;  $i; done
+
+  # Make blueberry-tray executable
+  chmod +x usr/bin/blueberry-tray
+
+  # Python2 fix
+  sed -i 's@^#!.*python$@#!/usr/bin/python2@' usr/bin/blueberry{,-tray}
+}
+
+build() {
+  cd $pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  cp -r etc usr $pkgdir
+}


Property changes on: blueberry/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: blueberry/trunk/blueberry.install
===
--- blueberry/trunk/blueberry.install   (rev 0)
+++ blueberry/trunk/blueberry.install   2015-07-04 22:49:45 UTC (rev 136423)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Added: blueberry/trunk/detect-more-de.patch
===
--- blueberry/trunk/detect-more-de.patch(rev 0)
+++ blueberry/trunk/detect-more-de.patch2015-07-04 22:49:45 UTC (rev 
136423)
@@ -0,0 +1,31 @@
+From 96923856d28fab95151956fb6966ba3487e302ac Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Gy=C3=B6rgy=20Ball=C3=B3?= ballog...@gmail.com
+Date: Sat, 4 Jul 2015 11:39:12 +0200
+Subject: [PATCH] Detect more DEs via XDG_CURRENT_DESKTOP
+
+And add support for LXDE.
+---
+ usr/lib/blueberry/blueberry.py | 6 --
+ 1 file changed, 4 insertions(+), 2 deletions(-)
+
+diff --git a/usr/lib/blueberry/blueberry.py b/usr/lib/blueberry/blueberry.py
+index f469f3b..722581f 100755
+--- a/usr/lib/blueberry/blueberry.py
 b/usr/lib/blueberry/blueberry.py
+@@ -30,12 +30,14 @@
+ CONF_TOOLS[sound] = pavucontrol
+ else:
+ CONF_TOOLS[sound] = xfce4-mixer
+-elif Muffin in wm_info:
++elif Muffin in wm_info or xdg_current_desktop == X-Cinnamon:
+ CONF_TOOLS = {sound: cinnamon-settings sound, keyboard: 
cinnamon-settings keyboard, mouse: cinnamon-settings mouse}
+-elif Mutter in wm_info:
++elif Mutter in wm_info or GNOME in xdg_current_desktop:
+ CONF_TOOLS = {sound: gnome-control-center sound, keyboard: 
gnome-control-center keyboard, mouse: gnome-control-center mouse}
+ elif Unity in wm_info or xdg_current_desktop == Unity:
+ CONF_TOOLS = {sound: unity-control-center sound, keyboard: 
unity-control-center keyboard, mouse: unity-control-center mouse}
++elif xdg_current_desktop == LXDE:
++CONF_TOOLS = {sound: pavucontrol, keyboard: lxinput, mouse: 
lxinput}
+ else:
+ print Warning: DE could not be detected!
+ CONF_TOOLS = {}

Added: blueberry/trunk/fix-monitoring-settings.patch
===
--- blueberry/trunk/fix-monitoring-settings.patch   
(rev 0)
+++ blueberry/trunk/fix-monitoring-settings.patch   2015-07-04 22:49:45 UTC 
(rev 136423)
@@ -0,0 +1,30 @@
+From

[arch-commits] Commit in blueman (7 files)

2015-07-04 Thread Balló György
Date: Sunday, July 5, 2015 @ 00:32:57
  Author: bgyorgy
Revision: 136422

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

Added:
  blueman/repos/
  blueman/repos/community-i686/
  blueman/repos/community-i686/PKGBUILD
(from rev 136421, blueman/trunk/PKGBUILD)
  blueman/repos/community-i686/blueman.install
(from rev 136421, blueman/trunk/blueman.install)
  blueman/repos/community-x86_64/
  blueman/repos/community-x86_64/PKGBUILD
(from rev 136421, blueman/trunk/PKGBUILD)
  blueman/repos/community-x86_64/blueman.install
(from rev 136421, blueman/trunk/blueman.install)

--+
 community-i686/PKGBUILD  |   48 +
 community-i686/blueman.install   |   12 +
 community-x86_64/PKGBUILD|   48 +
 community-x86_64/blueman.install |   12 +
 4 files changed, 120 insertions(+)

Copied: blueman/repos/community-i686/PKGBUILD (from rev 136421, 
blueman/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2015-07-04 22:32:57 UTC (rev 136422)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Balló György ballogyor+arch at gmail dot com
+# Contributer: Arthur Zamarin arthur...@gmail.com
+# Contributer: Martin Wimpress c...@flexion.org
+
+pkgname=blueman
+pkgver=2.0
+pkgrel=3
+pkgdesc=GTK+ Bluetooth Manager
+arch=('i686' 'x86_64')
+url=https://github.com/blueman-project/blueman;
+license=('GPL')
+depends=('bluez' 'bluez-libs' 'gtk3' 'libnotify' 'python-cairo' 'python-dbus' 
'python-gobject')
+makedepends=('cython' 'intltool')
+optdepends=('dnsmasq: Network Access Point (NAP) support'
+'networkmanager: Dial Up Networking (DUN) and Personal Area 
Networking (PAN) support'
+'pulseaudio-bluetooth: audio devices support')
+install=$pkgname.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/blueman-project/$pkgname/archive/$pkgver.tar.gz)
+sha256sums=('3f6dc827c4410f128f75a15672af8dc76c5c041f6d639d5ab19b15abeb42ff74')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Fix path for bluetoothd
+  sed -i 's|/usr/sbin/bluetoothd|/usr/lib/bluetooth/bluetoothd|' 
apps/blueman-report
+
+  # Fix non-standard icon names
+  sed -i 's/gtk-find/edit-find/' data/ui/device-list-widget.ui
+  sed -i 's/mouse/input-mouse/' blueman/services/Input.py
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/$pkgname \
+--disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: blueman/repos/community-i686/blueman.install (from rev 136421, 
blueman/trunk/blueman.install)
===
--- repos/community-i686/blueman.install(rev 0)
+++ repos/community-i686/blueman.install2015-07-04 22:32:57 UTC (rev 
136422)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: blueman/repos/community-x86_64/PKGBUILD (from rev 136421, 
blueman/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2015-07-04 22:32:57 UTC (rev 136422)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Balló György ballogyor+arch at gmail dot com
+# Contributer: Arthur Zamarin arthur...@gmail.com
+# Contributer: Martin Wimpress c...@flexion.org
+
+pkgname=blueman
+pkgver=2.0
+pkgrel=3
+pkgdesc=GTK+ Bluetooth Manager
+arch=('i686' 'x86_64')
+url=https://github.com/blueman-project/blueman;
+license=('GPL')
+depends=('bluez' 'bluez-libs' 'gtk3' 'libnotify' 'python-cairo' 'python-dbus' 
'python-gobject')
+makedepends=('cython' 'intltool')
+optdepends=('dnsmasq: Network Access Point (NAP) support'
+'networkmanager: Dial Up Networking (DUN) and Personal Area 
Networking (PAN) support'
+'pulseaudio-bluetooth: audio devices support')
+install=$pkgname.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/blueman-project/$pkgname/archive/$pkgver.tar.gz)
+sha256sums=('3f6dc827c4410f128f75a15672af8dc76c5c041f6d639d5ab19b15abeb42ff74')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Fix path for bluetoothd
+  sed -i 's|/usr/sbin/bluetoothd|/usr/lib/bluetooth/bluetoothd|' 
apps/blueman-report
+
+  # Fix non-standard icon names
+  sed -i 's/gtk-find/edit-find/' data/ui/device-list-widget.ui
+  sed -i 's/mouse/input-mouse/' blueman/services/Input.py
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc

[arch-commits] Commit in (4 files)

2015-07-04 Thread Balló György
Date: Sunday, July 5, 2015 @ 00:29:02
  Author: bgyorgy
Revision: 136421

Move blueman from AUR with 64 votes and 3.69 % on pkgstats

Added:
  blueman/
  blueman/trunk/
  blueman/trunk/PKGBUILD
  blueman/trunk/blueman.install

-+
 PKGBUILD|   48 
 blueman.install |   12 
 2 files changed, 60 insertions(+)

Added: blueman/trunk/PKGBUILD
===
--- blueman/trunk/PKGBUILD  (rev 0)
+++ blueman/trunk/PKGBUILD  2015-07-04 22:29:02 UTC (rev 136421)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Balló György ballogyor+arch at gmail dot com
+# Contributer: Arthur Zamarin arthur...@gmail.com
+# Contributer: Martin Wimpress c...@flexion.org
+
+pkgname=blueman
+pkgver=2.0
+pkgrel=3
+pkgdesc=GTK+ Bluetooth Manager
+arch=('i686' 'x86_64')
+url=https://github.com/blueman-project/blueman;
+license=('GPL')
+depends=('bluez' 'bluez-libs' 'gtk3' 'libnotify' 'python-cairo' 'python-dbus' 
'python-gobject')
+makedepends=('cython' 'intltool')
+optdepends=('dnsmasq: Network Access Point (NAP) support'
+'networkmanager: Dial Up Networking (DUN) and Personal Area 
Networking (PAN) support'
+'pulseaudio-bluetooth: audio devices support')
+install=$pkgname.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/blueman-project/$pkgname/archive/$pkgver.tar.gz)
+sha256sums=('3f6dc827c4410f128f75a15672af8dc76c5c041f6d639d5ab19b15abeb42ff74')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Fix path for bluetoothd
+  sed -i 's|/usr/sbin/bluetoothd|/usr/lib/bluetooth/bluetoothd|' 
apps/blueman-report
+
+  # Fix non-standard icon names
+  sed -i 's/gtk-find/edit-find/' data/ui/device-list-widget.ui
+  sed -i 's/mouse/input-mouse/' blueman/services/Input.py
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/$pkgname \
+--disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}


Property changes on: blueman/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: blueman/trunk/blueman.install
===
--- blueman/trunk/blueman.install   (rev 0)
+++ blueman/trunk/blueman.install   2015-07-04 22:29:02 UTC (rev 136421)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


[arch-commits] Commit in blueberry (6 files)

2015-07-04 Thread Balló György
Date: Sunday, July 5, 2015 @ 00:51:08
  Author: bgyorgy
Revision: 136424

archrelease: copy trunk to community-any

Added:
  blueberry/repos/
  blueberry/repos/community-any/
  blueberry/repos/community-any/PKGBUILD
(from rev 136423, blueberry/trunk/PKGBUILD)
  blueberry/repos/community-any/blueberry.install
(from rev 136423, blueberry/trunk/blueberry.install)
  blueberry/repos/community-any/detect-more-de.patch
(from rev 136423, blueberry/trunk/detect-more-de.patch)
  blueberry/repos/community-any/fix-monitoring-settings.patch
(from rev 136423, blueberry/trunk/fix-monitoring-settings.patch)

---+
 PKGBUILD  |   49 
 blueberry.install |   12 +
 detect-more-de.patch  |   31 +
 fix-monitoring-settings.patch |   30 
 4 files changed, 122 insertions(+)

Copied: blueberry/repos/community-any/PKGBUILD (from rev 136423, 
blueberry/trunk/PKGBUILD)
===
--- repos/community-any/PKGBUILD(rev 0)
+++ repos/community-any/PKGBUILD2015-07-04 22:51:08 UTC (rev 136424)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Balló György ballogyor+arch at gmail dot com
+# Contributer: Sam Burgos jsbm1089 at gmail dot com
+
+pkgname=blueberry
+pkgver=1.0.9
+pkgrel=1
+pkgdesc=Bluetooth configuration tool
+arch=('any')
+url=https://github.com/linuxmint/blueberry;
+license=('GPL')
+depends=('gnome-bluetooth' 'python2-gobject' 'rfkill')
+install=$pkgname.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/blueberry/archive/$pkgver.tar.gz
+fix-monitoring-settings.patch
+detect-more-de.patch)
+md5sums=('c5c84b09df2a8a4ffeff85d4eeb28fb7'
+ '3824201f2b939bea0e522140c292d56e'
+ '71977387ffb8bfa1415fa10353c821b6')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Fix monitoring settings
+  patch -Np1 -i ../fix-monitoring-settings.patch
+
+  # Detect more DEs via XDG_CURRENT_DESKTOP
+  patch -Np1 -i ../detect-more-de.patch
+
+  # Hide in GNOME, KDE and Unity
+  for i in etc/xdg/autostart/blueberry-tray.desktop 
usr/share/applications/blueberry.desktop
+do echo NotShowIn=GNOME;KDE;Unity;  $i; done
+
+  # Make blueberry-tray executable
+  chmod +x usr/bin/blueberry-tray
+
+  # Python2 fix
+  sed -i 's@^#!.*python$@#!/usr/bin/python2@' usr/bin/blueberry{,-tray}
+}
+
+build() {
+  cd $pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  cp -r etc usr $pkgdir
+}

Copied: blueberry/repos/community-any/blueberry.install (from rev 136423, 
blueberry/trunk/blueberry.install)
===
--- repos/community-any/blueberry.install   (rev 0)
+++ repos/community-any/blueberry.install   2015-07-04 22:51:08 UTC (rev 
136424)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: blueberry/repos/community-any/detect-more-de.patch (from rev 136423, 
blueberry/trunk/detect-more-de.patch)
===
--- repos/community-any/detect-more-de.patch(rev 0)
+++ repos/community-any/detect-more-de.patch2015-07-04 22:51:08 UTC (rev 
136424)
@@ -0,0 +1,31 @@
+From 96923856d28fab95151956fb6966ba3487e302ac Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Gy=C3=B6rgy=20Ball=C3=B3?= ballog...@gmail.com
+Date: Sat, 4 Jul 2015 11:39:12 +0200
+Subject: [PATCH] Detect more DEs via XDG_CURRENT_DESKTOP
+
+And add support for LXDE.
+---
+ usr/lib/blueberry/blueberry.py | 6 --
+ 1 file changed, 4 insertions(+), 2 deletions(-)
+
+diff --git a/usr/lib/blueberry/blueberry.py b/usr/lib/blueberry/blueberry.py
+index f469f3b..722581f 100755
+--- a/usr/lib/blueberry/blueberry.py
 b/usr/lib/blueberry/blueberry.py
+@@ -30,12 +30,14 @@
+ CONF_TOOLS[sound] = pavucontrol
+ else:
+ CONF_TOOLS[sound] = xfce4-mixer
+-elif Muffin in wm_info:
++elif Muffin in wm_info or xdg_current_desktop == X-Cinnamon:
+ CONF_TOOLS = {sound: cinnamon-settings sound, keyboard: 
cinnamon-settings keyboard, mouse: cinnamon-settings mouse}
+-elif Mutter in wm_info:
++elif Mutter in wm_info or GNOME in xdg_current_desktop:
+ CONF_TOOLS = {sound: gnome-control-center sound, keyboard: 
gnome-control-center keyboard, mouse: gnome-control-center mouse}
+ elif Unity in wm_info or xdg_current_desktop == Unity:
+ CONF_TOOLS = {sound: unity-control-center sound, keyboard: 
unity-control-center keyboard, mouse: unity-control-center mouse}
++elif xdg_current_desktop == LXDE:
++CONF_TOOLS = {sound: pavucontrol, keyboard: lxinput, mouse: 
lxinput}
+ else:
+ print Warning: DE could not be detected

[arch-commits] Commit in cinnamon/trunk (PKGBUILD)

2015-07-04 Thread Balló György
Date: Sunday, July 5, 2015 @ 00:55:01
  Author: bgyorgy
Revision: 136425

Add blueberry and system-config-printer as optional dependencies

Modified:
  cinnamon/trunk/PKGBUILD

--+
 PKGBUILD |2 ++
 1 file changed, 2 insertions(+)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-04 22:51:08 UTC (rev 136424)
+++ PKGBUILD2015-07-04 22:55:01 UTC (rev 136425)
@@ -19,6 +19,8 @@
  'cinnamon-control-center' 'cinnamon-screensaver' 'cinnamon-menus' 
'libgnomekbd'
  'network-manager-applet' 'nemo' 'polkit-gnome')
 makedepends=('gnome-common' 'intltool' 'gtk-doc' 'gobject-introspection')
+optdepends=('blueberry: Bluetooth support'
+'system-config-printer: printer settings')
 options=('!emptydirs')
 install=${pkgname}.install
 
source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/Cinnamon/archive/$pkgver.tar.gz;


[arch-commits] Commit in lxqt-common/trunk (PKGBUILD lxqt-common.install)

2015-07-05 Thread Balló György
Date: Sunday, July 5, 2015 @ 20:23:03
  Author: bgyorgy
Revision: 136447

upgpkg: lxqt-common 0.9.1-2

Apply some upstream fixes (FS#44123)

Added:
  lxqt-common/trunk/lxqt-common.install
Modified:
  lxqt-common/trunk/PKGBUILD

-+
 PKGBUILD|   28 ++--
 lxqt-common.install |   14 ++
 2 files changed, 40 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-05 12:13:07 UTC (rev 136446)
+++ PKGBUILD2015-07-05 18:23:03 UTC (rev 136447)
@@ -3,17 +3,41 @@
 
 pkgname=lxqt-common
 pkgver=0.9.1
-pkgrel=1
+pkgrel=2
 pkgdesc=Common data to run a LXQt session.
 arch=(any)
 url=http://lxqt.org;
 license=(GPL2)
-depends=(bash hicolor-icon-theme)
+depends=(bash hicolor-icon-theme xdg-utils)
 makedepends=(cmake liblxqt qt5-tools)
+install=$pkgname.install
 source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
 sha256sums=(6e572cb10a1619dcfd51bdd33802a71d4556a55ece0bc781c1cb41d972e5734d)
 
 
+prepare() {
+   cd $srcdir/$pkgname-$pkgver
+
+   # Make themes' directories' names lowercase again
+   # https://github.com/lxde/lxqt-common/commit/15fd2d8
+   for i in Ambiance Dark Frost Kde-plasma Light
+   do mv themes/$i `echo themes/$i | tr [:upper:] [:lower:]`
+   done
+
+   # Adjust default wallpaper to default theme
+   # https://github.com/lxde/lxqt-common/commit/3296e2c
+   sed -i 's|light/simple_blue_widescreen.png|frost/numix.png|' \
+   config/pcmanfm-qt/lxqt/settings.conf.in
+
+   # Enable the leave confirmation dialog by default
+   # https://github.com/lxde/lxqt-common/commit/2062770
+   sed -i '/window_manager/a leave_confirmation=true' config/session.conf
+
+   # Set LibreOffice's plugin env var to kde4 
+   # https://github.com/lxde/lxqt-common/commit/a211dd5
+   sed -i 's/SAL_USE_VCLPLUGIN=kde$/SAL_USE_VCLPLUGIN=kde4/' startlxqt.in
+}
+
 build() {
mkdir -p build
cd build

Added: lxqt-common.install
===
--- lxqt-common.install (rev 0)
+++ lxqt-common.install 2015-07-05 18:23:03 UTC (rev 136447)
@@ -0,0 +1,14 @@
+post_install() {
+   xdg-icon-resource forceupdate
+}
+
+post_upgrade() {
+   if [ $(vercmp 0.9.1-2 $2) -eq 1 ]; then
+   printf '== Theme paths have been changed. User configurations 
may need to be updated.\n'
+   fi
+   xdg-icon-resource forceupdate
+}
+
+post_remove() {
+   post_install $1
+}


[arch-commits] Commit in lxqt-common/repos/community-any (3 files)

2015-07-05 Thread Balló György
Date: Sunday, July 5, 2015 @ 20:23:07
  Author: bgyorgy
Revision: 136448

archrelease: copy trunk to community-any

Added:
  lxqt-common/repos/community-any/PKGBUILD
(from rev 136447, lxqt-common/trunk/PKGBUILD)
  lxqt-common/repos/community-any/lxqt-common.install
(from rev 136447, lxqt-common/trunk/lxqt-common.install)
Deleted:
  lxqt-common/repos/community-any/PKGBUILD

-+
 PKGBUILD|   80 --
 lxqt-common.install |   14 
 2 files changed, 66 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-05 18:23:03 UTC (rev 136447)
+++ PKGBUILD2015-07-05 18:23:07 UTC (rev 136448)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche jer...@leclan.ch
-
-pkgname=lxqt-common
-pkgver=0.9.1
-pkgrel=1
-pkgdesc=Common data to run a LXQt session.
-arch=(any)
-url=http://lxqt.org;
-license=(GPL2)
-depends=(bash hicolor-icon-theme)
-makedepends=(cmake liblxqt qt5-tools)
-source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=(6e572cb10a1619dcfd51bdd33802a71d4556a55ece0bc781c1cb41d972e5734d)
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake $srcdir/$pkgname-$pkgver \
-   -DCMAKE_INSTALL_PREFIX=/usr
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR=$pkgdir install
-}

Copied: lxqt-common/repos/community-any/PKGBUILD (from rev 136447, 
lxqt-common/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-05 18:23:07 UTC (rev 136448)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-common
+pkgver=0.9.1
+pkgrel=2
+pkgdesc=Common data to run a LXQt session.
+arch=(any)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(bash hicolor-icon-theme xdg-utils)
+makedepends=(cmake liblxqt qt5-tools)
+install=$pkgname.install
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(6e572cb10a1619dcfd51bdd33802a71d4556a55ece0bc781c1cb41d972e5734d)
+
+
+prepare() {
+   cd $srcdir/$pkgname-$pkgver
+
+   # Make themes' directories' names lowercase again
+   # https://github.com/lxde/lxqt-common/commit/15fd2d8
+   for i in Ambiance Dark Frost Kde-plasma Light
+   do mv themes/$i `echo themes/$i | tr [:upper:] [:lower:]`
+   done
+
+   # Adjust default wallpaper to default theme
+   # https://github.com/lxde/lxqt-common/commit/3296e2c
+   sed -i 's|light/simple_blue_widescreen.png|frost/numix.png|' \
+   config/pcmanfm-qt/lxqt/settings.conf.in
+
+   # Enable the leave confirmation dialog by default
+   # https://github.com/lxde/lxqt-common/commit/2062770
+   sed -i '/window_manager/a leave_confirmation=true' config/session.conf
+
+   # Set LibreOffice's plugin env var to kde4 
+   # https://github.com/lxde/lxqt-common/commit/a211dd5
+   sed -i 's/SAL_USE_VCLPLUGIN=kde$/SAL_USE_VCLPLUGIN=kde4/' startlxqt.in
+}
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}

Copied: lxqt-common/repos/community-any/lxqt-common.install (from rev 136447, 
lxqt-common/trunk/lxqt-common.install)
===
--- lxqt-common.install (rev 0)
+++ lxqt-common.install 2015-07-05 18:23:07 UTC (rev 136448)
@@ -0,0 +1,14 @@
+post_install() {
+   xdg-icon-resource forceupdate
+}
+
+post_upgrade() {
+   if [ $(vercmp 0.9.1-2 $2) -eq 1 ]; then
+   printf '== Theme paths have been changed. User configurations 
may need to be updated.\n'
+   fi
+   xdg-icon-resource forceupdate
+}
+
+post_remove() {
+   post_install $1
+}


[arch-commits] Commit in libqtxdg/trunk (PKGBUILD)

2015-07-06 Thread Balló György
Date: Monday, July 6, 2015 @ 19:07:19
  Author: bgyorgy
Revision: 136472

upgpkg: libqtxdg 1.2.0-2

Add libsm and libxkbcommon-x11 to dependencies. libqtxdg uses 
Qt5Widgets, which uses the xcb platform plugin, which needs these 
libraries. (FS#44005)

Modified:
  libqtxdg/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-06 14:35:20 UTC (rev 136471)
+++ PKGBUILD2015-07-06 17:07:19 UTC (rev 136472)
@@ -3,12 +3,12 @@
 
 pkgname=libqtxdg
 pkgver=1.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc=Library providing freedesktop.org XDG specs implementations for Qt.
 arch=(i686 x86_64)
 url=http://lxqt.org;
 license=(GPL2)
-depends=(qt5-base)
+depends=(libsm libxkbcommon-x11 qt5-base)
 makedepends=(cmake)
 source=(http://downloads.lxqt.org/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz;)
 sha256sums=(88c9b01b56fea205226b53642833963e4f27471de3b90e93e9b650ca28d098d9)


[arch-commits] Commit in libqtxdg/repos (4 files)

2015-07-06 Thread Balló György
Date: Monday, July 6, 2015 @ 19:07:28
  Author: bgyorgy
Revision: 136473

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

Added:
  libqtxdg/repos/community-i686/PKGBUILD
(from rev 136472, libqtxdg/trunk/PKGBUILD)
  libqtxdg/repos/community-x86_64/PKGBUILD
(from rev 136472, libqtxdg/trunk/PKGBUILD)
Deleted:
  libqtxdg/repos/community-i686/PKGBUILD
  libqtxdg/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   60 
 community-i686/PKGBUILD   |   30 --
 community-x86_64/PKGBUILD |   30 --
 3 files changed, 60 insertions(+), 60 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-06 17:07:19 UTC (rev 136472)
+++ community-i686/PKGBUILD 2015-07-06 17:07:28 UTC (rev 136473)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche jer...@leclan.ch
-
-pkgname=libqtxdg
-pkgver=1.2.0
-pkgrel=1
-pkgdesc=Library providing freedesktop.org XDG specs implementations for Qt.
-arch=(i686 x86_64)
-url=http://lxqt.org;
-license=(GPL2)
-depends=(qt5-base)
-makedepends=(cmake)
-source=(http://downloads.lxqt.org/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=(88c9b01b56fea205226b53642833963e4f27471de3b90e93e9b650ca28d098d9)
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake $srcdir/$pkgname-$pkgver \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=lib \
-   -DUSE_QT5=true
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR=$pkgdir install
-}

Copied: libqtxdg/repos/community-i686/PKGBUILD (from rev 136472, 
libqtxdg/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-07-06 17:07:28 UTC (rev 136473)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=libqtxdg
+pkgver=1.2.0
+pkgrel=2
+pkgdesc=Library providing freedesktop.org XDG specs implementations for Qt.
+arch=(i686 x86_64)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(libsm libxkbcommon-x11 qt5-base)
+makedepends=(cmake)
+source=(http://downloads.lxqt.org/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(88c9b01b56fea205226b53642833963e4f27471de3b90e93e9b650ca28d098d9)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib \
+   -DUSE_QT5=true
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-07-06 17:07:19 UTC (rev 136472)
+++ community-x86_64/PKGBUILD   2015-07-06 17:07:28 UTC (rev 136473)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche jer...@leclan.ch
-
-pkgname=libqtxdg
-pkgver=1.2.0
-pkgrel=1
-pkgdesc=Library providing freedesktop.org XDG specs implementations for Qt.
-arch=(i686 x86_64)
-url=http://lxqt.org;
-license=(GPL2)
-depends=(qt5-base)
-makedepends=(cmake)
-source=(http://downloads.lxqt.org/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=(88c9b01b56fea205226b53642833963e4f27471de3b90e93e9b650ca28d098d9)
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake $srcdir/$pkgname-$pkgver \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=lib \
-   -DUSE_QT5=true
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR=$pkgdir install
-}

Copied: libqtxdg/repos/community-x86_64/PKGBUILD (from rev 136472, 
libqtxdg/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-07-06 17:07:28 UTC (rev 136473)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=libqtxdg
+pkgver=1.2.0
+pkgrel=2
+pkgdesc=Library providing freedesktop.org XDG specs implementations for Qt.
+arch=(i686 x86_64)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(libsm libxkbcommon-x11 qt5-base)
+makedepends=(cmake)
+source=(http://downloads.lxqt.org/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(88c9b01b56fea205226b53642833963e4f27471de3b90e93e9b650ca28d098d9)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib \
+   -DUSE_QT5=true
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


[arch-commits] Commit in lxqt-powermanagement/repos (6 files)

2015-07-06 Thread Balló György
Date: Monday, July 6, 2015 @ 20:52:03
  Author: bgyorgy
Revision: 136478

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

Added:
  lxqt-powermanagement/repos/community-i686/PKGBUILD
(from rev 136477, lxqt-powermanagement/trunk/PKGBUILD)
  lxqt-powermanagement/repos/community-i686/lxqt-powermanagement.install
(from rev 136477, lxqt-powermanagement/trunk/lxqt-powermanagement.install)
  lxqt-powermanagement/repos/community-x86_64/PKGBUILD
(from rev 136477, lxqt-powermanagement/trunk/PKGBUILD)
  lxqt-powermanagement/repos/community-x86_64/lxqt-powermanagement.install
(from rev 136477, lxqt-powermanagement/trunk/lxqt-powermanagement.install)
Deleted:
  lxqt-powermanagement/repos/community-i686/PKGBUILD
  lxqt-powermanagement/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   60 
 community-i686/PKGBUILD   |   29 ---
 community-i686/lxqt-powermanagement.install   |   11 
 community-x86_64/PKGBUILD |   29 ---
 community-x86_64/lxqt-powermanagement.install |   11 
 5 files changed, 82 insertions(+), 58 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-06 18:51:39 UTC (rev 136477)
+++ community-i686/PKGBUILD 2015-07-06 18:52:03 UTC (rev 136478)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche jer...@leclan.ch
-
-pkgname=lxqt-powermanagement
-pkgver=0.9.0
-pkgrel=1
-pkgdesc=LXQt power management daemon
-arch=(i686 x86_64)
-groups=(lxqt)
-url=http://lxqt.org;
-license=(GPL2)
-depends=(liblxqt qt5-svg upower)
-makedepends=(cmake qt5-tools)
-source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=(4602de9a9976307a74568cc729c6970c73dc06be5f972ade21eea6afb0c3006b)
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake $srcdir/$pkgname-$pkgver \
-   -DCMAKE_INSTALL_PREFIX=/usr
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR=$pkgdir install
-}

Copied: lxqt-powermanagement/repos/community-i686/PKGBUILD (from rev 136477, 
lxqt-powermanagement/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-07-06 18:52:03 UTC (rev 136478)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-powermanagement
+pkgver=0.9.0
+pkgrel=2
+pkgdesc=LXQt power management daemon
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt qt5-svg upower hicolor-icon-theme xdg-utils)
+makedepends=(cmake qt5-tools)
+install=$pkgname.install
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(4602de9a9976307a74568cc729c6970c73dc06be5f972ade21eea6afb0c3006b)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}

Copied: lxqt-powermanagement/repos/community-i686/lxqt-powermanagement.install 
(from rev 136477, lxqt-powermanagement/trunk/lxqt-powermanagement.install)
===
--- community-i686/lxqt-powermanagement.install (rev 0)
+++ community-i686/lxqt-powermanagement.install 2015-07-06 18:52:03 UTC (rev 
136478)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-07-06 18:51:39 UTC (rev 136477)
+++ community-x86_64/PKGBUILD   2015-07-06 18:52:03 UTC (rev 136478)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche jer...@leclan.ch
-
-pkgname=lxqt-powermanagement
-pkgver=0.9.0
-pkgrel=1
-pkgdesc=LXQt power management daemon
-arch=(i686 x86_64)
-groups=(lxqt)
-url=http://lxqt.org;
-license=(GPL2)
-depends=(liblxqt qt5-svg upower)
-makedepends=(cmake qt5-tools)
-source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=(4602de9a9976307a74568cc729c6970c73dc06be5f972ade21eea6afb0c3006b)
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake $srcdir/$pkgname-$pkgver \
-   -DCMAKE_INSTALL_PREFIX=/usr
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR=$pkgdir install
-}

Copied: lxqt-powermanagement/repos/community-x86_64/PKGBUILD (from rev 136477, 
lxqt-powermanagement/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-07-06 18:52:03 

[arch-commits] Commit in lxqt-powermanagement/trunk (2 files)

2015-07-06 Thread Balló György
Date: Monday, July 6, 2015 @ 20:51:39
  Author: bgyorgy
Revision: 136477

upgpkg: lxqt-powermanagement 0.9.0-2

Update the icon cache after installation

Added:
  lxqt-powermanagement/trunk/lxqt-powermanagement.install
Modified:
  lxqt-powermanagement/trunk/PKGBUILD

--+
 PKGBUILD |5 +++--
 lxqt-powermanagement.install |   11 +++
 2 files changed, 14 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-06 18:47:58 UTC (rev 136476)
+++ PKGBUILD2015-07-06 18:51:39 UTC (rev 136477)
@@ -3,14 +3,15 @@
 
 pkgname=lxqt-powermanagement
 pkgver=0.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc=LXQt power management daemon
 arch=(i686 x86_64)
 groups=(lxqt)
 url=http://lxqt.org;
 license=(GPL2)
-depends=(liblxqt qt5-svg upower)
+depends=(liblxqt qt5-svg upower hicolor-icon-theme xdg-utils)
 makedepends=(cmake qt5-tools)
+install=$pkgname.install
 source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
 sha256sums=(4602de9a9976307a74568cc729c6970c73dc06be5f972ade21eea6afb0c3006b)
 

Added: lxqt-powermanagement.install
===
--- lxqt-powermanagement.install(rev 0)
+++ lxqt-powermanagement.install2015-07-06 18:51:39 UTC (rev 136477)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}


[arch-commits] Commit in lxqt-runner/repos (4 files)

2015-07-06 Thread Balló György
Date: Tuesday, July 7, 2015 @ 02:14:39
  Author: bgyorgy
Revision: 136482

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

Added:
  lxqt-runner/repos/community-i686/PKGBUILD
(from rev 136481, lxqt-runner/trunk/PKGBUILD)
  lxqt-runner/repos/community-x86_64/PKGBUILD
(from rev 136481, lxqt-runner/trunk/PKGBUILD)
Deleted:
  lxqt-runner/repos/community-i686/PKGBUILD
  lxqt-runner/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   58 
 community-i686/PKGBUILD   |   29 --
 community-x86_64/PKGBUILD |   29 --
 3 files changed, 58 insertions(+), 58 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-07 00:14:31 UTC (rev 136481)
+++ community-i686/PKGBUILD 2015-07-07 00:14:39 UTC (rev 136482)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche jer...@leclan.ch
-
-pkgname=lxqt-runner
-pkgver=0.9.0
-pkgrel=1
-pkgdesc=The LXQt application launcher
-arch=(i686 x86_64)
-groups=(lxqt)
-url=http://lxqt.org;
-license=(GPL2)
-depends=(lxqt-globalkeys menu-cache qt5-script)
-makedepends=(cmake qt5-tools)
-source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=(7d9d4d85acb2a9e17892ca41637a677939ef7788df5cd45ba44d178ac066439a)
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake $srcdir/$pkgname-$pkgver \
-   -DCMAKE_INSTALL_PREFIX=/usr
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR=$pkgdir install
-}

Copied: lxqt-runner/repos/community-i686/PKGBUILD (from rev 136481, 
lxqt-runner/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-07-07 00:14:39 UTC (rev 136482)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-runner
+pkgver=0.9.0
+pkgrel=2
+pkgdesc=The LXQt application launcher
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(lxqt-common lxqt-globalkeys menu-cache qt5-script)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(7d9d4d85acb2a9e17892ca41637a677939ef7788df5cd45ba44d178ac066439a)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-07-07 00:14:31 UTC (rev 136481)
+++ community-x86_64/PKGBUILD   2015-07-07 00:14:39 UTC (rev 136482)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche jer...@leclan.ch
-
-pkgname=lxqt-runner
-pkgver=0.9.0
-pkgrel=1
-pkgdesc=The LXQt application launcher
-arch=(i686 x86_64)
-groups=(lxqt)
-url=http://lxqt.org;
-license=(GPL2)
-depends=(lxqt-globalkeys menu-cache qt5-script)
-makedepends=(cmake qt5-tools)
-source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=(7d9d4d85acb2a9e17892ca41637a677939ef7788df5cd45ba44d178ac066439a)
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake $srcdir/$pkgname-$pkgver \
-   -DCMAKE_INSTALL_PREFIX=/usr
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR=$pkgdir install
-}

Copied: lxqt-runner/repos/community-x86_64/PKGBUILD (from rev 136481, 
lxqt-runner/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-07-07 00:14:39 UTC (rev 136482)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-runner
+pkgver=0.9.0
+pkgrel=2
+pkgdesc=The LXQt application launcher
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(lxqt-common lxqt-globalkeys menu-cache qt5-script)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(7d9d4d85acb2a9e17892ca41637a677939ef7788df5cd45ba44d178ac066439a)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


[arch-commits] Commit in lxqt-runner/trunk (PKGBUILD)

2015-07-06 Thread Balló György
Date: Tuesday, July 7, 2015 @ 02:14:31
  Author: bgyorgy
Revision: 136481

upgpkg: lxqt-runner 0.9.0-2

Add lxqt-common to dependencies to provide default styling

Modified:
  lxqt-runner/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-06 18:56:20 UTC (rev 136480)
+++ PKGBUILD2015-07-07 00:14:31 UTC (rev 136481)
@@ -3,13 +3,13 @@
 
 pkgname=lxqt-runner
 pkgver=0.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc=The LXQt application launcher
 arch=(i686 x86_64)
 groups=(lxqt)
 url=http://lxqt.org;
 license=(GPL2)
-depends=(lxqt-globalkeys menu-cache qt5-script)
+depends=(lxqt-common lxqt-globalkeys menu-cache qt5-script)
 makedepends=(cmake qt5-tools)
 source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
 sha256sums=(7d9d4d85acb2a9e17892ca41637a677939ef7788df5cd45ba44d178ac066439a)


[arch-commits] Commit in lxqt-config/trunk (PKGBUILD)

2015-07-06 Thread Balló György
Date: Tuesday, July 7, 2015 @ 02:54:33
  Author: bgyorgy
Revision: 136484

upgpkg: lxqt-config 0.9.0-2

Add xorg-xrandr to dependencies (FS#45424)

Modified:
  lxqt-config/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-07 00:30:50 UTC (rev 136483)
+++ PKGBUILD2015-07-07 00:54:33 UTC (rev 136484)
@@ -3,13 +3,13 @@
 
 pkgname=lxqt-config
 pkgver=0.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc=LXQt system configuration.
 arch=(i686 x86_64)
 groups=(lxqt)
 url=http://lxqt.org;
 license=(GPL2)
-depends=(liblxqt libxcursor)
+depends=(liblxqt libxcursor xorg-xrandr)
 makedepends=(cmake qt5-tools)
 source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
 sha256sums=(9d6b0d21846ac5d9c62c5806ce04383b92708ab7bd095b46d0ac9fbb3f84b913)


[arch-commits] Commit in lxqt-config/repos (4 files)

2015-07-06 Thread Balló György
Date: Tuesday, July 7, 2015 @ 02:54:41
  Author: bgyorgy
Revision: 136485

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

Added:
  lxqt-config/repos/community-i686/PKGBUILD
(from rev 136484, lxqt-config/trunk/PKGBUILD)
  lxqt-config/repos/community-x86_64/PKGBUILD
(from rev 136484, lxqt-config/trunk/PKGBUILD)
Deleted:
  lxqt-config/repos/community-i686/PKGBUILD
  lxqt-config/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   56 
 community-i686/PKGBUILD   |   28 --
 community-x86_64/PKGBUILD |   28 --
 3 files changed, 56 insertions(+), 56 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-07 00:54:33 UTC (rev 136484)
+++ community-i686/PKGBUILD 2015-07-07 00:54:41 UTC (rev 136485)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche jer...@leclan.ch
-
-pkgname=lxqt-config
-pkgver=0.9.0
-pkgrel=1
-pkgdesc=LXQt system configuration.
-arch=(i686 x86_64)
-groups=(lxqt)
-url=http://lxqt.org;
-license=(GPL2)
-depends=(liblxqt libxcursor)
-makedepends=(cmake qt5-tools)
-source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=(9d6b0d21846ac5d9c62c5806ce04383b92708ab7bd095b46d0ac9fbb3f84b913)
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake -DCMAKE_INSTALL_PREFIX=/usr $srcdir/$pkgname-$pkgver
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR=$pkgdir install
-}

Copied: lxqt-config/repos/community-i686/PKGBUILD (from rev 136484, 
lxqt-config/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-07-07 00:54:41 UTC (rev 136485)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-config
+pkgver=0.9.0
+pkgrel=2
+pkgdesc=LXQt system configuration.
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt libxcursor xorg-xrandr)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(9d6b0d21846ac5d9c62c5806ce04383b92708ab7bd095b46d0ac9fbb3f84b913)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX=/usr $srcdir/$pkgname-$pkgver
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-07-07 00:54:33 UTC (rev 136484)
+++ community-x86_64/PKGBUILD   2015-07-07 00:54:41 UTC (rev 136485)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche jer...@leclan.ch
-
-pkgname=lxqt-config
-pkgver=0.9.0
-pkgrel=1
-pkgdesc=LXQt system configuration.
-arch=(i686 x86_64)
-groups=(lxqt)
-url=http://lxqt.org;
-license=(GPL2)
-depends=(liblxqt libxcursor)
-makedepends=(cmake qt5-tools)
-source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=(9d6b0d21846ac5d9c62c5806ce04383b92708ab7bd095b46d0ac9fbb3f84b913)
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake -DCMAKE_INSTALL_PREFIX=/usr $srcdir/$pkgname-$pkgver
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR=$pkgdir install
-}

Copied: lxqt-config/repos/community-x86_64/PKGBUILD (from rev 136484, 
lxqt-config/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-07-07 00:54:41 UTC (rev 136485)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-config
+pkgver=0.9.0
+pkgrel=2
+pkgdesc=LXQt system configuration.
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt libxcursor xorg-xrandr)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(9d6b0d21846ac5d9c62c5806ce04383b92708ab7bd095b46d0ac9fbb3f84b913)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX=/usr $srcdir/$pkgname-$pkgver
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


[arch-commits] Commit in lxqt-session/trunk (PKGBUILD)

2015-07-06 Thread Balló György
Date: Tuesday, July 7, 2015 @ 02:30:50
  Author: bgyorgy
Revision: 136483

Update dependencies

- Remove libxkbcommon-x11 dependency, as it's already satisfied.
- Add oxygen-icons to optdepends as default icon theme.

Modified:
  lxqt-session/trunk/PKGBUILD

--+
 PKGBUILD |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-07 00:14:39 UTC (rev 136482)
+++ PKGBUILD2015-07-07 00:30:50 UTC (rev 136483)
@@ -9,8 +9,9 @@
 groups=(lxqt)
 url=http://lxqt.org;
 license=(GPL2)
-depends=(liblxqt lxqt-common libxkbcommon-x11)
-optdepends=(sddm: The recommended LXQt display manager)
+depends=(liblxqt lxqt-common)
+optdepends=(oxygen-icons: Default icon theme
+sddm: The recommended LXQt display manager)
 makedepends=(cmake qt5-tools)
 source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
 sha256sums=(c543ffb938e230c144399b59c99c53ee69fd0b37ff404a02576ce1179a551d06)


[arch-commits] Commit in lxqt-panel/repos (4 files)

2015-07-06 Thread Balló György
Date: Tuesday, July 7, 2015 @ 04:29:40
  Author: bgyorgy
Revision: 136497

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

Added:
  lxqt-panel/repos/community-i686/PKGBUILD
(from rev 136496, lxqt-panel/trunk/PKGBUILD)
  lxqt-panel/repos/community-x86_64/PKGBUILD
(from rev 136496, lxqt-panel/trunk/PKGBUILD)
Deleted:
  lxqt-panel/repos/community-i686/PKGBUILD
  lxqt-panel/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   74 
 community-i686/PKGBUILD   |   41 
 community-x86_64/PKGBUILD |   41 
 3 files changed, 74 insertions(+), 82 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-07 02:29:32 UTC (rev 136496)
+++ community-i686/PKGBUILD 2015-07-07 02:29:40 UTC (rev 136497)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche jer...@leclan.ch
-
-pkgname=lxqt-panel
-pkgver=0.9.0
-pkgrel=1
-pkgdesc=The LXQt desktop panel
-arch=(i686 x86_64)
-groups=(lxqt)
-url=http://lxqt.org;
-license=(GPL2)
-depends=(
-   libxcomposite kguiaddons lxmenu-data
-   lxqt-common liblxqt-mount lxqt-globalkeys
-)
-optdepends=(
-   alsa-lib: Alsa support in volume control plugin
-   libpulse: PulseAudio support in volume control plugin
-   lm_sensors: Battery plugin
-   libstatgrab: Network and CPU monitor plugin
-   libsysstat: Network/CPU monitor plugin
-   menu-cache: Improved performance for main menu plugin
-)
-makedepends=(cmake qt5-tools alsa-lib libpulse lm_sensors 
libstatgrab libsysstat)
-source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=(96b2c2f1b7de7605ac79f094936e6fcf8f0034342e11d84624a033f2450f6bf1)
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake $srcdir/$pkgname-$pkgver \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=/usr/lib
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR=$pkgdir install
-}

Copied: lxqt-panel/repos/community-i686/PKGBUILD (from rev 136496, 
lxqt-panel/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-07-07 02:29:40 UTC (rev 136497)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-panel
+pkgver=0.9.0
+pkgrel=2
+pkgdesc=The LXQt desktop panel
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(libxcomposite lxmenu-data lxqt-common lxqt-globalkeys
+ liblxqt-mount menu-cache)
+optdepends=(kguiaddons: Keyboard indicator plugin
+libpulse: Volume control plugin
+libstatgrab: CPU monitor and Network monitor plugins
+libsysstat: System Statistics plugin
+lm_sensors: Sensors plugin)
+makedepends=(cmake kguiaddons libpulse libstatgrab libsysstat
+ lm_sensors qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(96b2c2f1b7de7605ac79f094936e6fcf8f0034342e11d84624a033f2450f6bf1)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=/usr/lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-07-07 02:29:32 UTC (rev 136496)
+++ community-x86_64/PKGBUILD   2015-07-07 02:29:40 UTC (rev 136497)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche jer...@leclan.ch
-
-pkgname=lxqt-panel
-pkgver=0.9.0
-pkgrel=1
-pkgdesc=The LXQt desktop panel
-arch=(i686 x86_64)
-groups=(lxqt)
-url=http://lxqt.org;
-license=(GPL2)
-depends=(
-   libxcomposite kguiaddons lxmenu-data
-   lxqt-common liblxqt-mount lxqt-globalkeys
-)
-optdepends=(
-   alsa-lib: Alsa support in volume control plugin
-   libpulse: PulseAudio support in volume control plugin
-   lm_sensors: Battery plugin
-   libstatgrab: Network and CPU monitor plugin
-   libsysstat: Network/CPU monitor plugin
-   menu-cache: Improved performance for main menu plugin
-)
-makedepends=(cmake qt5-tools alsa-lib libpulse lm_sensors 
libstatgrab libsysstat)
-source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=(96b2c2f1b7de7605ac79f094936e6fcf8f0034342e11d84624a033f2450f6bf1)
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake $srcdir/$pkgname-$pkgver \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=/usr/lib
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR=$pkgdir install
-}

Copied: 

[arch-commits] Commit in lxqt-panel/trunk (PKGBUILD)

2015-07-06 Thread Balló György
Date: Tuesday, July 7, 2015 @ 04:29:32
  Author: bgyorgy
Revision: 136496

upgpkg: lxqt-panel 0.9.0-2

Move menu-cache to depends, kguiaddons to optdepends

Modified:
  lxqt-panel/trunk/PKGBUILD

--+
 PKGBUILD |   24 ++--
 1 file changed, 10 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-07 01:57:27 UTC (rev 136495)
+++ PKGBUILD2015-07-07 02:29:32 UTC (rev 136496)
@@ -3,25 +3,21 @@
 
 pkgname=lxqt-panel
 pkgver=0.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc=The LXQt desktop panel
 arch=(i686 x86_64)
 groups=(lxqt)
 url=http://lxqt.org;
 license=(GPL2)
-depends=(
-   libxcomposite kguiaddons lxmenu-data
-   lxqt-common liblxqt-mount lxqt-globalkeys
-)
-optdepends=(
-   alsa-lib: Alsa support in volume control plugin
-   libpulse: PulseAudio support in volume control plugin
-   lm_sensors: Battery plugin
-   libstatgrab: Network and CPU monitor plugin
-   libsysstat: Network/CPU monitor plugin
-   menu-cache: Improved performance for main menu plugin
-)
-makedepends=(cmake qt5-tools alsa-lib libpulse lm_sensors 
libstatgrab libsysstat)
+depends=(libxcomposite lxmenu-data lxqt-common lxqt-globalkeys
+ liblxqt-mount menu-cache)
+optdepends=(kguiaddons: Keyboard indicator plugin
+libpulse: Volume control plugin
+libstatgrab: CPU monitor and Network monitor plugins
+libsysstat: System Statistics plugin
+lm_sensors: Sensors plugin)
+makedepends=(cmake kguiaddons libpulse libstatgrab libsysstat
+ lm_sensors qt5-tools)
 source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
 sha256sums=(96b2c2f1b7de7605ac79f094936e6fcf8f0034342e11d84624a033f2450f6bf1)
 


[arch-commits] Commit in mate-user-share-gtk3/trunk (PKGBUILD)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 20:00:04
  Author: bgyorgy
Revision: 136049

upgpkg: mate-user-share-gtk3 1.10.0-2

Really build with GTK3 instead of GTK2

Modified:
  mate-user-share-gtk3/trunk/PKGBUILD

--+
 PKGBUILD |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 16:57:26 UTC (rev 136048)
+++ PKGBUILD2015-06-28 18:00:04 UTC (rev 136049)
@@ -4,12 +4,12 @@
 _pkgbase=mate-user-share
 pkgname=(${_pkgbase}-gtk3)
 pkgver=${_ver}.0
-pkgrel=1
-pkgdesc=User level public file sharing via WebDAV for MATE.
+pkgrel=2
+pkgdesc=User level public file sharing via WebDAV for MATE. (GTK3 version 
[EXPERIMENTAL])
 url=http://mate-desktop.org;
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('dbus-glib' 'dconf' 'libunique' 'mod_dnssd')
+depends=('dbus-glib' 'dconf' 'libunique3' 'mod_dnssd')
 makedepends=('caja-gtk3=1.10' 'libcanberra' 'libnotify' 'mate-common' 
'yelp-tools')
 optdepends=('yelp: for reading MATE help documents')
 groups=('mate-extra-gtk3')
@@ -24,6 +24,7 @@
 --prefix=/usr \
 --libexec=/usr/lib/${_pkgbase} \
 --sysconfdir=/etc \
+--with-gtk=3.0 \
 --disable-static \
 --disable-bluetooth
 make


[arch-commits] Commit in mate-user-share-gtk3/repos (8 files)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 20:00:13
  Author: bgyorgy
Revision: 136050

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

Added:
  mate-user-share-gtk3/repos/community-i686/PKGBUILD
(from rev 136049, mate-user-share-gtk3/trunk/PKGBUILD)
  mate-user-share-gtk3/repos/community-i686/mate-user-share.install
(from rev 136049, mate-user-share-gtk3/trunk/mate-user-share.install)
  mate-user-share-gtk3/repos/community-x86_64/PKGBUILD
(from rev 136049, mate-user-share-gtk3/trunk/PKGBUILD)
  mate-user-share-gtk3/repos/community-x86_64/mate-user-share.install
(from rev 136049, mate-user-share-gtk3/trunk/mate-user-share.install)
Deleted:
  mate-user-share-gtk3/repos/community-i686/PKGBUILD
  mate-user-share-gtk3/repos/community-i686/mate-user-share.install
  mate-user-share-gtk3/repos/community-x86_64/PKGBUILD
  mate-user-share-gtk3/repos/community-x86_64/mate-user-share.install

--+
 /PKGBUILD|   74 +
 /mate-user-share.install |   26 ++
 community-i686/PKGBUILD  |   37 --
 community-i686/mate-user-share.install   |   13 -
 community-x86_64/PKGBUILD|   37 --
 community-x86_64/mate-user-share.install |   13 -
 6 files changed, 100 insertions(+), 100 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 18:00:04 UTC (rev 136049)
+++ community-i686/PKGBUILD 2015-06-28 18:00:13 UTC (rev 136050)
@@ -1,37 +0,0 @@
-# $Id$
-#Maintainer: Martin Wimpress c...@flexion.org
-
-_ver=1.10
-_pkgbase=mate-user-share
-pkgname=(${_pkgbase}-gtk3)
-pkgver=${_ver}.0
-pkgrel=1
-pkgdesc=User level public file sharing via WebDAV for MATE.
-url=http://mate-desktop.org;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('dbus-glib' 'dconf' 'libunique' 'mod_dnssd')
-makedepends=('caja-gtk3=1.10' 'libcanberra' 'libnotify' 'mate-common' 
'yelp-tools')
-optdepends=('yelp: for reading MATE help documents')
-groups=('mate-extra-gtk3')
-conflicts=(${_pkgbase})
-source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
-sha1sums=('2f6dd6a05e6c1894272b6a0d7348e709196bb947')
-install=${_pkgbase}.install
-
-build() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-PYTHON=/usr/bin/python2 ./configure \
---prefix=/usr \
---libexec=/usr/lib/${_pkgbase} \
---sysconfdir=/etc \
---disable-static \
---disable-bluetooth
-make
-}
-
-package() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-make  DESTDIR=${pkgdir} install
-rm -f ${pkgdir}/usr/share/mate-user-share/dav_user_2.0.conf
-}

Copied: mate-user-share-gtk3/repos/community-i686/PKGBUILD (from rev 136049, 
mate-user-share-gtk3/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 18:00:13 UTC (rev 136050)
@@ -0,0 +1,37 @@
+#Maintainer: Martin Wimpress c...@flexion.org
+
+_ver=1.10
+_pkgbase=mate-user-share
+pkgname=(${_pkgbase}-gtk3)
+pkgver=${_ver}.0
+pkgrel=2
+pkgdesc=User level public file sharing via WebDAV for MATE. (GTK3 version 
[EXPERIMENTAL])
+url=http://mate-desktop.org;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus-glib' 'dconf' 'libunique3' 'mod_dnssd')
+makedepends=('caja-gtk3=1.10' 'libcanberra' 'libnotify' 'mate-common' 
'yelp-tools')
+optdepends=('yelp: for reading MATE help documents')
+groups=('mate-extra-gtk3')
+conflicts=(${_pkgbase})
+source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
+sha1sums=('2f6dd6a05e6c1894272b6a0d7348e709196bb947')
+install=${_pkgbase}.install
+
+build() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+PYTHON=/usr/bin/python2 ./configure \
+--prefix=/usr \
+--libexec=/usr/lib/${_pkgbase} \
+--sysconfdir=/etc \
+--with-gtk=3.0 \
+--disable-static \
+--disable-bluetooth
+make
+}
+
+package() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+make  DESTDIR=${pkgdir} install
+rm -f ${pkgdir}/usr/share/mate-user-share/dav_user_2.0.conf
+}

Deleted: community-i686/mate-user-share.install
===
--- community-i686/mate-user-share.install  2015-06-28 18:00:04 UTC (rev 
136049)
+++ community-i686/mate-user-share.install  2015-06-28 18:00:13 UTC (rev 
136050)
@@ -1,13 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas/
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-update-desktop-database -q
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: mate-user-share-gtk3/repos/community-i686/mate-user-share.install (from 
rev 136049, mate-user-share-gtk3/trunk/mate-user-share.install)

[arch-commits] Commit in mate-themes/trunk (PKGBUILD)

2015-06-28 Thread Balló György
Date: Monday, June 29, 2015 @ 00:53:08
  Author: bgyorgy
Revision: 136095

gtk-engine-unico is no longer used.

Modified:
  mate-themes/trunk/PKGBUILD

--+
 PKGBUILD |1 -
 1 file changed, 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 22:15:27 UTC (rev 136094)
+++ PKGBUILD2015-06-28 22:53:08 UTC (rev 136095)
@@ -11,7 +11,6 @@
 license=('GPL')
 depends=('gtk3' 'gtk-engines' 'gtk-engine-murrine' 'librsvg' 'mate-icon-theme')
 makedepends=('mate-common' 'icon-naming-utils')
-optdepends=('gtk-engine-unico: Support for some GTK3 themes.')
 groups=('mate' 'mate-gtk3')
 
source=(http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-gtk${_gtkver}-${pkgver}.tar.xz;)
 sha1sums=('5260bc5841ac7a47695902de3741853eaf71f313')


[arch-commits] Commit in gnome-main-menu/repos (8 files)

2015-06-28 Thread Balló György
Date: Monday, June 29, 2015 @ 01:55:29
  Author: bgyorgy
Revision: 136099

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

Added:
  gnome-main-menu/repos/community-i686/PKGBUILD
(from rev 136098, gnome-main-menu/trunk/PKGBUILD)
  gnome-main-menu/repos/community-i686/gnome-main-menu.install
(from rev 136098, gnome-main-menu/trunk/gnome-main-menu.install)
  gnome-main-menu/repos/community-x86_64/PKGBUILD
(from rev 136098, gnome-main-menu/trunk/PKGBUILD)
  gnome-main-menu/repos/community-x86_64/gnome-main-menu.install
(from rev 136098, gnome-main-menu/trunk/gnome-main-menu.install)
Deleted:
  gnome-main-menu/repos/community-i686/PKGBUILD
  gnome-main-menu/repos/community-i686/gnome-main-menu.install
  gnome-main-menu/repos/community-x86_64/PKGBUILD
  gnome-main-menu/repos/community-x86_64/gnome-main-menu.install

--+
 /PKGBUILD|   92 +
 /gnome-main-menu.install |   26 
 community-i686/PKGBUILD  |   34 --
 community-i686/gnome-main-menu.install   |   13 
 community-x86_64/PKGBUILD|   34 --
 community-x86_64/gnome-main-menu.install |   13 
 6 files changed, 118 insertions(+), 94 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 23:55:22 UTC (rev 136098)
+++ community-i686/PKGBUILD 2015-06-28 23:55:29 UTC (rev 136099)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-
-pkgname=gnome-main-menu
-pkgver=1.8.0
-pkgrel=1
-pkgdesc=A mate-panel applet similar to the traditional main-menu, but with a 
few additions.
-url=http://mate-desktop.org;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('caja' 'libunique' 'mate-control-center' 'mate-desktop' 'mate-panel')
-makedepends=('mate-common' 'yelp-tools')
-optdepends=('yelp: for reading help documents')
-options=('!emptydirs')
-source=(http://pub.mate-desktop.org/releases/1.8/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('287e904506ae2796e84b556f76e3b12274c1c89f')
-install=${pkgname}.install
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${pkgname} \
---sysconfdir=/etc \
---localstatedir=/var \
---enable-caja-extension \
---disable-static
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: gnome-main-menu/repos/community-i686/PKGBUILD (from rev 136098, 
gnome-main-menu/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 23:55:29 UTC (rev 136099)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+
+pkgname=gnome-main-menu
+pkgver=1.8.0
+pkgrel=2
+pkgdesc=A mate-panel applet similar to the traditional main-menu, but with a 
few additions.
+url=http://mate-desktop.org;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('caja' 'libunique' 'mate-control-center' 'mate-desktop' 'mate-panel')
+makedepends=('mate-common' 'yelp-tools')
+optdepends=('yelp: for reading help documents')
+source=(http://pub.mate-desktop.org/releases/1.8/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('287e904506ae2796e84b556f76e3b12274c1c89f')
+install=${pkgname}.install
+
+prepare() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+# Replace libslab with libmate-slab
+sed -i 's|libslab|mate-slab|' configure.ac
+sed -i 's|libslab/slab.h|libmate-slab/slab.h|' */src/*
+
+# Update disable-log-out key location
+sed -i 's|org.mate.panel|org.mate.lockdown|' main-menu/src/main-menu-ui.c
+
+autoreconf -fi
+}
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${pkgname} \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--enable-caja-extension \
+--disable-static
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+}

Deleted: community-i686/gnome-main-menu.install
===
--- community-i686/gnome-main-menu.install  2015-06-28 23:55:22 UTC (rev 
136098)
+++ community-i686/gnome-main-menu.install  2015-06-28 23:55:29 UTC (rev 
136099)
@@ -1,13 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas/
-#gtk-update-icon-cache -q -t -f /usr/share/icons/mate
-#update-desktop-database -q
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: gnome-main-menu/repos/community-i686/gnome-main-menu.install (from rev 
136098, gnome-main-menu/trunk/gnome-main-menu.install)
===
--- 

[arch-commits] Commit in mate-themes-extras/trunk (PKGBUILD)

2015-06-28 Thread Balló György
Date: Monday, June 29, 2015 @ 01:16:35
  Author: bgyorgy
Revision: 136096

upgpkg: mate-themes-extras 3.16.3-1

Update to version 3.16.3, remove unused dependencies

Modified:
  mate-themes-extras/trunk/PKGBUILD

--+
 PKGBUILD |   23 ---
 1 file changed, 4 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 22:53:08 UTC (rev 136095)
+++ PKGBUILD2015-06-28 23:16:35 UTC (rev 136096)
@@ -2,17 +2,17 @@
 # Maintainer : Martin Wimpress c...@flexion.org
 
 pkgname=mate-themes-extras
-pkgver=3.14.2
+pkgver=3.16.3
 pkgrel=1
 pkgdesc=Collection of GTK2/3 desktop themes for MATE.
 url=https://github.com/NiceandGently/mate-themes-extras;
 arch=('any')
 license=('GPL')
-depends=('gtk2' 'gtk-engine-murrine' 'gtk-engine-unico' 'mate-icon-theme')
+depends=('gtk-engine-murrine')
 makedepends=('mate-common' 'icon-naming-utils' 'perl-xml-parser')
 options=('!emptydirs')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/NiceandGently/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha256sums=('ffe370b9f09cac14fee634a684c75d703e936e7a037ea16bd24abb3183f02541')
+sha256sums=('1ba476b24409dada28b53fc315143aec5ef99c03e4c31d79c51d4acd8b82aa07')
 
 prepare() {
 cd ${srcdir}/${pkgname}-${pkgver}
@@ -24,25 +24,10 @@
 ./configure \
 --prefix=/usr \
 --enable-Blue-Submarine \
---enable-clearlooks-phenix \
+--enable-DeLorean \
 --enable-DeLorean-Dark \
---enable-Faience \
---enable-Faience-Ocre \
---enable-Gnome-Cupertino \
---enable-Gnome-Cupertino-Mint \
 --enable-GnomishBeige \
 --enable-Green-Submarine \
---enable-Smoothly \
---enable-Smoothly-Black \
---enable-Zukitwo \
---enable-Zukitwo-Brave \
---enable-Zukitwo-Dust \
---enable-Zukitwo-Human \
---enable-Zukitwo-Illustrious \
---enable-Zukitwo-Noble \
---enable-Zukitwo-Wine \
---enable-Zukitwo-Wise \
---enable-Zukitwo-Colors
 make
 }
 


[arch-commits] Commit in mate-themes-extras/repos/community-any (PKGBUILD PKGBUILD)

2015-06-28 Thread Balló György
Date: Monday, June 29, 2015 @ 01:16:41
  Author: bgyorgy
Revision: 136097

archrelease: copy trunk to community-any

Added:
  mate-themes-extras/repos/community-any/PKGBUILD
(from rev 136096, mate-themes-extras/trunk/PKGBUILD)
Deleted:
  mate-themes-extras/repos/community-any/PKGBUILD

--+
 PKGBUILD |   89 +
 1 file changed, 37 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-28 23:16:35 UTC (rev 136096)
+++ PKGBUILD2015-06-28 23:16:41 UTC (rev 136097)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-
-pkgname=mate-themes-extras
-pkgver=3.14.2
-pkgrel=1
-pkgdesc=Collection of GTK2/3 desktop themes for MATE.
-url=https://github.com/NiceandGently/mate-themes-extras;
-arch=('any')
-license=('GPL')
-depends=('gtk2' 'gtk-engine-murrine' 'gtk-engine-unico' 'mate-icon-theme')
-makedepends=('mate-common' 'icon-naming-utils' 'perl-xml-parser')
-options=('!emptydirs')
-source=(https://github.com/NiceandGently/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha256sums=('ffe370b9f09cac14fee634a684c75d703e936e7a037ea16bd24abb3183f02541')
-
-prepare() {
-cd ${srcdir}/${pkgname}-${pkgver}
-NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure \
---prefix=/usr \
---enable-Blue-Submarine \
---enable-clearlooks-phenix \
---enable-DeLorean-Dark \
---enable-Faience \
---enable-Faience-Ocre \
---enable-Gnome-Cupertino \
---enable-Gnome-Cupertino-Mint \
---enable-GnomishBeige \
---enable-Green-Submarine \
---enable-Smoothly \
---enable-Smoothly-Black \
---enable-Zukitwo \
---enable-Zukitwo-Brave \
---enable-Zukitwo-Dust \
---enable-Zukitwo-Human \
---enable-Zukitwo-Illustrious \
---enable-Zukitwo-Noble \
---enable-Zukitwo-Wine \
---enable-Zukitwo-Wise \
---enable-Zukitwo-Colors
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: mate-themes-extras/repos/community-any/PKGBUILD (from rev 136096, 
mate-themes-extras/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-28 23:16:41 UTC (rev 136097)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+
+pkgname=mate-themes-extras
+pkgver=3.16.3
+pkgrel=1
+pkgdesc=Collection of GTK2/3 desktop themes for MATE.
+url=https://github.com/NiceandGently/mate-themes-extras;
+arch=('any')
+license=('GPL')
+depends=('gtk-engine-murrine')
+makedepends=('mate-common' 'icon-naming-utils' 'perl-xml-parser')
+options=('!emptydirs')
+source=($pkgname-$pkgver.tar.gz::https://github.com/NiceandGently/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha256sums=('1ba476b24409dada28b53fc315143aec5ef99c03e4c31d79c51d4acd8b82aa07')
+
+prepare() {
+cd ${srcdir}/${pkgname}-${pkgver}
+NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure \
+--prefix=/usr \
+--enable-Blue-Submarine \
+--enable-DeLorean \
+--enable-DeLorean-Dark \
+--enable-GnomishBeige \
+--enable-Green-Submarine \
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+}


[arch-commits] Commit in gnome-main-menu/trunk (PKGBUILD)

2015-06-28 Thread Balló György
Date: Monday, June 29, 2015 @ 01:55:22
  Author: bgyorgy
Revision: 136098

upgpkg: gnome-main-menu 1.8.0-2

Fix FS#45490

Modified:
  gnome-main-menu/trunk/PKGBUILD

--+
 PKGBUILD |   15 ++-
 1 file changed, 14 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 23:16:41 UTC (rev 136097)
+++ PKGBUILD2015-06-28 23:55:22 UTC (rev 136098)
@@ -3,7 +3,7 @@
 
 pkgname=gnome-main-menu
 pkgver=1.8.0
-pkgrel=1
+pkgrel=2
 pkgdesc=A mate-panel applet similar to the traditional main-menu, but with a 
few additions.
 url=http://mate-desktop.org;
 arch=('i686' 'x86_64')
@@ -15,6 +15,19 @@
 sha1sums=('287e904506ae2796e84b556f76e3b12274c1c89f')
 install=${pkgname}.install
 
+prepare() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+# Replace libslab with libmate-slab
+sed -i 's|libslab|mate-slab|' configure.ac
+sed -i 's|libslab/slab.h|libmate-slab/slab.h|' */src/*
+
+# Update disable-log-out key location
+sed -i 's|org.mate.panel|org.mate.lockdown|' main-menu/src/main-menu-ui.c
+
+autoreconf -fi
+}
+
 build() {
 cd ${srcdir}/${pkgname}-${pkgver}
 ./configure \


[arch-commits] Commit in metacity/trunk (PKGBUILD fix-crasher.patch)

2015-08-16 Thread Balló György
Date: Sunday, August 16, 2015 @ 19:39:48
  Author: bgyorgy
Revision: 138426

upgpkg: metacity 3.16.1-2

Fix crasher

Added:
  metacity/trunk/fix-crasher.patch
Modified:
  metacity/trunk/PKGBUILD

---+
 PKGBUILD  |   15 ++-
 fix-crasher.patch |  103 
 2 files changed, 115 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-08-16 16:47:17 UTC (rev 138425)
+++ PKGBUILD2015-08-16 17:39:48 UTC (rev 138426)
@@ -4,7 +4,7 @@
 
 pkgname=metacity
 pkgver=3.16.1
-pkgrel=1
+pkgrel=2
 pkgdesc=Legacy GNOME window manager
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -12,9 +12,18 @@
 makedepends=('intltool' 'itstool')
 url=https://wiki.gnome.org/Projects/Metacity;
 install=metacity.install
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('7a2e4ab7e19bfa5e6fc75d80d66e79f7965b5a51435c9675b0e895179d256f86')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+fix-crasher.patch)
+sha256sums=('7a2e4ab7e19bfa5e6fc75d80d66e79f7965b5a51435c9675b0e895179d256f86'
+'eb2a6043ff1a2fc0207a65c2bee18ada509108354379ddc12ef04566cfd7a524')
 
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Fix crasher
+  patch -Np1 -i ../fix-crasher.patch
+}
+
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$pkgname \

Added: fix-crasher.patch
===
--- fix-crasher.patch   (rev 0)
+++ fix-crasher.patch   2015-08-16 17:39:48 UTC (rev 138426)
@@ -0,0 +1,103 @@
+From a9f28dbc26f5211ef08889109db3dc8c7ba76aca Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Alberts=20Muktup=C4=81vels?= alberts.muktupav...@gmail.com
+Date: Tue, 7 Jul 2015 13:49:30 +0300
+Subject: compositor: fix possible crash closing/destroying window
+
+Partially restore call to destroy_win in compositor when calling
+meta_window_free. This is needed to ensure that we never call
+meta_window_get_frame_bounds while windows is destroying.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=751833
+
+diff --git a/src/compositor/compositor-private.h 
b/src/compositor/compositor-private.h
+index 11ed73b..a45fdc9 100644
+--- a/src/compositor/compositor-private.h
 b/src/compositor/compositor-private.h
+@@ -48,6 +48,9 @@ struct _MetaCompositor
+  MetaScreen *screen,
+  MetaWindow *window);
+ 
++  void (*free_window) (MetaCompositor *compositor,
++   MetaWindow *window);
++
+   void (*maximize_window)   (MetaCompositor *compositor,
+  MetaWindow *window);
+   void (*unmaximize_window) (MetaCompositor *compositor,
+diff --git a/src/compositor/compositor-xrender.c 
b/src/compositor/compositor-xrender.c
+index 3bff70a..fbae9a7 100644
+--- a/src/compositor/compositor-xrender.c
 b/src/compositor/compositor-xrender.c
+@@ -2799,23 +2799,38 @@ xrender_end_move (MetaCompositor *compositor,
+ #ifdef HAVE_COMPOSITE_EXTENSIONS
+ #endif
+ }
++#endif /* 0 */
+ 
+ static void
+ xrender_free_window (MetaCompositor *compositor,
+  MetaWindow *window)
+ {
+ #ifdef HAVE_COMPOSITE_EXTENSIONS
+-  /* FIXME: When an undecorated window is hidden this is called,
+- but the window does not get readded if it is subsequentally shown again
+- See http://bugzilla.gnome.org/show_bug.cgi?id=504876
+-
+- I don't *think* theres any need for this call anyway, leaving it out
+- does not seem to cause any side effects so far, but I should check with
+- someone who understands more. */
+-  /* destroy_win (compositor-display, window-xwindow, FALSE); */
++  MetaCompositorXRender *xrc;
++  MetaFrame *frame;
++  Window xwindow;
++
++  xrc = (MetaCompositorXRender *) compositor;
++  frame = meta_window_get_frame (window);
++  xwindow = None;
++
++  if (frame)
++{
++  xwindow = meta_frame_get_xwindow (frame);
++}
++  else
++{
++  /* FIXME: When an undecorated window is hidden this is called, but the
++   * window does not get readded if it is subsequentally shown again. See:
++   * http://bugzilla.gnome.org/show_bug.cgi?id=504876
++   */
++  /* xwindow = meta_window_get_xwindow (window); */
++}
++
++  if (xwindow != None)
++destroy_win (xrc-display, xwindow, FALSE);
+ #endif
+ }
+-#endif /* 0 */
+ 
+ static void
+ xrender_process_event (MetaCompositor *compositor,
+@@ -3095,6 +3110,7 @@ static MetaCompositor comp_info = {
+   xrender_process_event,
+   xrender_get_window_pixmap,
+   xrender_set_active_window,
++  xrender_free_window,
+   xrender_maximize_window,
+   xrender_unmaximize_window,
+ };
+diff --git a/src/compositor/compositor.c b/src/compositor/compositor.c
+index 0dcf2b2..1fea362 100644
+--- 

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

2015-08-16 Thread Balló György
Date: Sunday, August 16, 2015 @ 19:39:58
  Author: bgyorgy
Revision: 138427

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

Added:
  metacity/repos/community-i686/PKGBUILD
(from rev 138426, metacity/trunk/PKGBUILD)
  metacity/repos/community-i686/fix-crasher.patch
(from rev 138426, metacity/trunk/fix-crasher.patch)
  metacity/repos/community-i686/metacity.install
(from rev 138426, metacity/trunk/metacity.install)
  metacity/repos/community-x86_64/PKGBUILD
(from rev 138426, metacity/trunk/PKGBUILD)
  metacity/repos/community-x86_64/fix-crasher.patch
(from rev 138426, metacity/trunk/fix-crasher.patch)
  metacity/repos/community-x86_64/metacity.install
(from rev 138426, metacity/trunk/metacity.install)
Deleted:
  metacity/repos/community-i686/PKGBUILD
  metacity/repos/community-i686/metacity.install
  metacity/repos/community-x86_64/PKGBUILD
  metacity/repos/community-x86_64/metacity.install

+
 /PKGBUILD  |   74 +
 /metacity.install  |   22 +++
 community-i686/PKGBUILD|   28 -
 community-i686/fix-crasher.patch   |  103 +++
 community-i686/metacity.install|   11 ---
 community-x86_64/PKGBUILD  |   28 -
 community-x86_64/fix-crasher.patch |  103 +++
 community-x86_64/metacity.install  |   11 ---
 8 files changed, 302 insertions(+), 78 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-08-16 17:39:48 UTC (rev 138426)
+++ community-i686/PKGBUILD 2015-08-16 17:39:58 UTC (rev 138427)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Balló György ballogyor+arch at gmail dot com
-# Contributor: Jan de Groot j...@archlinux.org
-
-pkgname=metacity
-pkgver=3.16.1
-pkgrel=1
-pkgdesc=Legacy GNOME window manager
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('dconf' 'libcanberra' 'libgtop' 'libsm' 'gsettings-desktop-schemas' 
'gtk3' 'startup-notification' 'zenity')
-makedepends=('intltool' 'itstool')
-url=https://wiki.gnome.org/Projects/Metacity;
-install=metacity.install
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('7a2e4ab7e19bfa5e6fc75d80d66e79f7965b5a51435c9675b0e895179d256f86')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$pkgname \
-  --disable-static --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: metacity/repos/community-i686/PKGBUILD (from rev 138426, 
metacity/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-08-16 17:39:58 UTC (rev 138427)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Balló György ballogyor+arch at gmail dot com
+# Contributor: Jan de Groot j...@archlinux.org
+
+pkgname=metacity
+pkgver=3.16.1
+pkgrel=2
+pkgdesc=Legacy GNOME window manager
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dconf' 'libcanberra' 'libgtop' 'libsm' 'gsettings-desktop-schemas' 
'gtk3' 'startup-notification' 'zenity')
+makedepends=('intltool' 'itstool')
+url=https://wiki.gnome.org/Projects/Metacity;
+install=metacity.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+fix-crasher.patch)
+sha256sums=('7a2e4ab7e19bfa5e6fc75d80d66e79f7965b5a51435c9675b0e895179d256f86'
+'eb2a6043ff1a2fc0207a65c2bee18ada509108354379ddc12ef04566cfd7a524')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Fix crasher
+  patch -Np1 -i ../fix-crasher.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$pkgname \
+  --disable-static --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: metacity/repos/community-i686/fix-crasher.patch (from rev 138426, 
metacity/trunk/fix-crasher.patch)
===
--- community-i686/fix-crasher.patch(rev 0)
+++ community-i686/fix-crasher.patch2015-08-16 17:39:58 UTC (rev 138427)
@@ -0,0 +1,103 @@
+From a9f28dbc26f5211ef08889109db3dc8c7ba76aca Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Alberts=20Muktup=C4=81vels?= alberts.muktupav...@gmail.com
+Date: Tue, 7 Jul 2015 13:49:30 +0300
+Subject: compositor: fix possible crash closing/destroying window
+
+Partially restore call to destroy_win in compositor when calling
+meta_window_free. This is needed to ensure that we never call
+meta_window_get_frame_bounds while windows is destroying.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=751833
+
+diff --git a/src

[arch-commits] Commit in simutrans/trunk (PKGBUILD)

2015-08-23 Thread Balló György
Date: Monday, August 24, 2015 @ 04:40:10
  Author: bgyorgy
Revision: 138705

upgpkg: simutrans 120.0.1-2

Fix license

Modified:
  simutrans/trunk/PKGBUILD

--+
 PKGBUILD |9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-08-23 22:29:13 UTC (rev 138704)
+++ PKGBUILD2015-08-24 02:40:10 UTC (rev 138705)
@@ -8,11 +8,11 @@
 pkgname=simutrans
 pkgver=120.0.1
 _pkgver=120-0-1
-pkgrel=1
+pkgrel=2
 pkgdesc=An open source transportation simulation game
 arch=('i686' 'x86_64')
 url=http://simutrans.com/;
-license=('PerlArtistic')
+license=('custom:Artistic')
 depends=('gcc-libs' 'zlib' 'sdl_mixer' 'bzip2' 'simutrans-pak64')
 makedepends=('imagemagick' 'dos2unix')
 optdepends=('timidity++: play MIDI music')
@@ -61,9 +61,12 @@
 
   #data
   mkdir -p $pkgdir/usr/share/games/$pkgname
-  cp -r $pkgname/{config,font,music,text,themes} 
$pkgdir/usr/share/games/$pkgname
+  cp -r $pkgname/{config,font,music,text,themes} 
$pkgdir/usr/share/games/$pkgname
 
   #desktop file and icon
   install -Dm644 simutrans.png $pkgdir/usr/share/pixmaps/simutrans.png
   install -Dm644 simutrans.desktop 
$pkgdir/usr/share/applications/simutrans.desktop
+
+  #license
+  install -Dm644 simutrans/license.txt 
$pkgdir/usr/share/licenses/simutrans/license.txt
 }


[arch-commits] Commit in simutrans/repos (24 files)

2015-08-23 Thread Balló György
Date: Monday, August 24, 2015 @ 04:40:22
  Author: bgyorgy
Revision: 138706

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

Added:
  simutrans/repos/community-i686/PKGBUILD
(from rev 138705, simutrans/trunk/PKGBUILD)
  simutrans/repos/community-i686/config.patch
(from rev 138705, simutrans/trunk/config.patch)
  simutrans/repos/community-i686/no-optimise.patch
(from rev 138705, simutrans/trunk/no-optimise.patch)
  simutrans/repos/community-i686/path-for-game-data.patch
(from rev 138705, simutrans/trunk/path-for-game-data.patch)
  simutrans/repos/community-i686/settings-folder.patch
(from rev 138705, simutrans/trunk/settings-folder.patch)
  simutrans/repos/community-i686/simutrans.desktop
(from rev 138705, simutrans/trunk/simutrans.desktop)
  simutrans/repos/community-x86_64/PKGBUILD
(from rev 138705, simutrans/trunk/PKGBUILD)
  simutrans/repos/community-x86_64/config.patch
(from rev 138705, simutrans/trunk/config.patch)
  simutrans/repos/community-x86_64/no-optimise.patch
(from rev 138705, simutrans/trunk/no-optimise.patch)
  simutrans/repos/community-x86_64/path-for-game-data.patch
(from rev 138705, simutrans/trunk/path-for-game-data.patch)
  simutrans/repos/community-x86_64/settings-folder.patch
(from rev 138705, simutrans/trunk/settings-folder.patch)
  simutrans/repos/community-x86_64/simutrans.desktop
(from rev 138705, simutrans/trunk/simutrans.desktop)
Deleted:
  simutrans/repos/community-i686/PKGBUILD
  simutrans/repos/community-i686/config.patch
  simutrans/repos/community-i686/no-optimise.patch
  simutrans/repos/community-i686/path-for-game-data.patch
  simutrans/repos/community-i686/settings-folder.patch
  simutrans/repos/community-i686/simutrans.desktop
  simutrans/repos/community-x86_64/PKGBUILD
  simutrans/repos/community-x86_64/config.patch
  simutrans/repos/community-x86_64/no-optimise.patch
  simutrans/repos/community-x86_64/path-for-game-data.patch
  simutrans/repos/community-x86_64/settings-folder.patch
  simutrans/repos/community-x86_64/simutrans.desktop

---+
 /PKGBUILD |  144 
 /config.patch |   66 
 /no-optimise.patch|   80 +++
 /path-for-game-data.patch |   36 +++
 /settings-folder.patch|   24 
 /simutrans.desktop|   18 +++
 community-i686/PKGBUILD   |   69 -
 community-i686/config.patch   |   33 --
 community-i686/no-optimise.patch  |   40 ---
 community-i686/path-for-game-data.patch   |   18 ---
 community-i686/settings-folder.patch  |   12 --
 community-i686/simutrans.desktop  |9 -
 community-x86_64/PKGBUILD |   69 -
 community-x86_64/config.patch |   33 --
 community-x86_64/no-optimise.patch|   40 ---
 community-x86_64/path-for-game-data.patch |   18 ---
 community-x86_64/settings-folder.patch|   12 --
 community-x86_64/simutrans.desktop|9 -
 18 files changed, 368 insertions(+), 362 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-08-24 02:40:10 UTC (rev 138705)
+++ community-i686/PKGBUILD 2015-08-24 02:40:22 UTC (rev 138706)
@@ -1,69 +0,0 @@
-# $Id$
-# Maintainer: Balló György ballogyor+arch at gmail dot com
-# Contributor: Anton Bazhenov anton.bazhenov at gmail
-# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Gilles Gagniard gil...@gagniard.org
-# Contributor: JD Steffen jd at steffennet dot org
-
-pkgname=simutrans
-pkgver=120.0.1
-_pkgver=120-0-1
-pkgrel=1
-pkgdesc=An open source transportation simulation game
-arch=('i686' 'x86_64')
-url=http://simutrans.com/;
-license=('PerlArtistic')
-depends=('gcc-libs' 'zlib' 'sdl_mixer' 'bzip2' 'simutrans-pak64')
-makedepends=('imagemagick' 'dos2unix')
-optdepends=('timidity++: play MIDI music')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-src-$_pkgver.zip
-no-optimise.patch
-settings-folder.patch
-path-for-game-data.patch
-config.patch
-simutrans.desktop)
-md5sums=('40372b6417f235740b14a6bb7b389a78'
- '34b0472b08f3d9f38e289ba1639ef232'
- 'c87d9a9910bc371df5d50f7f1ec298bb'
- 'e716340d372af264ca05510facfe5d2c'
- 'c2f4e494168e235380373974c91a0803'
- 'f41f7a08ad517ef2b60412859eb49963')
-
-prepare() {
-  cd $srcdir
-
-  # Some files are distributed in DOS format
-  find . -type f -exec dos2unix -q '{}' \;
-
-  # Don't overwrite default optimization flags
-  patch -Np1 -i no-optimise.patch
-
-  # Adjust paths
-  patch -Np0 -i settings-folder.patch
-  patch -Np1 -i path-for-game-data.patch
-
-  # Configure the build process
-  cp config.template config.default
-  patch

[arch-commits] Commit in simutrans-pak64/repos/community-any (3 files)

2015-08-23 Thread Balló György
Date: Monday, August 24, 2015 @ 04:43:21
  Author: bgyorgy
Revision: 138708

archrelease: copy trunk to community-any

Added:
  simutrans-pak64/repos/community-any/PKGBUILD
(from rev 138707, simutrans-pak64/trunk/PKGBUILD)
  simutrans-pak64/repos/community-any/licence.txt
(from rev 138707, simutrans-pak64/trunk/licence.txt)
Deleted:
  simutrans-pak64/repos/community-any/PKGBUILD

-+
 PKGBUILD|   61 +++--
 licence.txt |  120 ++
 2 files changed, 153 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-08-24 02:43:16 UTC (rev 138707)
+++ PKGBUILD2015-08-24 02:43:21 UTC (rev 138708)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Balló György ballogyor+arch at gmail dot com
-# Contributor: Anton Bazhenov anton.bazhenov at gmail
-# Contributor: JD Steffen jd at steffennet dot org
-
-pkgname=simutrans-pak64
-pkgver=120.0.1
-_pkgver=120-0-1
-pkgrel=1
-pkgdesc=Low resolution graphics set for Simutrans
-arch=('any')
-url=http://simutrans.com/;
-license=('PerlArtistic')
-options=('!strip')
-source=(http://downloads.sourceforge.net/simutrans/simupak64-$_pkgver.zip)
-md5sums=('9d1068881b277bc2110b7c71c7d0d613')
-
-package() {
-  cd $srcdir
-  chmod -R 644 simutrans
-
-  #data
-  mkdir -p $pkgdir/usr/share/games/simutrans
-  cp -r simutrans/pak $pkgdir/usr/share/games/simutrans
-
-  find $pkgdir -type f -exec chmod 644 {} \;
-  find $pkgdir -type d -exec chmod 755 {} \;
-}

Copied: simutrans-pak64/repos/community-any/PKGBUILD (from rev 138707, 
simutrans-pak64/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-08-24 02:43:21 UTC (rev 138708)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Balló György ballogyor+arch at gmail dot com
+# Contributor: Anton Bazhenov anton.bazhenov at gmail
+# Contributor: JD Steffen jd at steffennet dot org
+
+pkgname=simutrans-pak64
+pkgver=120.0.1
+_pkgver=120-0-1
+pkgrel=2
+pkgdesc=Low resolution graphics set for Simutrans
+arch=('any')
+url=http://simutrans.com/;
+license=('custom:Artistic')
+options=('!strip')
+source=(http://downloads.sourceforge.net/simutrans/simupak64-$_pkgver.zip
+licence.txt)
+md5sums=('9d1068881b277bc2110b7c71c7d0d613'
+ '9cf3801b1349ac93b24c1515c9e5bb0a')
+
+package() {
+  cd $srcdir
+  chmod -R 644 simutrans
+
+  #data
+  mkdir -p $pkgdir/usr/share/games/simutrans
+  cp -r simutrans/pak $pkgdir/usr/share/games/simutrans
+
+  find $pkgdir -type f -exec chmod 644 {} \;
+  find $pkgdir -type d -exec chmod 755 {} \;
+
+  #license
+  install -Dm644 licence.txt 
$pkgdir/usr/share/licenses/simutrans-pak64/licence.txt
+}

Copied: simutrans-pak64/repos/community-any/licence.txt (from rev 138707, 
simutrans-pak64/trunk/licence.txt)
===
--- licence.txt (rev 0)
+++ licence.txt 2015-08-24 02:43:21 UTC (rev 138708)
@@ -0,0 +1,120 @@
+This is the simutrans source code for pak64.
+(c) since 2004 The Simutrans Team
+
+Simutrans source code is provided by the current simutrans team
+(tea...@simutrans.com) as copyright holder under the artistic licence.
+
+This includes the translations from:
+http://simutranslator.simutrans-germany.com/
+
+The following files are released under GNU General Public License V3:
+  vehicles/water/abo-ships.png (by stormoog)
+  player/road-depot-crystal.png (by vilvoh)
+  and the tropical park COM_12_04 (by vilvoh)
+
+-
+
+The Artistic License
+
+Preamble
+
+The intent of this document is to state the conditions under which a
+Package may be copied, such that the Copyright Holder maintains some
+semblance of artistic control over the development of the package,
+while giving the users of the package the right to use and distribute
+the Package in a more-or-less customary fashion, plus the right to make
+reasonable modifications.
+
+Definitions:
+
+* Package refers to the collection of files distributed by the
+  Copyright Holder, and derivatives of that collection of files
+  created through textual modification.
+* Standard Version refers to such a Package if it has not been
+  modified, or has been modified in accordance with the wishes
+  of the Copyright Holder.
+* Copyright Holder is whoever is named in the copyright or
+  copyrights for the package.
+* You is you, if you're thinking about copying or distributing
+  this Package.
+* Reasonable copying fee is whatever you can justify on the
+  basis of media cost, duplication charges, time of people involved,
+  and so on. (You will not be required to justify it to the
+  Copyright Holder, but only to the computing community at large
+  as a market that must bear the fee

[arch-commits] Commit in simutrans-pak64/trunk (PKGBUILD licence.txt)

2015-08-23 Thread Balló György
Date: Monday, August 24, 2015 @ 04:43:16
  Author: bgyorgy
Revision: 138707

upgpkg: simutrans-pak64 120.0.1-2

Fix license

Added:
  simutrans-pak64/trunk/licence.txt
Modified:
  simutrans-pak64/trunk/PKGBUILD

-+
 PKGBUILD|   13 --
 licence.txt |  120 ++
 2 files changed, 129 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-08-24 02:40:22 UTC (rev 138706)
+++ PKGBUILD2015-08-24 02:43:16 UTC (rev 138707)
@@ -6,14 +6,16 @@
 pkgname=simutrans-pak64
 pkgver=120.0.1
 _pkgver=120-0-1
-pkgrel=1
+pkgrel=2
 pkgdesc=Low resolution graphics set for Simutrans
 arch=('any')
 url=http://simutrans.com/;
-license=('PerlArtistic')
+license=('custom:Artistic')
 options=('!strip')
-source=(http://downloads.sourceforge.net/simutrans/simupak64-$_pkgver.zip)
-md5sums=('9d1068881b277bc2110b7c71c7d0d613')
+source=(http://downloads.sourceforge.net/simutrans/simupak64-$_pkgver.zip
+licence.txt)
+md5sums=('9d1068881b277bc2110b7c71c7d0d613'
+ '9cf3801b1349ac93b24c1515c9e5bb0a')
 
 package() {
   cd $srcdir
@@ -25,4 +27,7 @@
 
   find $pkgdir -type f -exec chmod 644 {} \;
   find $pkgdir -type d -exec chmod 755 {} \;
+
+  #license
+  install -Dm644 licence.txt 
$pkgdir/usr/share/licenses/simutrans-pak64/licence.txt
 }

Added: licence.txt
===
--- licence.txt (rev 0)
+++ licence.txt 2015-08-24 02:43:16 UTC (rev 138707)
@@ -0,0 +1,120 @@
+This is the simutrans source code for pak64.
+(c) since 2004 The Simutrans Team
+
+Simutrans source code is provided by the current simutrans team
+(tea...@simutrans.com) as copyright holder under the artistic licence.
+
+This includes the translations from:
+http://simutranslator.simutrans-germany.com/
+
+The following files are released under GNU General Public License V3:
+  vehicles/water/abo-ships.png (by stormoog)
+  player/road-depot-crystal.png (by vilvoh)
+  and the tropical park COM_12_04 (by vilvoh)
+
+-
+
+The Artistic License
+
+Preamble
+
+The intent of this document is to state the conditions under which a
+Package may be copied, such that the Copyright Holder maintains some
+semblance of artistic control over the development of the package,
+while giving the users of the package the right to use and distribute
+the Package in a more-or-less customary fashion, plus the right to make
+reasonable modifications.
+
+Definitions:
+
+* Package refers to the collection of files distributed by the
+  Copyright Holder, and derivatives of that collection of files
+  created through textual modification.
+* Standard Version refers to such a Package if it has not been
+  modified, or has been modified in accordance with the wishes
+  of the Copyright Holder.
+* Copyright Holder is whoever is named in the copyright or
+  copyrights for the package.
+* You is you, if you're thinking about copying or distributing
+  this Package.
+* Reasonable copying fee is whatever you can justify on the
+  basis of media cost, duplication charges, time of people involved,
+  and so on. (You will not be required to justify it to the
+  Copyright Holder, but only to the computing community at large
+  as a market that must bear the fee.)
+* Freely Available means that no fee is charged for the item
+  itself, though there may be fees involved in handling the item.
+  It also means that recipients of the item may redistribute it
+  under the same conditions they received it.
+
+1. You may make and give away verbatim copies of the source form of the
+Standard Version of this Package without restriction, provided that you
+duplicate all of the original copyright notices and associated disclaimers.
+
+2. You may apply bug fixes, portability fixes and other modifications
+derived from the Public Domain or from the Copyright Holder. A Package
+modified in such a way shall still be considered the Standard Version.
+
+3. You may otherwise modify your copy of this Package in any way, provided
+that you insert a prominent notice in each changed file stating how and
+when you changed that file, and provided that you do at least ONE of the
+following:
+
+a) place your modifications in the Public Domain or otherwise make them
+Freely Available, such as by posting said modifications to Usenet or
+an equivalent medium, or placing the modifications on a major archive
+site such as ftp.uu.net, or by allowing the Copyright Holder to include
+your modifications in the Standard Version of the Package.
+
+b) use the modified Package only within your corporation or organization.
+
+c) rename any non-standard executables so the names do not conflict
+with standard executables, which 

[arch-commits] Commit in lxdm/trunk (4 files)

2015-07-29 Thread Balló György
Date: Wednesday, July 29, 2015 @ 18:15:33
  Author: bgyorgy
Revision: 137597

upgpkg: lxdm 0.5.1-2

Kill user processes on logout (fix second login with systemd = 222); update 
Xsession file with changes from LightDM

Added:
  lxdm/trunk/lxdm.git-2abf1d971198d224c68b20c56862df2fe7c6a648.patch
  lxdm/trunk/lxdm.git-4dfe7924a220643600be58861b01f186225fe251.patch
Modified:
  lxdm/trunk/PKGBUILD
  lxdm/trunk/Xsession

-+
 PKGBUILD|   14 +
 Xsession|   11 +
 lxdm.git-2abf1d971198d224c68b20c56862df2fe7c6a648.patch |  118 ++
 lxdm.git-4dfe7924a220643600be58861b01f186225fe251.patch |   64 +++
 4 files changed, 202 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-29 08:59:12 UTC (rev 137596)
+++ PKGBUILD2015-07-29 16:15:33 UTC (rev 137597)
@@ -6,7 +6,7 @@
 
 pkgname=lxdm
 pkgver=0.5.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Lightweight X11 Display Manager'
 arch=('i686' 'x86_64')
 url=https://sourceforge.net/projects/lxdm/;
@@ -24,15 +24,23 @@
 source=(http://downloads.sourceforge.net/lxdm/$pkgname-$pkgver.tar.xz
 default-config.patch
 lxdm.pam
-Xsession)
+Xsession
+lxdm.git-2abf1d971198d224c68b20c56862df2fe7c6a648.patch
+lxdm.git-4dfe7924a220643600be58861b01f186225fe251.patch)
 md5sums=('9e03ce5f6d303bc9b689732401934dc6'
  'f0ae6c072f151104c53a030fd7757821'
  'c941ef896248bc7c03901b513490425c'
- 'd9c8f8c9e6de52dbc389696454c8f572')
+ '6ff73570368501a06ee7badc8e415d0a'
+ '54c3de1d6108f8d68dea31622dd976e1'
+ '2522db72aeddffc22e349bfea24ae48e')
 
 prepare(){
   cd $srcdir/$pkgname-$pkgver
 
+  # Kill user processes on logout (fix second login with systemd = 222)
+  patch -Np1 -i ../lxdm.git-2abf1d971198d224c68b20c56862df2fe7c6a648.patch
+  patch -Np1 -i ../lxdm.git-4dfe7924a220643600be58861b01f186225fe251.patch
+
   # Adjust Arch-specific settings
   patch -Np1 -i ../default-config.patch
 

Modified: Xsession
===
--- Xsession2015-07-29 08:59:12 UTC (rev 137596)
+++ Xsession2015-07-29 16:15:33 UTC (rev 137597)
@@ -23,7 +23,7 @@
 for file in /etc/X11/Xresources $HOME/.Xresources; do
 if [ -f $file ]; then
 echo Loading resource: $file
-xrdb -nocpp -merge $file
+xrdb -merge $file
 fi
 done
 
@@ -48,7 +48,7 @@
 
 unset XKB_IN_USE
 
-# Run all system xinitrc shell scripts.
+# Run all system xinitrc shell scripts
 xinitdir=/etc/X11/xinit/xinitrc.d
 if [ -d $xinitdir ]; then
 for script in $xinitdir/*; do
@@ -59,6 +59,13 @@
 done
 fi
 
+# Run user xsession shell script
+script=$HOME/.xsession
+if [ -x $script -a ! -d $script ]; then
+echo Loading xsession script $script
+. $script
+fi
+
 echo X session wrapper complete, running session $LXSESSION
 
 exec $LXSESSION

Added: lxdm.git-2abf1d971198d224c68b20c56862df2fe7c6a648.patch
===
--- lxdm.git-2abf1d971198d224c68b20c56862df2fe7c6a648.patch 
(rev 0)
+++ lxdm.git-2abf1d971198d224c68b20c56862df2fe7c6a648.patch 2015-07-29 
16:15:33 UTC (rev 137597)
@@ -0,0 +1,118 @@
+From 2abf1d971198d224c68b20c56862df2fe7c6a648 Mon Sep 17 00:00:00 2001
+From: dgod dgod@gmail.com
+Date: Fri, 24 Jul 2015 20:25:05 +0800
+Subject: [PATCH] try kill left process when session end, by check the
+ XDG_SESSION_ID
+
+---
+ src/pam.c | 72 +++
+ 1 file changed, 72 insertions(+)
+
+diff --git a/src/pam.c b/src/pam.c
+index 43bd687..940fdd2 100644
+--- a/src/pam.c
 b/src/pam.c
+@@ -42,6 +42,7 @@
+ #include errno.h
+ #include poll.h
+ #include sys/stat.h
++#include sys/wait.h
+ 
+ #include pwd.h
+ #include grp.h
+@@ -300,12 +301,72 @@ int lxdm_auth_session_begin(LXDM_AUTH *a,const char 
*name,int tty,int display,ch
+   }
+   err = pam_open_session(a-handle, 0); /* FIXME pam session failed */
+   if( err != PAM_SUCCESS )
++  {
+   g_warning( pam open session error \%s\\n, 
pam_strerror(a-handle, err));
++  }
+   else
++  {
+   a-in_session=1;
++  }
+   return 0;
+ }
+ 
++static int proc_filter(const struct dirent *d)
++{
++int c=d-d_name[0];
++return c='1'  c='9';
++}
++
++static int check_process_sid(int pid,const char *sid)
++{
++  char path[128];
++  FILE *fp;
++  gchar *env_data,*p;
++  gsize env_len;
++  int res=0;
++
++  sprintf(path,/proc/%d/environ,pid);
++  if(!g_file_get_contents(path,env_data,env_len,NULL))
++  {
++  return 0;
++  }
++  for(p=env_data;p!=NULL  p-env_dataenv_len;)
++  {
++  if(!strncmp(p,XDG_SESSION_ID=,15))
++ 

[arch-commits] Commit in lxdm/repos (24 files)

2015-07-29 Thread Balló György
Date: Wednesday, July 29, 2015 @ 18:15:49
  Author: bgyorgy
Revision: 137598

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

Added:
  lxdm/repos/community-i686/PKGBUILD
(from rev 137597, lxdm/trunk/PKGBUILD)
  lxdm/repos/community-i686/Xsession
(from rev 137597, lxdm/trunk/Xsession)
  lxdm/repos/community-i686/default-config.patch
(from rev 137597, lxdm/trunk/default-config.patch)
  
lxdm/repos/community-i686/lxdm.git-2abf1d971198d224c68b20c56862df2fe7c6a648.patch
(from rev 137597, 
lxdm/trunk/lxdm.git-2abf1d971198d224c68b20c56862df2fe7c6a648.patch)
  
lxdm/repos/community-i686/lxdm.git-4dfe7924a220643600be58861b01f186225fe251.patch
(from rev 137597, 
lxdm/trunk/lxdm.git-4dfe7924a220643600be58861b01f186225fe251.patch)
  lxdm/repos/community-i686/lxdm.install
(from rev 137597, lxdm/trunk/lxdm.install)
  lxdm/repos/community-i686/lxdm.pam
(from rev 137597, lxdm/trunk/lxdm.pam)
  lxdm/repos/community-x86_64/PKGBUILD
(from rev 137597, lxdm/trunk/PKGBUILD)
  lxdm/repos/community-x86_64/Xsession
(from rev 137597, lxdm/trunk/Xsession)
  lxdm/repos/community-x86_64/default-config.patch
(from rev 137597, lxdm/trunk/default-config.patch)
  
lxdm/repos/community-x86_64/lxdm.git-2abf1d971198d224c68b20c56862df2fe7c6a648.patch
(from rev 137597, 
lxdm/trunk/lxdm.git-2abf1d971198d224c68b20c56862df2fe7c6a648.patch)
  
lxdm/repos/community-x86_64/lxdm.git-4dfe7924a220643600be58861b01f186225fe251.patch
(from rev 137597, 
lxdm/trunk/lxdm.git-4dfe7924a220643600be58861b01f186225fe251.patch)
  lxdm/repos/community-x86_64/lxdm.install
(from rev 137597, lxdm/trunk/lxdm.install)
  lxdm/repos/community-x86_64/lxdm.pam
(from rev 137597, lxdm/trunk/lxdm.pam)
Deleted:
  lxdm/repos/community-i686/PKGBUILD
  lxdm/repos/community-i686/Xsession
  lxdm/repos/community-i686/default-config.patch
  lxdm/repos/community-i686/lxdm.install
  lxdm/repos/community-i686/lxdm.pam
  lxdm/repos/community-x86_64/PKGBUILD
  lxdm/repos/community-x86_64/Xsession
  lxdm/repos/community-x86_64/default-config.patch
  lxdm/repos/community-x86_64/lxdm.install
  lxdm/repos/community-x86_64/lxdm.pam

--+
 /PKGBUILD|  
142 ++
 /Xsession|  
142 ++
 /default-config.patch|   
42 ++
 /lxdm.install|   
26 +
 /lxdm.pam|   
14 
 community-i686/PKGBUILD  |   
63 
 community-i686/Xsession  |   
64 
 community-i686/default-config.patch  |   
21 -
 community-i686/lxdm.git-2abf1d971198d224c68b20c56862df2fe7c6a648.patch   |  
118 
 community-i686/lxdm.git-4dfe7924a220643600be58861b01f186225fe251.patch   |   
64 
 community-i686/lxdm.install  |   
13 
 community-i686/lxdm.pam  |
7 
 community-x86_64/PKGBUILD|   
63 
 community-x86_64/Xsession|   
64 
 community-x86_64/default-config.patch|   
21 -
 community-x86_64/lxdm.git-2abf1d971198d224c68b20c56862df2fe7c6a648.patch |  
118 
 community-x86_64/lxdm.git-4dfe7924a220643600be58861b01f186225fe251.patch |   
64 
 community-x86_64/lxdm.install|   
13 
 community-x86_64/lxdm.pam|
7 
 19 files changed, 730 insertions(+), 336 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-29 16:15:33 UTC (rev 137597)
+++ community-i686/PKGBUILD 2015-07-29 16:15:49 UTC (rev 137598)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Balló György ballogyor+arch at gmail dot com
-# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: AndyRTR andy...@archlinux.org
-# Contributor: kiefer jorgelmad...@gmail.com
-
-pkgname=lxdm
-pkgver=0.5.1
-pkgrel=1
-pkgdesc='Lightweight X11 Display Manager'
-arch=('i686' 'x86_64')
-url=https://sourceforge.net/projects/lxdm/;
-license=('GPL')
-groups=('lxde')
-depends=('gtk2' 'xorg-server')
-makedepends=('intltool' 'iso-codes')
-optdepends=('gtk-engines: default GTK+ theme'
-'iso-codes: show language names in language chooser'
-'librsvg: display the default background')
-install=$pkgname.install
-backup=('etc/lxdm/lxdm.conf' 'etc/pam.d/lxdm' 'etc/lxdm/Xsession'
-'etc/lxdm/PreLogin' 'etc/lxdm/LoginReady' 'etc/lxdm/PostLogin

[arch-commits] Commit in lxqt-config (6 files)

2015-07-29 Thread Balló György
Date: Thursday, July 30, 2015 @ 00:10:43
  Author: bgyorgy
Revision: 137600

Fix build with qt 5.5

Added:
  lxqt-config/repos/community-i686/fix-build.patch
  lxqt-config/repos/community-x86_64/fix-build.patch
  lxqt-config/trunk/fix-build.patch
Modified:
  lxqt-config/repos/community-i686/PKGBUILD
  lxqt-config/repos/community-x86_64/PKGBUILD
  lxqt-config/trunk/PKGBUILD

+
 repos/community-i686/PKGBUILD  |   13 +++--
 repos/community-i686/fix-build.patch   |   21 +
 repos/community-x86_64/PKGBUILD|   13 +++--
 repos/community-x86_64/fix-build.patch |   21 +
 trunk/PKGBUILD |   13 +++--
 trunk/fix-build.patch  |   21 +
 6 files changed, 96 insertions(+), 6 deletions(-)

Modified: repos/community-i686/PKGBUILD
===
--- repos/community-i686/PKGBUILD   2015-07-29 16:43:35 UTC (rev 137599)
+++ repos/community-i686/PKGBUILD   2015-07-29 22:10:43 UTC (rev 137600)
@@ -11,10 +11,19 @@
 license=(GPL2)
 depends=(liblxqt libxcursor xorg-xrandr)
 makedepends=(cmake qt5-tools)
-source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=(9d6b0d21846ac5d9c62c5806ce04383b92708ab7bd095b46d0ac9fbb3f84b913)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;
+fix-build.patch)
+sha256sums=('9d6b0d21846ac5d9c62c5806ce04383b92708ab7bd095b46d0ac9fbb3f84b913'
+'276f04a31089e724793fae278238a397d5a1409fd8348cf529f3e75b47da94cc')
 
+prepare() {
+   cd $srcdir/$pkgname-$pkgver
 
+   # fix build with qt 5.5
+   # https://github.com/lxde/lxqt-config/commit/a5045dc9
+   patch -Np1 -i ../fix-build.patch
+}
+
 build() {
mkdir -p build
cd build

Added: repos/community-i686/fix-build.patch
===
--- repos/community-i686/fix-build.patch(rev 0)
+++ repos/community-i686/fix-build.patch2015-07-29 22:10:43 UTC (rev 
137600)
@@ -0,0 +1,21 @@
+From a5045dc99d7fc3baad364cafa5a5a06cec69e29c Mon Sep 17 00:00:00 2001
+From: rezso re...@rezso.net
+Date: Sun, 5 Jul 2015 20:38:44 +0200
+Subject: [PATCH] fix build with qt 5.5
+
+---
+ lxqt-config-monitor/monitor.h | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/lxqt-config-monitor/monitor.h b/lxqt-config-monitor/monitor.h
+index 9f87bc0..b5df05b 100644
+--- a/lxqt-config-monitor/monitor.h
 b/lxqt-config-monitor/monitor.h
+@@ -20,6 +20,7 @@
+ #ifndef _MONITOR_H_
+ #define _MONITOR_H_
+ 
++#include QObject
+ #include QStringList
+ #include QHash
+ #include QList

Modified: repos/community-x86_64/PKGBUILD
===
--- repos/community-x86_64/PKGBUILD 2015-07-29 16:43:35 UTC (rev 137599)
+++ repos/community-x86_64/PKGBUILD 2015-07-29 22:10:43 UTC (rev 137600)
@@ -11,10 +11,19 @@
 license=(GPL2)
 depends=(liblxqt libxcursor xorg-xrandr)
 makedepends=(cmake qt5-tools)
-source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=(9d6b0d21846ac5d9c62c5806ce04383b92708ab7bd095b46d0ac9fbb3f84b913)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;
+fix-build.patch)
+sha256sums=('9d6b0d21846ac5d9c62c5806ce04383b92708ab7bd095b46d0ac9fbb3f84b913'
+'276f04a31089e724793fae278238a397d5a1409fd8348cf529f3e75b47da94cc')
 
+prepare() {
+   cd $srcdir/$pkgname-$pkgver
 
+   # fix build with qt 5.5
+   # https://github.com/lxde/lxqt-config/commit/a5045dc9
+   patch -Np1 -i ../fix-build.patch
+}
+
 build() {
mkdir -p build
cd build

Added: repos/community-x86_64/fix-build.patch
===
--- repos/community-x86_64/fix-build.patch  (rev 0)
+++ repos/community-x86_64/fix-build.patch  2015-07-29 22:10:43 UTC (rev 
137600)
@@ -0,0 +1,21 @@
+From a5045dc99d7fc3baad364cafa5a5a06cec69e29c Mon Sep 17 00:00:00 2001
+From: rezso re...@rezso.net
+Date: Sun, 5 Jul 2015 20:38:44 +0200
+Subject: [PATCH] fix build with qt 5.5
+
+---
+ lxqt-config-monitor/monitor.h | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/lxqt-config-monitor/monitor.h b/lxqt-config-monitor/monitor.h
+index 9f87bc0..b5df05b 100644
+--- a/lxqt-config-monitor/monitor.h
 b/lxqt-config-monitor/monitor.h
+@@ -20,6 +20,7 @@
+ #ifndef _MONITOR_H_
+ #define _MONITOR_H_
+ 
++#include QObject
+ #include QStringList
+ #include QHash
+ #include QList

Modified: trunk/PKGBUILD
===
--- trunk/PKGBUILD  2015-07-29 16:43:35 UTC (rev 137599)
+++ trunk/PKGBUILD  2015-07-29 22:10:43 UTC (rev 137600)
@@ -11,10 +11,19 @@
 license=(GPL2)
 depends=(liblxqt libxcursor xorg-xrandr)
 makedepends=(cmake 

[arch-commits] Commit in lxdm/trunk (4 files)

2015-07-31 Thread Balló György
Date: Friday, July 31, 2015 @ 16:08:27
  Author: bgyorgy
Revision: 137641

upgpkg: lxdm 0.5.1-3

Apply fixes from git

Added:
  lxdm/trunk/git-fixes.patch
Modified:
  lxdm/trunk/PKGBUILD
Deleted:
  lxdm/trunk/lxdm.git-2abf1d971198d224c68b20c56862df2fe7c6a648.patch
  lxdm/trunk/lxdm.git-4dfe7924a220643600be58861b01f186225fe251.patch

-+
 PKGBUILD|   17 -
 git-fixes.patch |  217 ++
 lxdm.git-2abf1d971198d224c68b20c56862df2fe7c6a648.patch |  118 ---
 lxdm.git-4dfe7924a220643600be58861b01f186225fe251.patch |   64 
 4 files changed, 224 insertions(+), 192 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-31 13:30:04 UTC (rev 137640)
+++ PKGBUILD2015-07-31 14:08:27 UTC (rev 137641)
@@ -6,7 +6,7 @@
 
 pkgname=lxdm
 pkgver=0.5.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Lightweight X11 Display Manager'
 arch=('i686' 'x86_64')
 url=https://sourceforge.net/projects/lxdm/;
@@ -22,24 +22,21 @@
 'etc/lxdm/PreLogin' 'etc/lxdm/LoginReady' 'etc/lxdm/PostLogin'
 'etc/lxdm/PostLogout' 'etc/lxdm/PreReboot' 'etc/lxdm/PreShutdown')
 source=(http://downloads.sourceforge.net/lxdm/$pkgname-$pkgver.tar.xz
+git-fixes.patch
 default-config.patch
 lxdm.pam
-Xsession
-lxdm.git-2abf1d971198d224c68b20c56862df2fe7c6a648.patch
-lxdm.git-4dfe7924a220643600be58861b01f186225fe251.patch)
+Xsession)
 md5sums=('9e03ce5f6d303bc9b689732401934dc6'
+ '8f514a4ba8fe204c8f0db293246dba3d'
  'f0ae6c072f151104c53a030fd7757821'
  'c941ef896248bc7c03901b513490425c'
- '6ff73570368501a06ee7badc8e415d0a'
- '54c3de1d6108f8d68dea31622dd976e1'
- '2522db72aeddffc22e349bfea24ae48e')
+ '6ff73570368501a06ee7badc8e415d0a')
 
 prepare(){
   cd $srcdir/$pkgname-$pkgver
 
-  # Kill user processes on logout (fix second login with systemd = 222)
-  patch -Np1 -i ../lxdm.git-2abf1d971198d224c68b20c56862df2fe7c6a648.patch
-  patch -Np1 -i ../lxdm.git-4dfe7924a220643600be58861b01f186225fe251.patch
+  # Apply fixes from git
+  patch -Np1 -i ../git-fixes.patch
 
   # Adjust Arch-specific settings
   patch -Np1 -i ../default-config.patch

Added: git-fixes.patch
===
--- git-fixes.patch (rev 0)
+++ git-fixes.patch 2015-07-31 14:08:27 UTC (rev 137641)
@@ -0,0 +1,217 @@
+diff --git a/data/themes/Industrial/gtk.css b/data/themes/Industrial/gtk.css
+index 7621345..179f0d6 100644
+--- a/data/themes/Industrial/gtk.css
 b/data/themes/Industrial/gtk.css
+@@ -1,6 +1,6 @@
+ #lxdm {
+   background-image: url(wave.svg);
+-  background-size: 100%;
++  background-repeat: round;
+ }
+ 
+ #bottom_pane {
+@@ -12,10 +12,12 @@
+   color: #ff;
+ }
+ 
+-#user_list, #login_entry {
+-  background-image: none;
++#prompt {
++  font: Sans 14;
++  color: #00;
+ }
+ 
+-#prompt, #bottom_pane GtkLabel {
+-  color: #ff;
++#bottom_pane GtkLabel {
++  font: Sans 12;
++  color: #9E9D9B;
+ }
+diff --git a/src/lxdm.c b/src/lxdm.c
+index 507189d..842f4b8 100644
+--- a/src/lxdm.c
 b/src/lxdm.c
+@@ -1269,6 +1269,9 @@ void lxdm_do_login(struct passwd *pw, char *session, 
char *lang, char *option)
+   {
+   if(s) lxsession_free(s);
+   lxsession_set_active(prev);
++  g_free(session_name);
++  g_free(session_exec);
++  g_free(session_desktop_names);
+   return;
+   }
+   if(!s) s=lxsession_find_idle();
+@@ -1514,7 +1517,7 @@ static void lxdm_signal_handler(void *data,int sig)
+   switch(sig){
+   case SIGTERM:
+   case SIGINT:
+-  g_critical(QUIT BY SIGNAL\n);
++  g_critical(QUIT BY SIGNAL %d\n,sig);
+   lxdm_quit_self(0);
+   break;
+   default:
+@@ -1650,6 +1653,7 @@ static GString *lxdm_user_cmd(void *data,int user,int 
arc,char **arg)
+   if(p)
+   {
+   res=g_string_new_len(p,len);
++  g_free(p);
+   }
+   g_key_file_free(kf);
+   }
+diff --git a/src/pam.c b/src/pam.c
+index 43bd687..a377157 100644
+--- a/src/pam.c
 b/src/pam.c
+@@ -42,6 +42,7 @@
+ #include errno.h
+ #include poll.h
+ #include sys/stat.h
++#include sys/wait.h
+ 
+ #include pwd.h
+ #include grp.h
+@@ -300,12 +301,72 @@ int lxdm_auth_session_begin(LXDM_AUTH *a,const char 
*name,int tty,int display,ch
+   }
+   err = pam_open_session(a-handle, 0); /* FIXME pam session failed */
+   if( err != PAM_SUCCESS )
++  {
+   g_warning( pam open session error \%s\\n, 
pam_strerror(a-handle, err));
++  }
+   else
++  {
+   a-in_session=1;
++  }
+   return 

[arch-commits] Commit in lxdm/repos (22 files)

2015-07-31 Thread Balló György
Date: Friday, July 31, 2015 @ 16:08:41
  Author: bgyorgy
Revision: 137642

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

Added:
  lxdm/repos/community-i686/PKGBUILD
(from rev 137641, lxdm/trunk/PKGBUILD)
  lxdm/repos/community-i686/Xsession
(from rev 137641, lxdm/trunk/Xsession)
  lxdm/repos/community-i686/default-config.patch
(from rev 137641, lxdm/trunk/default-config.patch)
  lxdm/repos/community-i686/git-fixes.patch
(from rev 137641, lxdm/trunk/git-fixes.patch)
  lxdm/repos/community-i686/lxdm.install
(from rev 137641, lxdm/trunk/lxdm.install)
  lxdm/repos/community-i686/lxdm.pam
(from rev 137641, lxdm/trunk/lxdm.pam)
  lxdm/repos/community-x86_64/PKGBUILD
(from rev 137641, lxdm/trunk/PKGBUILD)
  lxdm/repos/community-x86_64/Xsession
(from rev 137641, lxdm/trunk/Xsession)
  lxdm/repos/community-x86_64/default-config.patch
(from rev 137641, lxdm/trunk/default-config.patch)
  lxdm/repos/community-x86_64/git-fixes.patch
(from rev 137641, lxdm/trunk/git-fixes.patch)
  lxdm/repos/community-x86_64/lxdm.install
(from rev 137641, lxdm/trunk/lxdm.install)
  lxdm/repos/community-x86_64/lxdm.pam
(from rev 137641, lxdm/trunk/lxdm.pam)
Deleted:
  lxdm/repos/community-i686/PKGBUILD
  lxdm/repos/community-i686/Xsession
  lxdm/repos/community-i686/default-config.patch
  lxdm/repos/community-i686/lxdm.install
  lxdm/repos/community-i686/lxdm.pam
  lxdm/repos/community-x86_64/PKGBUILD
  lxdm/repos/community-x86_64/Xsession
  lxdm/repos/community-x86_64/default-config.patch
  lxdm/repos/community-x86_64/lxdm.install
  lxdm/repos/community-x86_64/lxdm.pam

---+
 /PKGBUILD |  136 
 /Xsession |  142 
 /default-config.patch |   42 ++
 /lxdm.install |   26 +++
 /lxdm.pam |   14 ++
 community-i686/PKGBUILD   |   71 --
 community-i686/Xsession   |   71 --
 community-i686/default-config.patch   |   21 ---
 community-i686/git-fixes.patch|  217 
 community-i686/lxdm.install   |   13 -
 community-i686/lxdm.pam   |7 -
 community-x86_64/PKGBUILD |   71 --
 community-x86_64/Xsession |   71 --
 community-x86_64/default-config.patch |   21 ---
 community-x86_64/git-fixes.patch  |  217 
 community-x86_64/lxdm.install |   13 -
 community-x86_64/lxdm.pam |7 -
 17 files changed, 794 insertions(+), 366 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-31 14:08:27 UTC (rev 137641)
+++ community-i686/PKGBUILD 2015-07-31 14:08:41 UTC (rev 137642)
@@ -1,71 +0,0 @@
-# $Id$
-# Maintainer: Balló György ballogyor+arch at gmail dot com
-# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: AndyRTR andy...@archlinux.org
-# Contributor: kiefer jorgelmad...@gmail.com
-
-pkgname=lxdm
-pkgver=0.5.1
-pkgrel=2
-pkgdesc='Lightweight X11 Display Manager'
-arch=('i686' 'x86_64')
-url=https://sourceforge.net/projects/lxdm/;
-license=('GPL')
-groups=('lxde')
-depends=('gtk2' 'xorg-server')
-makedepends=('intltool' 'iso-codes')
-optdepends=('gtk-engines: default GTK+ theme'
-'iso-codes: show language names in language chooser'
-'librsvg: display the default background')
-install=$pkgname.install
-backup=('etc/lxdm/lxdm.conf' 'etc/pam.d/lxdm' 'etc/lxdm/Xsession'
-'etc/lxdm/PreLogin' 'etc/lxdm/LoginReady' 'etc/lxdm/PostLogin'
-'etc/lxdm/PostLogout' 'etc/lxdm/PreReboot' 'etc/lxdm/PreShutdown')
-source=(http://downloads.sourceforge.net/lxdm/$pkgname-$pkgver.tar.xz
-default-config.patch
-lxdm.pam
-Xsession
-lxdm.git-2abf1d971198d224c68b20c56862df2fe7c6a648.patch
-lxdm.git-4dfe7924a220643600be58861b01f186225fe251.patch)
-md5sums=('9e03ce5f6d303bc9b689732401934dc6'
- 'f0ae6c072f151104c53a030fd7757821'
- 'c941ef896248bc7c03901b513490425c'
- '6ff73570368501a06ee7badc8e415d0a'
- '54c3de1d6108f8d68dea31622dd976e1'
- '2522db72aeddffc22e349bfea24ae48e')
-
-prepare(){
-  cd $srcdir/$pkgname-$pkgver
-
-  # Kill user processes on logout (fix second login with systemd = 222)
-  patch -Np1 -i ../lxdm.git-2abf1d971198d224c68b20c56862df2fe7c6a648.patch
-  patch -Np1 -i ../lxdm.git-4dfe7924a220643600be58861b01f186225fe251.patch
-
-  # Adjust Arch-specific settings
-  patch -Np1 -i ../default-config.patch
-
-  # Use our custom pam and Xsession files
-  cp ../lxdm.pam pam/lxdm
-  cp ../Xsession data/Xsession
-
-  # Support for pulseaudio
-  echo 'test -x /usr/bin/pax11publish  /usr/bin/pax11publish -r' 
data/PostLogout.in
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver

[arch-commits] Commit in cinnamon/trunk (3 files)

2015-08-11 Thread Balló György
Date: Tuesday, August 11, 2015 @ 16:52:17
  Author: bgyorgy
Revision: 138244

upgpkg: cinnamon 2.6.13-3

Apply some fixes (FS#45615)

Added:
  cinnamon/trunk/dont-hardcode-nemo.patch
  cinnamon/trunk/fix-keyboard-flags.patch
Modified:
  cinnamon/trunk/PKGBUILD

--+
 PKGBUILD |   36 
 dont-hardcode-nemo.patch |   33 +
 fix-keyboard-flags.patch |   21 +
 3 files changed, 86 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-08-11 13:41:06 UTC (rev 138243)
+++ PKGBUILD2015-08-11 14:52:17 UTC (rev 138244)
@@ -6,7 +6,7 @@
 
 pkgname=cinnamon
 pkgver=2.6.13
-pkgrel=2
+pkgrel=3
 pkgdesc=Linux desktop which provides advanced innovative features and a 
traditional user experience
 arch=('i686' 'x86_64')
 url=http://cinnamon.linuxmint.com/;
@@ -26,11 +26,15 @@
 
source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/Cinnamon/archive/$pkgver.tar.gz;
 set_wheel.patch
 gnome-3.14.patch
-default-theme.patch)
+default-theme.patch
+dont-hardcode-nemo.patch
+fix-keyboard-flags.patch)
 sha256sums=('f349403901bf3e84cda2ebd425dc6f58850059092775e285862067f120debe86'
 '2f0fec7d733aa19be426a0e1aecff1af451183de038d2868a2ee3195f227956e'
 '5ecce3c1617c0479ef972904944e5a58d24de31d00a527d44921e2a44d91'
-'566585873f38a79ec248b916645a2e081abec3c6d4df2c34339cde1f35375cc5')
+'566585873f38a79ec248b916645a2e081abec3c6d4df2c34339cde1f35375cc5'
+'26a9fb9a3855759cc7d5fa9a195ae8860d5c6b3e12adc1bfe86269e047c119b4'
+'35478dd7df2ecee484bbe758885ed55797e0567643615984973d153f34700016')
 
 prepare() {
   cd ${srcdir}/Cinnamon*
@@ -42,12 +46,18 @@
   # Use wheel group instread of sudo
   patch -Np1 -i ../set_wheel.patch
 
-  # Some fixes for GNOME 3.14
+  # Make Adwaita icon theme selectable in theme settings
   patch -Np1 -i ../gnome-3.14.patch
 
   # Set default theme to 'cinnamon'
   patch -Np1 -i ../default-theme.patch
 
+  # Don't hardcode Nemo
+  patch -Np1 -i ../dont-hardcode-nemo.patch
+
+  # Fix missing flags in keyboard applet (FS#45615)
+  patch -Np1 -i ../fix-keyboard-flags.patch
+
   # Add polkit agent to required components
   sed -i 
's/RequiredComponents=\(.*\)$/RequiredComponents=\1polkit-gnome-authentication-agent-1;/'
 \
 files/usr/share/cinnamon-session/sessions/cinnamon*.session
@@ -69,6 +79,24 @@
   # Fix selected background color in Cinnamon Settings for Adwaita theme
   sed -i 's/@selected_bg_color;/@theme_selected_bg_color;/' \
 files/usr/lib/cinnamon-settings/cinnamon-settings.py
+
+  # Fix missing icons with the Adwaita theme
+  sed -i 's/gtk-file/text-x-generic/' 
docs/applets-examples/fin...@cinnamon.org/applet.js  src/cinnamon-util.c
+  sed -i s/SECONDARY, 'ok'/SECONDARY, 'gtk-apply'/
+  s/SECONDARY, 'stop'/SECONDARY, 'dialog-error'/ 
files/usr/lib/cinnamon-desktop-editor/cinnamon-desktop-editor.py
+  sed -i s/'gnome-panel-launcher'/'system-run'/ 
files/usr/lib/cinnamon-desktop-editor/cinnamon-desktop-editor.py
+  sed -i 's/icon_namegnome-panel-launcher/icon_namesystem-run/' 
files/usr/lib/cinnamon-desktop-editor/launcher-editor.ui
+  sed -i 's/reload/view-refresh/' 
files/usr/lib/cinnamon-settings-users/cinnamon-settings-users.py
+  sed -i 's/gtk-dialog-question/dialog-question/
+  s/gtk-directory/folder/' 
files/usr/lib/cinnamon-settings/modules/cs_default.py
+  sed -i 's/display/video-display/
+  s/access/preferences-desktop-accessibility/
+  s/gnome-panel-launcher/system-run/' 
files/usr/lib/cinnamon-settings/modules/cs_keyboard.py
+  sed -i 's/stock_calendar/x-office-calendar/' 
files/usr/share/cinnamon/applets/calen...@cinnamon.org/metadata.json
+  sed -i 's/keyboard/input-keyboard/' 
files/usr/share/cinnamon/applets/keybo...@cinnamon.org/metadata.json
+  sed -i 's/desktop/user-desktop/' 
files/usr/share/cinnamon/applets/show-desk...@cinnamon.org/metadata.json
+  sed -i 's/stock_volume/multimedia-volume-control/' 
files/usr/share/cinnamon/applets/so...@cinnamon.org/metadata.json
+  sed -i 's/stock_calendar/x-office-calendar/' 
files/usr/share/cinnamon/desklets/cl...@cinnamon.org/metadata.json
 }
 
 build() {

Added: dont-hardcode-nemo.patch
===
--- dont-hardcode-nemo.patch(rev 0)
+++ dont-hardcode-nemo.patch2015-08-11 14:52:17 UTC (rev 138244)
@@ -0,0 +1,33 @@
+From 3dc5f008af8b726fd8cb1090b0a2056edb62876d Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Gy=C3=B6rgy=20Ball=C3=B3?= ballog...@gmail.com
+Date: Tue, 28 Jul 2015 03:27:32 +0200
+Subject: [PATCH] removable-drives applet: don't hardcode Nemo
+
+Use Gio to open the default file manager at 'computer:///'.
+---
+ 

[arch-commits] Commit in cinnamon/repos (24 files)

2015-08-11 Thread Balló György
Date: Tuesday, August 11, 2015 @ 16:52:31
  Author: bgyorgy
Revision: 138245

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

Added:
  cinnamon/repos/community-i686/PKGBUILD
(from rev 138244, cinnamon/trunk/PKGBUILD)
  cinnamon/repos/community-i686/cinnamon.install
(from rev 138244, cinnamon/trunk/cinnamon.install)
  cinnamon/repos/community-i686/default-theme.patch
(from rev 138244, cinnamon/trunk/default-theme.patch)
  cinnamon/repos/community-i686/dont-hardcode-nemo.patch
(from rev 138244, cinnamon/trunk/dont-hardcode-nemo.patch)
  cinnamon/repos/community-i686/fix-keyboard-flags.patch
(from rev 138244, cinnamon/trunk/fix-keyboard-flags.patch)
  cinnamon/repos/community-i686/gnome-3.14.patch
(from rev 138244, cinnamon/trunk/gnome-3.14.patch)
  cinnamon/repos/community-i686/set_wheel.patch
(from rev 138244, cinnamon/trunk/set_wheel.patch)
  cinnamon/repos/community-x86_64/PKGBUILD
(from rev 138244, cinnamon/trunk/PKGBUILD)
  cinnamon/repos/community-x86_64/cinnamon.install
(from rev 138244, cinnamon/trunk/cinnamon.install)
  cinnamon/repos/community-x86_64/default-theme.patch
(from rev 138244, cinnamon/trunk/default-theme.patch)
  cinnamon/repos/community-x86_64/dont-hardcode-nemo.patch
(from rev 138244, cinnamon/trunk/dont-hardcode-nemo.patch)
  cinnamon/repos/community-x86_64/fix-keyboard-flags.patch
(from rev 138244, cinnamon/trunk/fix-keyboard-flags.patch)
  cinnamon/repos/community-x86_64/gnome-3.14.patch
(from rev 138244, cinnamon/trunk/gnome-3.14.patch)
  cinnamon/repos/community-x86_64/set_wheel.patch
(from rev 138244, cinnamon/trunk/set_wheel.patch)
Deleted:
  cinnamon/repos/community-i686/PKGBUILD
  cinnamon/repos/community-i686/cinnamon.install
  cinnamon/repos/community-i686/default-theme.patch
  cinnamon/repos/community-i686/gnome-3.14.patch
  cinnamon/repos/community-i686/set_wheel.patch
  cinnamon/repos/community-x86_64/PKGBUILD
  cinnamon/repos/community-x86_64/cinnamon.install
  cinnamon/repos/community-x86_64/default-theme.patch
  cinnamon/repos/community-x86_64/gnome-3.14.patch
  cinnamon/repos/community-x86_64/set_wheel.patch

---+
 /PKGBUILD |  238 
 /cinnamon.install |   24 ++
 /default-theme.patch  |   50 +
 /gnome-3.14.patch |   24 ++
 /set_wheel.patch  |  112 +
 community-i686/PKGBUILD   |   91 --
 community-i686/cinnamon.install   |   12 -
 community-i686/default-theme.patch|   25 --
 community-i686/dont-hardcode-nemo.patch   |   33 +++
 community-i686/fix-keyboard-flags.patch   |   21 ++
 community-i686/gnome-3.14.patch   |   12 -
 community-i686/set_wheel.patch|   56 --
 community-x86_64/PKGBUILD |   91 --
 community-x86_64/cinnamon.install |   12 -
 community-x86_64/default-theme.patch  |   25 --
 community-x86_64/dont-hardcode-nemo.patch |   33 +++
 community-x86_64/fix-keyboard-flags.patch |   21 ++
 community-x86_64/gnome-3.14.patch |   12 -
 community-x86_64/set_wheel.patch  |   56 --
 19 files changed, 556 insertions(+), 392 deletions(-)

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


[arch-commits] Commit in lxdm/trunk (PKGBUILD git-fixes.patch)

2015-08-11 Thread Balló György
Date: Tuesday, August 11, 2015 @ 17:46:49
  Author: bgyorgy
Revision: 138246

upgpkg: lxdm 0.5.1-4

Apply more fixes from git

Modified:
  lxdm/trunk/PKGBUILD
  lxdm/trunk/git-fixes.patch

-+
 PKGBUILD|7 -
 git-fixes.patch |  224 --
 2 files changed, 220 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-08-11 14:52:31 UTC (rev 138245)
+++ PKGBUILD2015-08-11 15:46:49 UTC (rev 138246)
@@ -6,7 +6,7 @@
 
 pkgname=lxdm
 pkgver=0.5.1
-pkgrel=3
+pkgrel=4
 pkgdesc='Lightweight X11 Display Manager'
 arch=('i686' 'x86_64')
 url=https://sourceforge.net/projects/lxdm/;
@@ -27,7 +27,7 @@
 lxdm.pam
 Xsession)
 md5sums=('9e03ce5f6d303bc9b689732401934dc6'
- '8f514a4ba8fe204c8f0db293246dba3d'
+ '1290d9f6e1863fc69407a07be89d9f7e'
  'f0ae6c072f151104c53a030fd7757821'
  'c941ef896248bc7c03901b513490425c'
  '6ff73570368501a06ee7badc8e415d0a')
@@ -44,9 +44,6 @@
   # Use our custom pam and Xsession files
   cp ../lxdm.pam pam/lxdm
   cp ../Xsession data/Xsession
-
-  # Support for pulseaudio
-  echo 'test -x /usr/bin/pax11publish  /usr/bin/pax11publish -r' 
data/PostLogout.in
 }
 
 build() {

Modified: git-fixes.patch
===
--- git-fixes.patch 2015-08-11 14:52:31 UTC (rev 138245)
+++ git-fixes.patch 2015-08-11 15:46:49 UTC (rev 138246)
@@ -28,11 +28,151 @@
 +  color: #9E9D9B;
  }
 diff --git a/src/lxdm.c b/src/lxdm.c
-index 507189d..842f4b8 100644
+index 507189d..43a98c7 100644
 --- a/src/lxdm.c
 +++ b/src/lxdm.c
-@@ -1269,6 +1269,9 @@ void lxdm_do_login(struct passwd *pw, char *session, 
char *lang, char *option)
+@@ -886,26 +886,57 @@ static void put_lock(void)
+ g_free(lockfile);
+ }
+ 
++static int get_run_level(void)
++{
++#if defined(HAVE_UTMPX_H)  defined(RUN_LVL)
++  int res;
++  struct utmpx *ut,tmp;
++
++  setutxent();
++  tmp.ut_type=RUN_LVL;
++  ut=getutxid(tmp);
++  if(!ut)
++  {
++  endutxent();
++  return '5';
++  }
++  res=ut-ut_pid  0xff;
++  endutxent();
++  //g_message(runlevel %c\n,res);
++  return res;
++#else
++  return '5';
++#endif
++}
++
+ static void on_xserver_stop(void *data,int pid, int status)
+ {
+   LXSession *s=data;
+   LXSession *greeter;
+-
+-  g_message(xserver stop, restart. return status %x\n,status);
++  int level;
+ 
+   stop_pid(pid);
+   s-server = -1;
+   lxsession_stop(s);
++  
++  level=get_run_level();
++  if(level=='6' || level=='0')
++  {
++  return;
++  }
++  
++  g_message(xserver stop, restart. return status %x\n,status);
++
+   greeter=lxsession_find_greeter();
+   if(s-greeter || !greeter)
{
+   s-greeter=TRUE;
+   xconn_close(s-dpy);
+   s-dpy=NULL;
+-  lxdm_startx(s);
+   ui_drop();
++  lxdm_startx(s);
+   ui_prepare();
+-  lxsession_set_active(greeter);
++  lxsession_set_active(s);
+   }
+   else
+   {
+@@ -914,7 +945,7 @@ static void on_xserver_stop(void *data,int pid, int status)
+   }
+ }
+ 
+-void lxdm_startx(LXSession *s)
++static void lxdm_startx(LXSession *s)
+ {
+   char *arg;
+   char **args;
+@@ -997,27 +1028,32 @@ static void exit_cb(void)
+   g_key_file_free(config);
+ }
+ 
+-static int get_run_level(void)
++static gboolean delayed_restart_greeter(LXSession *s)
+ {
+-#if defined(HAVE_UTMPX_H)  defined(RUN_LVL)
+-  int res=0;
+-  struct utmpx *ut,tmp;
+-
+-  setutxent();
+-  tmp.ut_type=RUN_LVL;
+-  ut=getutxid(tmp);
+-  if(!ut)
++  int level;
++  
++  level=get_run_level();
++  if(level=='0' || level=='6')
+   {
+-  endutxent();
+-  return 5;
++  if(level=='0')
++  
g_spawn_command_line_sync(/etc/lxdm/PreShutdown,0,0,0,0);
++  else
++  
g_spawn_command_line_sync(/etc/lxdm/PreReboot,0,0,0,0);
++  g_message(run level %c\n,level);
++  lxdm_quit_self(0);
++  return FALSE;
+   }
+-  res=ut-ut_pid  0xff;
+-  endutxent();
+-  //g_message(runlevel %c\n,res);
+-  return res;
+-#else
+-  return 5;
+-#endif
++  
++  if(s  s!=lxsession_greeter())
++  {
++  lxsession_free(s);
++  }
++  else if(!s)
++  {
++  lxsession_greeter();
++  }
++  
++  return FALSE;
+ }
+ 
+ static void on_session_stop(void *data,int pid, int status)
+@@ -1047,15 +1083,9 @@ static void on_session_stop(void *data,int pid, int 
status)
+   
g_spawn_command_line_sync(/etc/lxdm/PreReboot,0,0,0,0);
+   g_message(run level 

[arch-commits] Commit in lxdm/repos (28 files)

2015-08-11 Thread Balló György
Date: Tuesday, August 11, 2015 @ 17:47:01
  Author: bgyorgy
Revision: 138247

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

Added:
  lxdm/repos/community-i686/PKGBUILD
(from rev 138246, lxdm/trunk/PKGBUILD)
  lxdm/repos/community-i686/Xsession
(from rev 138246, lxdm/trunk/Xsession)
  lxdm/repos/community-i686/default-config.patch
(from rev 138246, lxdm/trunk/default-config.patch)
  lxdm/repos/community-i686/git-fixes.patch
(from rev 138246, lxdm/trunk/git-fixes.patch)
  lxdm/repos/community-i686/lxdm.install
(from rev 138246, lxdm/trunk/lxdm.install)
  lxdm/repos/community-i686/lxdm.pam
(from rev 138246, lxdm/trunk/lxdm.pam)
  lxdm/repos/community-x86_64/PKGBUILD
(from rev 138246, lxdm/trunk/PKGBUILD)
  lxdm/repos/community-x86_64/Xsession
(from rev 138246, lxdm/trunk/Xsession)
  lxdm/repos/community-x86_64/default-config.patch
(from rev 138246, lxdm/trunk/default-config.patch)
  lxdm/repos/community-x86_64/git-fixes.patch
(from rev 138246, lxdm/trunk/git-fixes.patch)
  lxdm/repos/community-x86_64/lxdm.install
(from rev 138246, lxdm/trunk/lxdm.install)
  lxdm/repos/community-x86_64/lxdm.pam
(from rev 138246, lxdm/trunk/lxdm.pam)
Deleted:
  lxdm/repos/community-i686/PKGBUILD
  lxdm/repos/community-i686/Xsession
  lxdm/repos/community-i686/default-config.patch
  lxdm/repos/community-i686/git-fixes.patch
  
lxdm/repos/community-i686/lxdm.git-2abf1d971198d224c68b20c56862df2fe7c6a648.patch
  
lxdm/repos/community-i686/lxdm.git-4dfe7924a220643600be58861b01f186225fe251.patch
  lxdm/repos/community-i686/lxdm.install
  lxdm/repos/community-i686/lxdm.pam
  lxdm/repos/community-x86_64/PKGBUILD
  lxdm/repos/community-x86_64/Xsession
  lxdm/repos/community-x86_64/default-config.patch
  lxdm/repos/community-x86_64/git-fixes.patch
  
lxdm/repos/community-x86_64/lxdm.git-2abf1d971198d224c68b20c56862df2fe7c6a648.patch
  
lxdm/repos/community-x86_64/lxdm.git-4dfe7924a220643600be58861b01f186225fe251.patch
  lxdm/repos/community-x86_64/lxdm.install
  lxdm/repos/community-x86_64/lxdm.pam

--+
 /PKGBUILD|  
130 +
 /Xsession|  
142 +
 /default-config.patch|   
42 
 /git-fixes.patch |  
858 ++
 /lxdm.install|   
26 
 /lxdm.pam|   
14 
 community-i686/PKGBUILD  |   
68 
 community-i686/Xsession  |   
71 
 community-i686/default-config.patch  |   
21 
 community-i686/git-fixes.patch   |  
217 --
 community-i686/lxdm.git-2abf1d971198d224c68b20c56862df2fe7c6a648.patch   |  
118 -
 community-i686/lxdm.git-4dfe7924a220643600be58861b01f186225fe251.patch   |   
64 
 community-i686/lxdm.install  |   
13 
 community-i686/lxdm.pam  |
7 
 community-x86_64/PKGBUILD|   
68 
 community-x86_64/Xsession|   
71 
 community-x86_64/default-config.patch|   
21 
 community-x86_64/git-fixes.patch |  
217 --
 community-x86_64/lxdm.git-2abf1d971198d224c68b20c56862df2fe7c6a648.patch |  
118 -
 community-x86_64/lxdm.git-4dfe7924a220643600be58861b01f186225fe251.patch |   
64 
 community-x86_64/lxdm.install|   
13 
 community-x86_64/lxdm.pam|
7 
 22 files changed, 1212 insertions(+), 1158 deletions(-)

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


[arch-commits] Commit in cinnamon/repos (20 files)

2015-07-27 Thread Balló György
Date: Tuesday, July 28, 2015 @ 02:23:16
  Author: bgyorgy
Revision: 137531

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

Added:
  cinnamon/repos/community-i686/PKGBUILD
(from rev 137530, cinnamon/trunk/PKGBUILD)
  cinnamon/repos/community-i686/cinnamon.install
(from rev 137530, cinnamon/trunk/cinnamon.install)
  cinnamon/repos/community-i686/default-theme.patch
(from rev 137530, cinnamon/trunk/default-theme.patch)
  cinnamon/repos/community-i686/gnome-3.14.patch
(from rev 137530, cinnamon/trunk/gnome-3.14.patch)
  cinnamon/repos/community-i686/set_wheel.patch
(from rev 137530, cinnamon/trunk/set_wheel.patch)
  cinnamon/repos/community-x86_64/PKGBUILD
(from rev 137530, cinnamon/trunk/PKGBUILD)
  cinnamon/repos/community-x86_64/cinnamon.install
(from rev 137530, cinnamon/trunk/cinnamon.install)
  cinnamon/repos/community-x86_64/default-theme.patch
(from rev 137530, cinnamon/trunk/default-theme.patch)
  cinnamon/repos/community-x86_64/gnome-3.14.patch
(from rev 137530, cinnamon/trunk/gnome-3.14.patch)
  cinnamon/repos/community-x86_64/set_wheel.patch
(from rev 137530, cinnamon/trunk/set_wheel.patch)
Deleted:
  cinnamon/repos/community-i686/PKGBUILD
  cinnamon/repos/community-i686/cinnamon.install
  cinnamon/repos/community-i686/default-theme.patch
  cinnamon/repos/community-i686/gnome-3.14.patch
  cinnamon/repos/community-i686/set_wheel.patch
  cinnamon/repos/community-x86_64/PKGBUILD
  cinnamon/repos/community-x86_64/cinnamon.install
  cinnamon/repos/community-x86_64/default-theme.patch
  cinnamon/repos/community-x86_64/gnome-3.14.patch
  cinnamon/repos/community-x86_64/set_wheel.patch

--+
 /PKGBUILD|  182 +
 /cinnamon.install|   24 
 /default-theme.patch |   50 +
 /gnome-3.14.patch|   24 
 /set_wheel.patch |  112 
 community-i686/PKGBUILD  |   91 
 community-i686/cinnamon.install  |   12 --
 community-i686/default-theme.patch   |   25 
 community-i686/gnome-3.14.patch  |   12 --
 community-i686/set_wheel.patch   |   56 --
 community-x86_64/PKGBUILD|   91 
 community-x86_64/cinnamon.install|   12 --
 community-x86_64/default-theme.patch |   25 
 community-x86_64/gnome-3.14.patch|   12 --
 community-x86_64/set_wheel.patch |   56 --
 15 files changed, 392 insertions(+), 392 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-28 00:23:04 UTC (rev 137530)
+++ community-i686/PKGBUILD 2015-07-28 00:23:16 UTC (rev 137531)
@@ -1,91 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
-# Contributor: M0Rf30
-# Contributor: unifiedlinux
-# Contributor: CReimer
-
-pkgname=cinnamon
-pkgver=2.6.13
-pkgrel=1
-pkgdesc=Linux desktop which provides advanced innovative features and a 
traditional user experience
-arch=('i686' 'x86_64')
-url=http://cinnamon.linuxmint.com/;
-license=('GPL2')
-depends=('accountsservice' 'caribou' 'cinnamon-settings-daemon' 
'cinnamon-session'
- 'cinnamon-translations' 'cjs' 'clutter-gtk' 'gnome-backgrounds' 
'gconf'
- 'gnome-themes-standard' 'gstreamer' 'libgnome-keyring' 'librsvg'
- 'networkmanager' 'muffin' 'python2-cairo' 'python2-dbus' 
'python2-pillow'
- 'python2-pam' 'python2-pexpect' 'python2-pyinotify' 'python2-lxml' 
'webkitgtk'
- 'cinnamon-control-center' 'cinnamon-screensaver' 'cinnamon-menus' 
'libgnomekbd'
- 'network-manager-applet' 'nemo' 'polkit-gnome')
-makedepends=('gnome-common' 'intltool' 'gtk-doc' 'gobject-introspection')
-optdepends=('blueberry: Bluetooth support'
-'system-config-printer: printer settings')
-options=('!emptydirs')
-install=${pkgname}.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/Cinnamon/archive/$pkgver.tar.gz;
-set_wheel.patch
-gnome-3.14.patch
-default-theme.patch)
-sha256sums=('f349403901bf3e84cda2ebd425dc6f58850059092775e285862067f120debe86'
-'2f0fec7d733aa19be426a0e1aecff1af451183de038d2868a2ee3195f227956e'
-'5ecce3c1617c0479ef972904944e5a58d24de31d00a527d44921e2a44d91'
-'566585873f38a79ec248b916645a2e081abec3c6d4df2c34339cde1f35375cc5')
-
-prepare() {
-  cd ${srcdir}/Cinnamon*
-
-  # Python2 fix
-  sed -i 's:/usr/bin/python :/usr/bin/python2 :' 
files/usr/bin/cinnamon-menu-editor
-  find -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
-
-  # Use wheel group instread of sudo
-  patch -Np1 -i ../set_wheel.patch
-
-  # Some fixes for GNOME 3.14
-  patch -Np1 -i ../gnome-3.14.patch
-
-  # Set default theme to 'cinnamon'
-  patch -Np1 -i ../default-theme.patch
-
-  # Add polkit agent to 

[arch-commits] Commit in cinnamon/trunk (PKGBUILD)

2015-07-27 Thread Balló György
Date: Tuesday, July 28, 2015 @ 02:23:04
  Author: bgyorgy
Revision: 137530

upgpkg: cinnamon 2.6.13-2

Add missing dependency on libkeybinder3, required for the 
cinnamon-killer-daemon.

Modified:
  cinnamon/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-27 21:33:47 UTC (rev 137529)
+++ PKGBUILD2015-07-28 00:23:04 UTC (rev 137530)
@@ -6,7 +6,7 @@
 
 pkgname=cinnamon
 pkgver=2.6.13
-pkgrel=1
+pkgrel=2
 pkgdesc=Linux desktop which provides advanced innovative features and a 
traditional user experience
 arch=('i686' 'x86_64')
 url=http://cinnamon.linuxmint.com/;
@@ -13,7 +13,7 @@
 license=('GPL2')
 depends=('accountsservice' 'caribou' 'cinnamon-settings-daemon' 
'cinnamon-session'
  'cinnamon-translations' 'cjs' 'clutter-gtk' 'gnome-backgrounds' 
'gconf'
- 'gnome-themes-standard' 'gstreamer' 'libgnome-keyring' 'librsvg'
+ 'gnome-themes-standard' 'gstreamer' 'libgnome-keyring' 
'libkeybinder3' 'librsvg'
  'networkmanager' 'muffin' 'python2-cairo' 'python2-dbus' 
'python2-pillow'
  'python2-pam' 'python2-pexpect' 'python2-pyinotify' 'python2-lxml' 
'webkitgtk'
  'cinnamon-control-center' 'cinnamon-screensaver' 'cinnamon-menus' 
'libgnomekbd'


[arch-commits] Commit in lollypop/trunk (PKGBUILD)

2015-07-26 Thread Balló György
Date: Sunday, July 26, 2015 @ 17:40:54
  Author: bgyorgy
Revision: 137428

Move gobject-introspection from depends to makedepends

It's not needed on runtime.

Modified:
  lollypop/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-26 15:33:59 UTC (rev 137427)
+++ PKGBUILD2015-07-26 15:40:54 UTC (rev 137428)
@@ -10,9 +10,9 @@
 arch=('any')
 url='https://github.com/gnumdk/lollypop'
 license=('GPL')
-depends=('desktop-file-utils' 'gobject-introspection' 'gtk3' 'python-cairo'
+depends=('desktop-file-utils' 'gtk3' 'python-cairo'
  'python-dbus' 'python-gobject' 'totem-plparser')
-makedepends=('intltool' 'itstool' 'python')
+makedepends=('gobject-introspection' 'intltool' 'itstool' 'python')
 optdepends=('python-pylast: Last.FM support'
 'python-wikipedia: Wikipedia support')
 install='lollypop.install'


[arch-commits] Commit in eom-gtk3/repos (8 files)

2015-07-26 Thread Balló György
Date: Sunday, July 26, 2015 @ 17:33:59
  Author: bgyorgy
Revision: 137427

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

Added:
  eom-gtk3/repos/community-i686/PKGBUILD
(from rev 137426, eom-gtk3/trunk/PKGBUILD)
  eom-gtk3/repos/community-i686/eom.install
(from rev 137426, eom-gtk3/trunk/eom.install)
  eom-gtk3/repos/community-x86_64/PKGBUILD
(from rev 137426, eom-gtk3/trunk/PKGBUILD)
  eom-gtk3/repos/community-x86_64/eom.install
(from rev 137426, eom-gtk3/trunk/eom.install)
Deleted:
  eom-gtk3/repos/community-i686/PKGBUILD
  eom-gtk3/repos/community-i686/eom.install
  eom-gtk3/repos/community-x86_64/PKGBUILD
  eom-gtk3/repos/community-x86_64/eom.install

--+
 /PKGBUILD|   76 +
 /eom.install |   26 ++
 community-i686/PKGBUILD  |   38 
 community-i686/eom.install   |   13 ---
 community-x86_64/PKGBUILD|   38 
 community-x86_64/eom.install |   13 ---
 6 files changed, 102 insertions(+), 102 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-26 15:33:51 UTC (rev 137426)
+++ community-i686/PKGBUILD 2015-07-26 15:33:59 UTC (rev 137427)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-
-_ver=1.10
-_pkgbase=eom
-pkgname=(${_pkgbase}-gtk3)
-pkgver=${_ver}.3
-pkgrel=1
-pkgdesc=An image viewing and cataloging program for MATE (GTK3 version 
[EXPERIMENTAL])
-url=http://mate-desktop.org;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('dbus-glib' 'desktop-file-utils' 'gobject-introspection' 'gtk3' 
'exempi'
- 'lcms2' 'libexif' 'libjpeg-turbo' 'librsvg' 'mate-desktop-gtk3=1.10'
- 'mate-icon-theme' 'startup-notification' 'zlib')
-makedepends=('mate-common' 'yelp-tools')
-optdepends=('yelp: for reading MATE help documents')
-groups=('mate-extra-gtk3')
-conflicts=(${_pkgbase})
-source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
-sha1sums=('b5c4b9a921183af37cfdf7cc91c3144138c6b2d5')
-install=${_pkgbase}.install
-
-build() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-./configure \
---prefix=/usr \
---localstatedir=/var \
---with-gtk=3.0 \
---with-librsvg \
---disable-python
-make
-}
-
-package() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: eom-gtk3/repos/community-i686/PKGBUILD (from rev 137426, 
eom-gtk3/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-07-26 15:33:59 UTC (rev 137427)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+
+_ver=1.10
+_pkgbase=eom
+pkgname=(${_pkgbase}-gtk3)
+pkgver=${_ver}.3
+pkgrel=2
+pkgdesc=An image viewing and cataloging program for MATE (GTK3 version 
[EXPERIMENTAL])
+url=http://mate-desktop.org;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus-glib' 'desktop-file-utils' 'gobject-introspection-runtime' 
'gtk3' 'exempi'
+ 'lcms2' 'libexif' 'libjpeg-turbo' 'librsvg' 'mate-desktop-gtk3=1.10'
+ 'mate-icon-theme' 'startup-notification' 'zlib')
+makedepends=('mate-common' 'gobject-introspection' 'yelp-tools')
+optdepends=('yelp: for reading MATE help documents')
+groups=('mate-extra-gtk3')
+conflicts=(${_pkgbase})
+source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
+sha1sums=('b5c4b9a921183af37cfdf7cc91c3144138c6b2d5')
+install=${_pkgbase}.install
+
+build() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+./configure \
+--prefix=/usr \
+--localstatedir=/var \
+--with-gtk=3.0 \
+--with-librsvg \
+--disable-python
+make
+}
+
+package() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+make DESTDIR=${pkgdir} install
+}

Deleted: community-i686/eom.install
===
--- community-i686/eom.install  2015-07-26 15:33:51 UTC (rev 137426)
+++ community-i686/eom.install  2015-07-26 15:33:59 UTC (rev 137427)
@@ -1,13 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas/
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-update-desktop-database -q
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: eom-gtk3/repos/community-i686/eom.install (from rev 137426, 
eom-gtk3/trunk/eom.install)
===
--- community-i686/eom.install  (rev 0)
+++ community-i686/eom.install  2015-07-26 15:33:59 UTC (rev 137427)
@@ -0,0 +1,13 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas/
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+

[arch-commits] Commit in eom-gtk3/trunk (PKGBUILD)

2015-07-26 Thread Balló György
Date: Sunday, July 26, 2015 @ 17:33:51
  Author: bgyorgy
Revision: 137426

upgpkg: eom-gtk3 1.10.3-2

Move gobject-introspection to makedepends

Modified:
  eom-gtk3/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-26 15:03:19 UTC (rev 137425)
+++ PKGBUILD2015-07-26 15:33:51 UTC (rev 137426)
@@ -5,15 +5,15 @@
 _pkgbase=eom
 pkgname=(${_pkgbase}-gtk3)
 pkgver=${_ver}.3
-pkgrel=1
+pkgrel=2
 pkgdesc=An image viewing and cataloging program for MATE (GTK3 version 
[EXPERIMENTAL])
 url=http://mate-desktop.org;
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('dbus-glib' 'desktop-file-utils' 'gobject-introspection' 'gtk3' 
'exempi'
+depends=('dbus-glib' 'desktop-file-utils' 'gobject-introspection-runtime' 
'gtk3' 'exempi'
  'lcms2' 'libexif' 'libjpeg-turbo' 'librsvg' 'mate-desktop-gtk3=1.10'
  'mate-icon-theme' 'startup-notification' 'zlib')
-makedepends=('mate-common' 'yelp-tools')
+makedepends=('mate-common' 'gobject-introspection' 'yelp-tools')
 optdepends=('yelp: for reading MATE help documents')
 groups=('mate-extra-gtk3')
 conflicts=(${_pkgbase})


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

2015-07-22 Thread Balló György
Date: Wednesday, July 22, 2015 @ 15:38:43
  Author: bgyorgy
Revision: 137282

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

Added:
  blueman/repos/community-i686/PKGBUILD
(from rev 137281, blueman/trunk/PKGBUILD)
  blueman/repos/community-i686/blueman.install
(from rev 137281, blueman/trunk/blueman.install)
  blueman/repos/community-i686/fix-infinite-loop.patch
(from rev 137281, blueman/trunk/fix-infinite-loop.patch)
  blueman/repos/community-x86_64/PKGBUILD
(from rev 137281, blueman/trunk/PKGBUILD)
  blueman/repos/community-x86_64/blueman.install
(from rev 137281, blueman/trunk/blueman.install)
  blueman/repos/community-x86_64/fix-infinite-loop.patch
(from rev 137281, blueman/trunk/fix-infinite-loop.patch)
Deleted:
  blueman/repos/community-i686/PKGBUILD
  blueman/repos/community-i686/blueman.install
  blueman/repos/community-x86_64/PKGBUILD
  blueman/repos/community-x86_64/blueman.install

--+
 /PKGBUILD|  108 +
 /blueman.install |   24 ++
 community-i686/PKGBUILD  |   48 
 community-i686/blueman.install   |   12 ---
 community-i686/fix-infinite-loop.patch   |   24 ++
 community-x86_64/PKGBUILD|   48 
 community-x86_64/blueman.install |   12 ---
 community-x86_64/fix-infinite-loop.patch |   24 ++
 8 files changed, 180 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-22 13:38:35 UTC (rev 137281)
+++ community-i686/PKGBUILD 2015-07-22 13:38:43 UTC (rev 137282)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Balló György ballogyor+arch at gmail dot com
-# Contributer: Arthur Zamarin arthur...@gmail.com
-# Contributer: Martin Wimpress c...@flexion.org
-
-pkgname=blueman
-pkgver=2.0
-pkgrel=3
-pkgdesc=GTK+ Bluetooth Manager
-arch=('i686' 'x86_64')
-url=https://github.com/blueman-project/blueman;
-license=('GPL')
-depends=('bluez' 'bluez-libs' 'gtk3' 'libnotify' 'python-cairo' 'python-dbus' 
'python-gobject')
-makedepends=('cython' 'intltool')
-optdepends=('dnsmasq: Network Access Point (NAP) support'
-'networkmanager: Dial Up Networking (DUN) and Personal Area 
Networking (PAN) support'
-'pulseaudio-bluetooth: audio devices support')
-install=$pkgname.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/blueman-project/$pkgname/archive/$pkgver.tar.gz)
-sha256sums=('3f6dc827c4410f128f75a15672af8dc76c5c041f6d639d5ab19b15abeb42ff74')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Fix path for bluetoothd
-  sed -i 's|/usr/sbin/bluetoothd|/usr/lib/bluetooth/bluetoothd|' 
apps/blueman-report
-
-  # Fix non-standard icon names
-  sed -i 's/gtk-find/edit-find/' data/ui/device-list-widget.ui
-  sed -i 's/mouse/input-mouse/' blueman/services/Input.py
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/$pkgname \
---disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: blueman/repos/community-i686/PKGBUILD (from rev 137281, 
blueman/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-07-22 13:38:43 UTC (rev 137282)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Balló György ballogyor+arch at gmail dot com
+# Contributer: Arthur Zamarin arthur...@gmail.com
+# Contributer: Martin Wimpress c...@flexion.org
+
+pkgname=blueman
+pkgver=2.0
+pkgrel=4
+pkgdesc=GTK+ Bluetooth Manager
+arch=('i686' 'x86_64')
+url=https://github.com/blueman-project/blueman;
+license=('GPL')
+depends=('bluez' 'bluez-libs' 'gtk3' 'libnotify' 'python-cairo' 'python-dbus' 
'python-gobject')
+makedepends=('cython' 'intltool')
+optdepends=('dnsmasq: Network Access Point (NAP) support'
+'networkmanager: Dial Up Networking (DUN) and Personal Area 
Networking (PAN) support'
+'pulseaudio-bluetooth: audio devices support')
+install=$pkgname.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/blueman-project/$pkgname/archive/$pkgver.tar.gz
+fix-infinite-loop.patch)
+sha256sums=('3f6dc827c4410f128f75a15672af8dc76c5c041f6d639d5ab19b15abeb42ff74'
+'25eb611bd7817e82240565caf2ac14a5841cd56e09be702a77ca3d7737cd5ac5')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Fix infinite loop if RecentConns has only invalid items
+  # https://github.com/blueman-project/blueman/commit/9619d3b5
+  patch -Np1 -i ../fix-infinite-loop.patch
+
+  # Fix path for bluetoothd
+  sed -i 's|/usr/sbin/bluetoothd|/usr/lib/bluetooth/bluetoothd|' 
apps/blueman-report
+
+  # Fix non-standard icon names
+  sed -i 's/gtk-find/edit-find/' data/ui/device

[arch-commits] Commit in blueman/trunk (PKGBUILD fix-infinite-loop.patch)

2015-07-22 Thread Balló György
Date: Wednesday, July 22, 2015 @ 15:38:35
  Author: bgyorgy
Revision: 137281

upgpkg: blueman 2.0-4

Fix infinite loop if RecentConns has only invalid items

Added:
  blueman/trunk/fix-infinite-loop.patch
Modified:
  blueman/trunk/PKGBUILD

-+
 PKGBUILD|   12 +---
 fix-infinite-loop.patch |   24 
 2 files changed, 33 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-22 12:53:55 UTC (rev 137280)
+++ PKGBUILD2015-07-22 13:38:35 UTC (rev 137281)
@@ -5,7 +5,7 @@
 
 pkgname=blueman
 pkgver=2.0
-pkgrel=3
+pkgrel=4
 pkgdesc=GTK+ Bluetooth Manager
 arch=('i686' 'x86_64')
 url=https://github.com/blueman-project/blueman;
@@ -16,12 +16,18 @@
 'networkmanager: Dial Up Networking (DUN) and Personal Area 
Networking (PAN) support'
 'pulseaudio-bluetooth: audio devices support')
 install=$pkgname.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/blueman-project/$pkgname/archive/$pkgver.tar.gz)
-sha256sums=('3f6dc827c4410f128f75a15672af8dc76c5c041f6d639d5ab19b15abeb42ff74')
+source=($pkgname-$pkgver.tar.gz::https://github.com/blueman-project/$pkgname/archive/$pkgver.tar.gz
+fix-infinite-loop.patch)
+sha256sums=('3f6dc827c4410f128f75a15672af8dc76c5c041f6d639d5ab19b15abeb42ff74'
+'25eb611bd7817e82240565caf2ac14a5841cd56e09be702a77ca3d7737cd5ac5')
 
 prepare() {
   cd $pkgname-$pkgver
 
+  # Fix infinite loop if RecentConns has only invalid items
+  # https://github.com/blueman-project/blueman/commit/9619d3b5
+  patch -Np1 -i ../fix-infinite-loop.patch
+
   # Fix path for bluetoothd
   sed -i 's|/usr/sbin/bluetoothd|/usr/lib/bluetooth/bluetoothd|' 
apps/blueman-report
 

Added: fix-infinite-loop.patch
===
--- fix-infinite-loop.patch (rev 0)
+++ fix-infinite-loop.patch 2015-07-22 13:38:35 UTC (rev 137281)
@@ -0,0 +1,24 @@
+From 9619d3b5c95b1ec0c971b67d047abeb260e04cc4 Mon Sep 17 00:00:00 2001
+From: Christopher Schramm g...@cschramm.eu
+Date: Wed, 22 Jul 2015 10:27:37 +0200
+Subject: [PATCH] Fix infinite loop if RecentConns has only invalid items
+
+Closes #325
+---
+ CHANGELOG.md  | 1 +
+ blueman/plugins/applet/RecentConns.py | 2 +-
+ 2 files changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/blueman/plugins/applet/RecentConns.py 
b/blueman/plugins/applet/RecentConns.py
+index 3498ace..467807f 100644
+--- a/blueman/plugins/applet/RecentConns.py
 b/blueman/plugins/applet/RecentConns.py
+@@ -135,7 +135,7 @@ def on_unload(self):
+ 
+ def initialize(self):
+ dprint(rebuilding menu)
+-if not RecentConns.items:
++if RecentConns.items is None:
+ self.recover_state()
+ 
+ def each(child, _):


[arch-commits] Commit in mate-themes-extras/repos/community-any (PKGBUILD PKGBUILD)

2015-07-16 Thread Balló György
Date: Thursday, July 16, 2015 @ 14:37:04
  Author: bgyorgy
Revision: 136999

archrelease: copy trunk to community-any

Added:
  mate-themes-extras/repos/community-any/PKGBUILD
(from rev 136998, mate-themes-extras/trunk/PKGBUILD)
Deleted:
  mate-themes-extras/repos/community-any/PKGBUILD

--+
 PKGBUILD |   72 +
 1 file changed, 35 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-16 12:36:59 UTC (rev 136998)
+++ PKGBUILD2015-07-16 12:37:04 UTC (rev 136999)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-
-pkgname=mate-themes-extras
-pkgver=3.16.3
-pkgrel=1
-pkgdesc=Collection of GTK2/3 desktop themes for MATE.
-url=https://github.com/NiceandGently/mate-themes-extras;
-arch=('any')
-license=('GPL')
-depends=('gtk-engine-murrine')
-makedepends=('mate-common' 'icon-naming-utils' 'perl-xml-parser')
-options=('!emptydirs')
-source=($pkgname-$pkgver.tar.gz::https://github.com/NiceandGently/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha256sums=('1ba476b24409dada28b53fc315143aec5ef99c03e4c31d79c51d4acd8b82aa07')
-
-prepare() {
-cd ${srcdir}/${pkgname}-${pkgver}
-NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure \
---prefix=/usr \
---enable-Blue-Submarine \
---enable-DeLorean \
---enable-DeLorean-Dark \
---enable-GnomishBeige \
---enable-Green-Submarine \
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: mate-themes-extras/repos/community-any/PKGBUILD (from rev 136998, 
mate-themes-extras/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-16 12:37:04 UTC (rev 136999)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+
+pkgname=mate-themes-extras
+pkgver=3.16.3
+pkgrel=2
+pkgdesc=Collection of GTK2/3 desktop themes for MATE.
+url=https://github.com/NiceandGently/mate-themes-extras;
+arch=('any')
+license=('GPL')
+depends=('gtk-engine-murrine')
+makedepends=('mate-common' 'icon-naming-utils' 'perl-xml-parser')
+options=('!emptydirs')
+source=($pkgname-$pkgver.tar.gz::https://github.com/NiceandGently/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha256sums=('1ba476b24409dada28b53fc315143aec5ef99c03e4c31d79c51d4acd8b82aa07')
+
+prepare() {
+cd ${srcdir}/${pkgname}-${pkgver}
+NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure \
+--prefix=/usr \
+--enable-DeLorean \
+--enable-DeLorean-Dark \
+--enable-GnomishBeige
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+}


[arch-commits] Commit in mate-themes-extras/trunk (PKGBUILD)

2015-07-16 Thread Balló György
Date: Thursday, July 16, 2015 @ 14:36:59
  Author: bgyorgy
Revision: 136998

upgpkg: mate-themes-extras 3.16.3-2

Remove Blue-Submarine and Green-Submarine themes, they are now in the 
mate-themes package (FS#45654)

Modified:
  mate-themes-extras/trunk/PKGBUILD

--+
 PKGBUILD |6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-16 11:01:15 UTC (rev 136997)
+++ PKGBUILD2015-07-16 12:36:59 UTC (rev 136998)
@@ -3,7 +3,7 @@
 
 pkgname=mate-themes-extras
 pkgver=3.16.3
-pkgrel=1
+pkgrel=2
 pkgdesc=Collection of GTK2/3 desktop themes for MATE.
 url=https://github.com/NiceandGently/mate-themes-extras;
 arch=('any')
@@ -23,11 +23,9 @@
 cd ${srcdir}/${pkgname}-${pkgver}
 ./configure \
 --prefix=/usr \
---enable-Blue-Submarine \
 --enable-DeLorean \
 --enable-DeLorean-Dark \
---enable-GnomishBeige \
---enable-Green-Submarine \
+--enable-GnomishBeige
 make
 }
 


[arch-commits] Commit in activity-log-manager/repos (16 files)

2015-07-16 Thread Balló György
Date: Friday, July 17, 2015 @ 04:46:09
  Author: bgyorgy
Revision: 137035

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

Added:
  activity-log-manager/repos/community-i686/PKGBUILD
(from rev 137034, activity-log-manager/trunk/PKGBUILD)
  activity-log-manager/repos/community-i686/activity-log-manager.install
(from rev 137034, activity-log-manager/trunk/activity-log-manager.install)
  activity-log-manager/repos/community-i686/fix-build.patch
(from rev 137034, activity-log-manager/trunk/fix-build.patch)
  activity-log-manager/repos/community-i686/gee-0.8.patch
(from rev 137034, activity-log-manager/trunk/gee-0.8.patch)
  activity-log-manager/repos/community-x86_64/PKGBUILD
(from rev 137034, activity-log-manager/trunk/PKGBUILD)
  activity-log-manager/repos/community-x86_64/activity-log-manager.install
(from rev 137034, activity-log-manager/trunk/activity-log-manager.install)
  activity-log-manager/repos/community-x86_64/fix-build.patch
(from rev 137034, activity-log-manager/trunk/fix-build.patch)
  activity-log-manager/repos/community-x86_64/gee-0.8.patch
(from rev 137034, activity-log-manager/trunk/gee-0.8.patch)
Deleted:
  activity-log-manager/repos/community-i686/PKGBUILD
  activity-log-manager/repos/community-i686/activity-log-manager.install
  activity-log-manager/repos/community-i686/fix-build.patch
  activity-log-manager/repos/community-i686/gee-0.8.patch
  activity-log-manager/repos/community-x86_64/PKGBUILD
  activity-log-manager/repos/community-x86_64/activity-log-manager.install
  activity-log-manager/repos/community-x86_64/fix-build.patch
  activity-log-manager/repos/community-x86_64/gee-0.8.patch

---+
 /PKGBUILD |  104 +
 /activity-log-manager.install |   22 +
 /fix-build.patch  |  276 
 /gee-0.8.patch|   90 +++
 community-i686/PKGBUILD   |   52 
 community-i686/activity-log-manager.install   |   11 
 community-i686/fix-build.patch|   12 -
 community-i686/gee-0.8.patch  |   45 ---
 community-x86_64/PKGBUILD |   52 
 community-x86_64/activity-log-manager.install |   11 
 community-x86_64/fix-build.patch  |   12 -
 community-x86_64/gee-0.8.patch|   45 ---
 12 files changed, 492 insertions(+), 240 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-17 02:45:39 UTC (rev 137034)
+++ community-i686/PKGBUILD 2015-07-17 02:46:09 UTC (rev 137035)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Balló György ballogyor+arch at gmail dot com
-# Contributor: Ner0
-
-pkgname=activity-log-manager
-pkgver=0.9.7
-pkgrel=3
-pkgdesc=A graphical user interface which lets you easily control what gets 
logged by Zeitgeist
-arch=('i686' 'x86_64')
-url=https://launchpad.net/activity-log-manager;
-license=('GPL2')
-depends=('gtk3' 'libgee' 'zeitgeist')
-makedepends=('vala' 'intltool')
-install=$pkgname.install
-source=(https://launchpad.net/$pkgname/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.xz
-
http://pkgbuild.com/~bgyorgy/sources/$pkgname-translations-20140812.tar.gz
-fix-build.patch
-gee-0.8.patch)
-md5sums=('d886be32db0fa351aaf0eb59912ee377'
- 'a7ddf1d853f4942ebf701256d9e5a38f'
- '243c71b429e12172691dcb748055247d'
- 'c3598a22822462d03083b3999748530d')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-
-  # Install language files
-  rename $pkgname- '' ../po/$pkgname-*.po
-  mv -f -t po ../po/*
-  printf %s\n po/*.po | sed -e 's/po\///g' -e 's/\.po//g' po/LINGUAS
-
-  # Regenerate C files
-  rm src/activity_log_manager_vala.stamp
-
-  # Fix build
-  patch -Np1 -i ../fix-build.patch
-
-  # Port to gee-0.8
-  patch -Np1 -i ../gee-0.8.patch
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  autoreconf -fi
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: activity-log-manager/repos/community-i686/PKGBUILD (from rev 137034, 
activity-log-manager/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-07-17 02:46:09 UTC (rev 137035)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Balló György ballogyor+arch at gmail dot com
+# Contributor: Ner0
+
+pkgname=activity-log-manager
+pkgver=0.9.7
+pkgrel=4
+pkgdesc=A graphical user interface which lets you easily control what gets 
logged by Zeitgeist
+arch=('i686' 'x86_64')
+url=https://launchpad.net/activity-log-manager;
+license=('GPL2')
+depends=('gtk3' 'libgee' 'zeitgeist')
+makedepends=('vala' 'intltool')
+install=$pkgname.install
+source=(https

[arch-commits] Commit in activity-log-manager/trunk (3 files)

2015-07-16 Thread Balló György
Date: Friday, July 17, 2015 @ 04:45:39
  Author: bgyorgy
Revision: 137034

upgpkg: activity-log-manager 0.9.7-4

Fix build and the gee-0.8 patch

Modified:
  activity-log-manager/trunk/PKGBUILD
  activity-log-manager/trunk/fix-build.patch
  activity-log-manager/trunk/gee-0.8.patch

-+
 PKGBUILD|   12 ++--
 fix-build.patch |  130 +-
 gee-0.8.patch   |4 -
 3 files changed, 136 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-17 02:44:31 UTC (rev 137033)
+++ PKGBUILD2015-07-17 02:45:39 UTC (rev 137034)
@@ -4,7 +4,7 @@
 
 pkgname=activity-log-manager
 pkgver=0.9.7
-pkgrel=3
+pkgrel=4
 pkgdesc=A graphical user interface which lets you easily control what gets 
logged by Zeitgeist
 arch=('i686' 'x86_64')
 url=https://launchpad.net/activity-log-manager;
@@ -18,11 +18,11 @@
 gee-0.8.patch)
 md5sums=('d886be32db0fa351aaf0eb59912ee377'
  'a7ddf1d853f4942ebf701256d9e5a38f'
- '243c71b429e12172691dcb748055247d'
- 'c3598a22822462d03083b3999748530d')
+ '69de6af0fa2adc118f731f8230e6671d'
+ '7418197a6909d92ed8e9dab2c0096dbf')
 
 prepare() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
 
   # Install language files
   rename $pkgname- '' ../po/$pkgname-*.po
@@ -40,7 +40,7 @@
 }
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   autoreconf -fi
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
   make
@@ -47,6 +47,6 @@
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   make DESTDIR=$pkgdir install
 }

Modified: fix-build.patch
===
--- fix-build.patch 2015-07-17 02:44:31 UTC (rev 137033)
+++ fix-build.patch 2015-07-17 02:45:39 UTC (rev 137034)
@@ -1,6 +1,132 @@
+diff -Naur activity-log-manager-0.9.7.orig/src/blacklist-dbus.vala 
activity-log-manager-0.9.7/src/blacklist-dbus.vala
+--- activity-log-manager-0.9.7.orig/src/blacklist-dbus.vala2015-07-17 
02:38:04.290396888 +
 activity-log-manager-0.9.7/src/blacklist-dbus.vala 2015-07-17 
02:38:33.883637191 +
+@@ -137,7 +137,7 @@
+   return false;
+   }
+ 
+-  public async void find_events (string id, TreeIter iter, 
ListStore store)
++  public async void find_events (string id, TreeIter iter, 
Gtk.ListStore store)
+   {
+   Event event = new Event();
+   event.manifestation = Zeitgeist.ZG.USER_ACTIVITY;
+@@ -165,7 +165,7 @@
+   store.set_value(iter, 5, counter);
+   }
+ 
+-  public void get_count_for_app (string app_id, TreeIter iter, 
ListStore store) {
++  public void get_count_for_app (string app_id, TreeIter iter, 
Gtk.ListStore store) {
+   find_events(app_id, iter, store);
+   }
+   
+diff -Naur activity-log-manager-0.9.7.orig/src/security-widget.vala 
activity-log-manager-0.9.7/src/security-widget.vala
+--- activity-log-manager-0.9.7.orig/src/security-widget.vala   2015-07-17 
02:38:04.290396888 +
 activity-log-manager-0.9.7/src/security-widget.vala2015-07-17 
02:38:33.950303649 +
+@@ -39,7 +39,7 @@
+ 
+   private void set_up_ui () {
+ 
+-  var liststore_delay = new ListStore (2, typeof 
(string), typeof (int));
++  var liststore_delay = new Gtk.ListStore (2, typeof 
(string), typeof (int));
+   TreeIter iter;
+   liststore_delay.append (out iter);
+   liststore_delay.set (iter, 0, 1 second, 1, 0);
+diff -Naur 
activity-log-manager-0.9.7.orig/src/unified-privacy-applications.vala 
activity-log-manager-0.9.7/src/unified-privacy-applications.vala
+--- activity-log-manager-0.9.7.orig/src/unified-privacy-applications.vala  
2015-07-17 02:38:04.290396888 +
 activity-log-manager-0.9.7/src/unified-privacy-applications.vala   
2015-07-17 02:38:33.936970357 +
+@@ -60,7 +60,7 @@
+   }
+   }
+ 
+-  public void get_count_for_app(string id, TreeIter iter, 
ListStore store) {
++  public void get_count_for_app(string id, TreeIter iter, 
Gtk.ListStore store) {
+   this.blacklist_interface.get_count_for_app(id, iter, 
store);
+   }
+ 
+@@ -131,7 +131,7 @@
+   private class ApplicationsTreeView : Gtk.Box {
+   
+   private ApplicationBlacklist app_blacklist;
+-  private ListStore store;
++  private Gtk.ListStore store;
+   private TreeView treeview;
+   
+   HashTablestring, AppChooseInfo blocked_apps;
+@@ -145,7 +145,7 @@
+   N_COLS
+   }
+ 
+-  public ListStore 

[arch-commits] Commit in pychess/repos/community-any (4 files)

2015-07-18 Thread Balló György
Date: Saturday, July 18, 2015 @ 11:19:57
  Author: bgyorgy
Revision: 137091

archrelease: copy trunk to community-any

Added:
  pychess/repos/community-any/PKGBUILD
(from rev 137090, pychess/trunk/PKGBUILD)
  pychess/repos/community-any/pychess.install
(from rev 137090, pychess/trunk/pychess.install)
Deleted:
  pychess/repos/community-any/PKGBUILD
  pychess/repos/community-any/pychess.install

-+
 PKGBUILD|   59 ++
 pychess.install |   24 ++---
 2 files changed, 41 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-18 09:19:52 UTC (rev 137090)
+++ PKGBUILD2015-07-18 09:19:57 UTC (rev 137091)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Contributor: Alexander Fehr pizzapunk gmail com
-
-pkgname=pychess
-pkgver=0.10.1
-pkgrel=4
-pkgdesc=Chess client for the GNOME desktop
-arch=('any')
-url=http://pychess.org/;
-license=('GPL')
-depends=('gnome-icon-theme' 'python2-rsvg' 'pygtksourceview2' 
'gstreamer0.10-python'
- 'desktop-file-utils')
-install=pychess.install
-source=(http://pychess.googlecode.com/files/pychess-$pkgver.tar.gz)
-md5sums=('ee1893071823b3d41ecdb1ef314fb8ba')
-
-prepare() {
-  cd $srcdir/pychess-$pkgver
-
-  sed -i s|#!/usr/bin/python$|#!/usr/bin/python2| 
lib/pychess/Players/PyChess.py
-  sed -i /vm binname/s|python|python2| lib/pychess/Players/engineNest.py
-  sed -i /binname ==/s|python|python2| lib/pychess/widgets/newGameDialog.py
-}
-
-package() {
-  cd $srcdir/pychess-$pkgver
-
-  python2 setup.py install --prefix=/usr --root=$pkgdir
-}

Copied: pychess/repos/community-any/PKGBUILD (from rev 137090, 
pychess/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-18 09:19:57 UTC (rev 137091)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: Alexander Fehr pizzapunk gmail com
+
+pkgname=pychess
+pkgver=0.10.1
+pkgrel=5
+pkgdesc=Chess client for the GNOME desktop
+arch=('any')
+url=http://pychess.org/;
+license=('GPL')
+depends=('python2-rsvg' 'pygtksourceview2' 'gstreamer0.10-python' 
'desktop-file-utils')
+install=pychess.install
+source=(http://pychess.googlecode.com/files/pychess-$pkgver.tar.gz)
+md5sums=('ee1893071823b3d41ecdb1ef314fb8ba')
+
+prepare() {
+  cd $srcdir/pychess-$pkgver
+
+  sed -i s|#!/usr/bin/python$|#!/usr/bin/python2| 
lib/pychess/Players/PyChess.py
+  sed -i /vm binname/s|python|python2| lib/pychess/Players/engineNest.py
+  sed -i /binname ==/s|python|python2| lib/pychess/widgets/newGameDialog.py
+}
+
+package() {
+  cd $srcdir/pychess-$pkgver
+
+  python2 setup.py install --prefix=/usr --root=$pkgdir
+}

Deleted: pychess.install
===
--- pychess.install 2015-07-18 09:19:52 UTC (rev 137090)
+++ pychess.install 2015-07-18 09:19:57 UTC (rev 137091)
@@ -1,12 +0,0 @@
-post_install() {
-gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-update-desktop-database -q
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: pychess/repos/community-any/pychess.install (from rev 137090, 
pychess/trunk/pychess.install)
===
--- pychess.install (rev 0)
+++ pychess.install 2015-07-18 09:19:57 UTC (rev 137091)
@@ -0,0 +1,12 @@
+post_install() {
+gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}


[arch-commits] Commit in pychess/trunk (PKGBUILD)

2015-07-18 Thread Balló György
Date: Saturday, July 18, 2015 @ 11:19:52
  Author: bgyorgy
Revision: 137090

upgpkg: pychess 0.10.1-5

Remove unused gnome-icon-theme dependency

Modified:
  pychess/trunk/PKGBUILD

--+
 PKGBUILD |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-18 08:28:22 UTC (rev 137089)
+++ PKGBUILD2015-07-18 09:19:52 UTC (rev 137090)
@@ -4,13 +4,12 @@
 
 pkgname=pychess
 pkgver=0.10.1
-pkgrel=4
+pkgrel=5
 pkgdesc=Chess client for the GNOME desktop
 arch=('any')
 url=http://pychess.org/;
 license=('GPL')
-depends=('gnome-icon-theme' 'python2-rsvg' 'pygtksourceview2' 
'gstreamer0.10-python'
- 'desktop-file-utils')
+depends=('python2-rsvg' 'pygtksourceview2' 'gstreamer0.10-python' 
'desktop-file-utils')
 install=pychess.install
 source=(http://pychess.googlecode.com/files/pychess-$pkgver.tar.gz)
 md5sums=('ee1893071823b3d41ecdb1ef314fb8ba')


[arch-commits] Commit in gdesklets/trunk (PKGBUILD gdesklets.install)

2015-07-18 Thread Balló György
Date: Saturday, July 18, 2015 @ 10:28:11
  Author: bgyorgy
Revision: 137088

upgpkg: gdesklets 0.36.3-6

Remove dependency on gnome-icon-theme

Modified:
  gdesklets/trunk/PKGBUILD
  gdesklets/trunk/gdesklets.install

---+
 PKGBUILD  |4 ++--
 gdesklets.install |6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-18 03:38:51 UTC (rev 137087)
+++ PKGBUILD2015-07-18 08:28:11 UTC (rev 137088)
@@ -5,12 +5,12 @@
 
 pkgname=gdesklets
 pkgver=0.36.3
-pkgrel=5
+pkgrel=6
 pkgdesc=System for bringing mini programs (desklets) onto your desktop
 arch=('i686' 'x86_64')
 url=https://launchpad.net/gdesklets;
 license=('GPL') 
-depends=('libgtop' 'librsvg' 'pygtk' 'desktop-file-utils' 'gnome-icon-theme' 
'xdg-utils')
+depends=('libgtop' 'librsvg' 'pygtk' 'desktop-file-utils')
 makedepends=('gnome-python' 'intltool')
 install=$pkgname.install
 
source=(https://launchpad.net/gdesklets/0.3x/release-of-$pkgver/+download/$pkgname-$pkgver.tar.bz2

Modified: gdesklets.install
===
--- gdesklets.install   2015-07-18 03:38:51 UTC (rev 137087)
+++ gdesklets.install   2015-07-18 08:28:11 UTC (rev 137088)
@@ -1,13 +1,13 @@
 post_install() {
   update-desktop-database -q
   update-mime-database usr/share/mime  /dev/null
-  xdg-icon-resource forceupdate --theme gnome
+  gtk-update-icon-cache -q -t -f usr/share/icons/gnome
 }
 
 post_upgrade() {
-  post_install $1
+  post_install
 }
 
 post_remove() {
-  post_install $1
+  post_install
 }


[arch-commits] Commit in regexxer/trunk (3 files)

2015-07-17 Thread Balló György
Date: Saturday, July 18, 2015 @ 05:38:41
  Author: bgyorgy
Revision: 137086

upgpkg: regexxer 0.10-5

Fix opening preferences

Added:
  regexxer/trunk/fix-deprecated.patch
Modified:
  regexxer/trunk/PKGBUILD
  regexxer/trunk/regexxer.install

--+
 PKGBUILD |   23 
 fix-deprecated.patch | 1471 +
 regexxer.install |6 
 3 files changed, 1488 insertions(+), 12 deletions(-)

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


[arch-commits] Commit in regexxer/repos (14 files)

2015-07-17 Thread Balló György
Date: Saturday, July 18, 2015 @ 05:38:51
  Author: bgyorgy
Revision: 137087

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

Added:
  regexxer/repos/community-i686/PKGBUILD
(from rev 137086, regexxer/trunk/PKGBUILD)
  regexxer/repos/community-i686/fix-deprecated.patch
(from rev 137086, regexxer/trunk/fix-deprecated.patch)
  regexxer/repos/community-i686/regexxer-glib2.32.patch
(from rev 137086, regexxer/trunk/regexxer-glib2.32.patch)
  regexxer/repos/community-i686/regexxer.install
(from rev 137086, regexxer/trunk/regexxer.install)
  regexxer/repos/community-x86_64/PKGBUILD
(from rev 137086, regexxer/trunk/PKGBUILD)
  regexxer/repos/community-x86_64/fix-deprecated.patch
(from rev 137086, regexxer/trunk/fix-deprecated.patch)
  regexxer/repos/community-x86_64/regexxer-glib2.32.patch
(from rev 137086, regexxer/trunk/regexxer-glib2.32.patch)
  regexxer/repos/community-x86_64/regexxer.install
(from rev 137086, regexxer/trunk/regexxer.install)
Deleted:
  regexxer/repos/community-i686/PKGBUILD
  regexxer/repos/community-i686/regexxer-glib2.32.patch
  regexxer/repos/community-i686/regexxer.install
  regexxer/repos/community-x86_64/PKGBUILD
  regexxer/repos/community-x86_64/regexxer-glib2.32.patch
  regexxer/repos/community-x86_64/regexxer.install

--+
 /PKGBUILD|   88 +
 /regexxer-glib2.32.patch |   70 +
 /regexxer.install|   24 
 community-i686/PKGBUILD  |   39 
 community-i686/fix-deprecated.patch  | 1471 +
 community-i686/regexxer-glib2.32.patch   |   35 
 community-i686/regexxer.install  |   12 
 community-x86_64/PKGBUILD|   39 
 community-x86_64/fix-deprecated.patch| 1471 +
 community-x86_64/regexxer-glib2.32.patch |   35 
 community-x86_64/regexxer.install|   12 
 11 files changed, 3124 insertions(+), 172 deletions(-)

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


[arch-commits] Commit in gdesklets/repos (20 files)

2015-07-18 Thread Balló György
Date: Saturday, July 18, 2015 @ 10:28:22
  Author: bgyorgy
Revision: 137089

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

Added:
  gdesklets/repos/community-i686/PKGBUILD
(from rev 137088, gdesklets/trunk/PKGBUILD)
  gdesklets/repos/community-i686/fix-vfs.patch
(from rev 137088, gdesklets/trunk/fix-vfs.patch)
  gdesklets/repos/community-i686/gdesklets-core-0.36.3-.in-files.patch
(from rev 137088, gdesklets/trunk/gdesklets-core-0.36.3-.in-files.patch)
  gdesklets/repos/community-i686/gdesklets.install
(from rev 137088, gdesklets/trunk/gdesklets.install)
  gdesklets/repos/community-i686/make-gconf-optional.patch
(from rev 137088, gdesklets/trunk/make-gconf-optional.patch)
  gdesklets/repos/community-x86_64/PKGBUILD
(from rev 137088, gdesklets/trunk/PKGBUILD)
  gdesklets/repos/community-x86_64/fix-vfs.patch
(from rev 137088, gdesklets/trunk/fix-vfs.patch)
  gdesklets/repos/community-x86_64/gdesklets-core-0.36.3-.in-files.patch
(from rev 137088, gdesklets/trunk/gdesklets-core-0.36.3-.in-files.patch)
  gdesklets/repos/community-x86_64/gdesklets.install
(from rev 137088, gdesklets/trunk/gdesklets.install)
  gdesklets/repos/community-x86_64/make-gconf-optional.patch
(from rev 137088, gdesklets/trunk/make-gconf-optional.patch)
Deleted:
  gdesklets/repos/community-i686/PKGBUILD
  gdesklets/repos/community-i686/fix-vfs.patch
  gdesklets/repos/community-i686/gdesklets-core-0.36.3-.in-files.patch
  gdesklets/repos/community-i686/gdesklets.install
  gdesklets/repos/community-i686/make-gconf-optional.patch
  gdesklets/repos/community-x86_64/PKGBUILD
  gdesklets/repos/community-x86_64/fix-vfs.patch
  gdesklets/repos/community-x86_64/gdesklets-core-0.36.3-.in-files.patch
  gdesklets/repos/community-x86_64/gdesklets.install
  gdesklets/repos/community-x86_64/make-gconf-optional.patch

+
 /PKGBUILD  |  112 +
 /fix-vfs.patch |   22 +
 /gdesklets-core-0.36.3-.in-files.patch |  298 +++
 /gdesklets.install |   26 +
 /make-gconf-optional.patch |   72 +++
 community-i686/PKGBUILD|   56 --
 community-i686/fix-vfs.patch   |   11 
 community-i686/gdesklets-core-0.36.3-.in-files.patch   |  149 ---
 community-i686/gdesklets.install   |   13 
 community-i686/make-gconf-optional.patch   |   36 -
 community-x86_64/PKGBUILD  |   56 --
 community-x86_64/fix-vfs.patch |   11 
 community-x86_64/gdesklets-core-0.36.3-.in-files.patch |  149 ---
 community-x86_64/gdesklets.install |   13 
 community-x86_64/make-gconf-optional.patch |   36 -
 15 files changed, 530 insertions(+), 530 deletions(-)

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


[arch-commits] Commit in smuxi/repos/community-any (5 files)

2015-11-09 Thread Balló György
Date: Monday, November 9, 2015 @ 15:26:32
  Author: bgyorgy
Revision: 146425

archrelease: copy trunk to community-any

Added:
  smuxi/repos/community-any/PKGBUILD
(from rev 146424, smuxi/trunk/PKGBUILD)
  smuxi/repos/community-any/boehm.patch
(from rev 146424, smuxi/trunk/boehm.patch)
  smuxi/repos/community-any/smuxi.install
(from rev 146424, smuxi/trunk/smuxi.install)
Deleted:
  smuxi/repos/community-any/PKGBUILD
  smuxi/repos/community-any/smuxi.install

---+
 PKGBUILD  |  130 +---
 boehm.patch   |   51 +
 smuxi.install |   22 -
 3 files changed, 131 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-11-09 14:26:08 UTC (rev 146424)
+++ PKGBUILD2015-11-09 14:26:32 UTC (rev 146425)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Balló György <ballogyor+arch at gmail dot com>
-# Contributor: Madek <gonzaloseg...@gmail.com>
-# Contributor: Marcelo Cavalcante <marc...@marcelocavalcante.net>
-# Contributor: Jens Kleikamp <j...@codes-concepts.com>
-# Contributor: Philipp Gildein <r...@openspeak-project.org>
-
-pkgbase=smuxi
-pkgname=('smuxi-server' 'smuxi')
-pkgver=0.11.1
-pkgrel=1
-pkgdesc="User-friendly and cross-platform IRC client for sophisticated users 
for GNOME/GTK+"
-arch=('any')
-url="https://smuxi.im/;
-license=('GPL')
-makedepends=('notify-sharp' 'log4net' 'nini' 'gtkspell' 'stfl' 'intltool')
-options=('!emptydirs')
-source=(https://smuxi.im/jaws/data/files/$pkgbase-$pkgver.tar.gz)
-md5sums=('c61d34f6811b8aee6bd24395178a7f2a')
-
-build() {
-  cd "$srcdir/$pkgbase-$pkgver"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --enable-frontend-stfl \
-  --with-vendor-package-version="Arch Linux $pkgver-$pkgrel" \
-  MCS=/usr/bin/dmcs
-  LANG=C make
-}
-
-package_smuxi-server() {
-  pkgdesc+=" (common files and server)"
-  depends=('log4net' 'nini')
-  cd "$srcdir/$pkgbase-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  # Split frontend
-  [[ -d $srcdir/frontend ]] && rm -r "$srcdir/frontend/"
-  mkdir "$srcdir"/frontend
-  mv "$pkgdir"/usr/bin/smuxi-frontend-{gnome,stfl} \
- "$pkgdir"/usr/lib/pkgconfig/smuxi-frontend.pc \
- "$pkgdir"/usr/lib/smuxi/smuxi-frontend* \
- "$pkgdir"/usr/share/{applications,icons} \
- "$pkgdir"/usr/share/man/man1/smuxi-frontend* \
- "$srcdir/frontend/"
-}
-
-package_smuxi() {
-  pkgdesc+=" (frontend)" 
-  depends=('smuxi-server' 'notify-sharp' 'gtkspell' 'stfl')
-  install=smuxi.install
-  cd "$srcdir/frontend"
-
-  mkdir -p "$pkgdir"/usr/{bin,lib/{pkgconfig,smuxi},share/man/man1}
-  mv smuxi-frontend-{gnome,stfl} "$pkgdir/usr/bin"
-  mv smuxi-frontend.pc "$pkgdir/usr/lib/pkgconfig"
-  mv smuxi-frontend*.1 "$pkgdir/usr/share/man/man1"
-  mv smuxi-frontend* "$pkgdir/usr/lib/smuxi"
-  mv {applications,icons} "$pkgdir/usr/share"
-}

Copied: smuxi/repos/community-any/PKGBUILD (from rev 146424, 
smuxi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-11-09 14:26:32 UTC (rev 146425)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+# Contributor: Madek <gonzaloseg...@gmail.com>
+# Contributor: Marcelo Cavalcante <marc...@marcelocavalcante.net>
+# Contributor: Jens Kleikamp <j...@codes-concepts.com>
+# Contributor: Philipp Gildein <r...@openspeak-project.org>
+
+pkgbase=smuxi
+pkgname=('smuxi-server' 'smuxi')
+pkgver=1.0
+pkgrel=1
+pkgdesc="User-friendly and cross-platform IRC client for sophisticated users 
for GNOME/GTK+"
+arch=('any')
+url="https://smuxi.im/;
+license=('GPL')
+makedepends=('notify-sharp' 'log4net' 'nini' 'gtkspell' 'stfl' 'intltool')
+options=('!emptydirs')
+source=(https://smuxi.im/jaws/data/files/$pkgbase-$pkgver.tar.gz
+boehm.patch)
+md5sums=('8568485702e032d10a70b13a869400a2'
+ '2b2c372e2c128196083e639a9b91c2f6')
+
+prepare() {
+  cd "$srcdir/$pkgbase-$pkgver"
+
+  # Revert broken commit
+  patch -RNp1 -i ../boehm.patch
+}
+
+build() {
+  cd "$srcdir/$pkgbase-$pkgver"
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --enable-frontend-stfl \
+  --with-vendor-package-version="Arch Linux $pkgver-$pkgrel"
+  LANG=C make
+}
+
+package_smuxi-server() {
+  pkgdesc+=" (common files and server)"
+  depends=('log4net' 'nini')
+  cd "$srcdir/$pkgbase-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  # Split frontend

[arch-commits] Commit in smuxi/trunk (PKGBUILD boehm.patch)

2015-11-09 Thread Balló György
Date: Monday, November 9, 2015 @ 15:26:08
  Author: bgyorgy
Revision: 146424

upgpkg: smuxi 1.0-1

Update to version 1.0

Added:
  smuxi/trunk/boehm.patch
Modified:
  smuxi/trunk/PKGBUILD

-+
 PKGBUILD|   18 +-
 boehm.patch |   51 +++
 2 files changed, 64 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-09 10:39:50 UTC (rev 146423)
+++ PKGBUILD2015-11-09 14:26:08 UTC (rev 146424)
@@ -7,7 +7,7 @@
 
 pkgbase=smuxi
 pkgname=('smuxi-server' 'smuxi')
-pkgver=0.11.1
+pkgver=1.0
 pkgrel=1
 pkgdesc="User-friendly and cross-platform IRC client for sophisticated users 
for GNOME/GTK+"
 arch=('any')
@@ -15,16 +15,24 @@
 license=('GPL')
 makedepends=('notify-sharp' 'log4net' 'nini' 'gtkspell' 'stfl' 'intltool')
 options=('!emptydirs')
-source=(https://smuxi.im/jaws/data/files/$pkgbase-$pkgver.tar.gz)
-md5sums=('c61d34f6811b8aee6bd24395178a7f2a')
+source=(https://smuxi.im/jaws/data/files/$pkgbase-$pkgver.tar.gz
+boehm.patch)
+md5sums=('8568485702e032d10a70b13a869400a2'
+ '2b2c372e2c128196083e639a9b91c2f6')
 
+prepare() {
+  cd "$srcdir/$pkgbase-$pkgver"
+
+  # Revert broken commit
+  patch -RNp1 -i ../boehm.patch
+}
+
 build() {
   cd "$srcdir/$pkgbase-$pkgver"
 
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
   --enable-frontend-stfl \
-  --with-vendor-package-version="Arch Linux $pkgver-$pkgrel" \
-  MCS=/usr/bin/dmcs
+  --with-vendor-package-version="Arch Linux $pkgver-$pkgrel"
   LANG=C make
 }
 

Added: boehm.patch
===
--- boehm.patch (rev 0)
+++ boehm.patch 2015-11-09 14:26:08 UTC (rev 146424)
@@ -0,0 +1,51 @@
+commit b4b87f46ec4457ca8da31329bb9f784c6e119fc1
+Author: Mirco Bauer 
+Date:   Sat Jun 6 03:15:23 2015 +0200
+
+Server, Frontend-GNOME: use Boehm as GC instead of SGen (closes: #1062)
+
+Mono 3.2.8 (and possibly newer versions) SEGVs in Mono.Data.Sqlite when 
the GC
+is SGen and huge datasets are read from more than one thread at the same 
time
+using different databases. With Boehm this does not happen. Since Smuxi 
switched
+to SQLite by default this is a show stopper for the 1.0 release and thus 
Boehm
+will be used to workaround this issue till the Mono SGen GC or the
+Mono.Data.Sqlite binding will be fixed in a later Mono version. Or the used
+SQLite binding will be replaced with sqlite-net [0] or Hyena's SQLite 
binding [1].
+
+ [0]: https://github.com/praeclarum/sqlite-net
+ [1]: https://github.com/GNOME/hyena/tree/master/Hyena.Data.Sqlite
+
+diff --git a/src/Frontend-GNOME/smuxi-frontend-gnome.in 
b/src/Frontend-GNOME/smuxi-frontend-gnome.in
+index 3422198..2c16c35 100644
+--- a/src/Frontend-GNOME/smuxi-frontend-gnome.in
 b/src/Frontend-GNOME/smuxi-frontend-gnome.in
+@@ -5,6 +5,13 @@
+ MONO_TLS_SESSION_CACHE_TIMEOUT=0
+ export MONO_TLS_SESSION_CACHE_TIMEOUT
+ 
++# HACK: forcibly disabled SGen, as it has a known SEGV bug related to the
++# Mono.Data.Sqlite binding that does not happen with the boehm GC, see:
++# https://smuxi.im/issues/show/1062
++MONO_ENV_OPTIONS="$(echo $MONO_ENV_OPTIONS | sed s/--gc=sgen//)"
++MONO_ENV_OPTIONS="--gc=boehm $MONO_ENV_OPTIONS"
++export MONO_ENV_OPTIONS
++
+ # Smuxi uses an IPC channel for the single application instance feature and it
+ # also allows to pass links from commandline to an existing Smuxi instance. 
This
+ # IPC channel must be private to the user that executes Smuxi, else other 
system
+diff --git a/src/Server/smuxi-server.in b/src/Server/smuxi-server.in
+index 48fc4c9..fbc7b5b 100644
+--- a/src/Server/smuxi-server.in
 b/src/Server/smuxi-server.in
+@@ -5,4 +5,11 @@
+ MONO_TLS_SESSION_CACHE_TIMEOUT=0
+ export MONO_TLS_SESSION_CACHE_TIMEOUT
+ 
++# HACK: forcibly disabled SGen, as it has a known SEGV bug related to the
++# Mono.Data.Sqlite binding that does not happen with the boehm GC, see:
++# https://smuxi.im/issues/show/1062
++MONO_ENV_OPTIONS="$(echo $MONO_ENV_OPTIONS | sed s/--gc=sgen//)"
++MONO_ENV_OPTIONS="--gc=boehm $MONO_ENV_OPTIONS"
++export MONO_ENV_OPTIONS
++
+ exec mono --debug "@expanded_libdir@/@PACKAGE@/smuxi-server.exe" "$@"


[arch-commits] Commit in smuxi/trunk (PKGBUILD)

2015-11-09 Thread Balló György
Date: Monday, November 9, 2015 @ 15:40:17
  Author: bgyorgy
Revision: 146426

upgpkg: smuxi 1.0-2

Move appdata file to the correct package

Modified:
  smuxi/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-09 14:26:32 UTC (rev 146425)
+++ PKGBUILD2015-11-09 14:40:17 UTC (rev 146426)
@@ -8,7 +8,7 @@
 pkgbase=smuxi
 pkgname=('smuxi-server' 'smuxi')
 pkgver=1.0
-pkgrel=1
+pkgrel=2
 pkgdesc="User-friendly and cross-platform IRC client for sophisticated users 
for GNOME/GTK+"
 arch=('any')
 url="https://smuxi.im/;
@@ -49,7 +49,7 @@
   mv "$pkgdir"/usr/bin/smuxi-frontend-{gnome,stfl} \
  "$pkgdir"/usr/lib/pkgconfig/smuxi-frontend.pc \
  "$pkgdir"/usr/lib/smuxi/smuxi-frontend* \
- "$pkgdir"/usr/share/{applications,icons} \
+ "$pkgdir"/usr/share/{appdata,applications,icons} \
  "$pkgdir"/usr/share/man/man1/smuxi-frontend* \
  "$srcdir/frontend/"
 }
@@ -65,5 +65,5 @@
   mv smuxi-frontend.pc "$pkgdir/usr/lib/pkgconfig"
   mv smuxi-frontend*.1 "$pkgdir/usr/share/man/man1"
   mv smuxi-frontend* "$pkgdir/usr/lib/smuxi"
-  mv {applications,icons} "$pkgdir/usr/share"
+  mv {appdata,applications,icons} "$pkgdir/usr/share"
 }


[arch-commits] Commit in smuxi/repos/community-any (PKGBUILD smuxi.install)

2015-11-09 Thread Balló György
Date: Monday, November 9, 2015 @ 15:40:22
  Author: bgyorgy
Revision: 146427

archrelease: copy trunk to community-any

Deleted:
  smuxi/repos/community-any/PKGBUILD
  smuxi/repos/community-any/smuxi.install

---+
 PKGBUILD  |   69 
 smuxi.install |   11 
 2 files changed, 80 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-11-09 14:40:17 UTC (rev 146426)
+++ PKGBUILD2015-11-09 14:40:22 UTC (rev 146427)
@@ -1,69 +0,0 @@
-# $Id$
-# Maintainer: Balló György <ballogyor+arch at gmail dot com>
-# Contributor: Madek <gonzaloseg...@gmail.com>
-# Contributor: Marcelo Cavalcante <marc...@marcelocavalcante.net>
-# Contributor: Jens Kleikamp <j...@codes-concepts.com>
-# Contributor: Philipp Gildein <r...@openspeak-project.org>
-
-pkgbase=smuxi
-pkgname=('smuxi-server' 'smuxi')
-pkgver=1.0
-pkgrel=1
-pkgdesc="User-friendly and cross-platform IRC client for sophisticated users 
for GNOME/GTK+"
-arch=('any')
-url="https://smuxi.im/;
-license=('GPL')
-makedepends=('notify-sharp' 'log4net' 'nini' 'gtkspell' 'stfl' 'intltool')
-options=('!emptydirs')
-source=(https://smuxi.im/jaws/data/files/$pkgbase-$pkgver.tar.gz
-boehm.patch)
-md5sums=('8568485702e032d10a70b13a869400a2'
- '2b2c372e2c128196083e639a9b91c2f6')
-
-prepare() {
-  cd "$srcdir/$pkgbase-$pkgver"
-
-  # Revert broken commit
-  patch -RNp1 -i ../boehm.patch
-}
-
-build() {
-  cd "$srcdir/$pkgbase-$pkgver"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --enable-frontend-stfl \
-  --with-vendor-package-version="Arch Linux $pkgver-$pkgrel"
-  LANG=C make
-}
-
-package_smuxi-server() {
-  pkgdesc+=" (common files and server)"
-  depends=('log4net' 'nini')
-  cd "$srcdir/$pkgbase-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  # Split frontend
-  [[ -d $srcdir/frontend ]] && rm -r "$srcdir/frontend/"
-  mkdir "$srcdir"/frontend
-  mv "$pkgdir"/usr/bin/smuxi-frontend-{gnome,stfl} \
- "$pkgdir"/usr/lib/pkgconfig/smuxi-frontend.pc \
- "$pkgdir"/usr/lib/smuxi/smuxi-frontend* \
- "$pkgdir"/usr/share/{applications,icons} \
- "$pkgdir"/usr/share/man/man1/smuxi-frontend* \
- "$srcdir/frontend/"
-}
-
-package_smuxi() {
-  pkgdesc+=" (frontend)" 
-  depends=('smuxi-server' 'notify-sharp' 'gtkspell' 'stfl')
-  install=smuxi.install
-  cd "$srcdir/frontend"
-
-  mkdir -p "$pkgdir"/usr/{bin,lib/{pkgconfig,smuxi},share/man/man1}
-  mv smuxi-frontend-{gnome,stfl} "$pkgdir/usr/bin"
-  mv smuxi-frontend.pc "$pkgdir/usr/lib/pkgconfig"
-  mv smuxi-frontend*.1 "$pkgdir/usr/share/man/man1"
-  mv smuxi-frontend* "$pkgdir/usr/lib/smuxi"
-  mv {applications,icons} "$pkgdir/usr/share"
-}

Deleted: smuxi.install
===
--- smuxi.install   2015-11-09 14:40:17 UTC (rev 146426)
+++ smuxi.install   2015-11-09 14:40:22 UTC (rev 146427)
@@ -1,11 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}


[arch-commits] Commit in smuxi/repos/community-any (4 files)

2015-11-09 Thread Balló György
Date: Monday, November 9, 2015 @ 15:40:48
  Author: bgyorgy
Revision: 146428

archrelease: copy trunk to community-any

Added:
  smuxi/repos/community-any/PKGBUILD
(from rev 146427, smuxi/trunk/PKGBUILD)
  smuxi/repos/community-any/boehm.patch
(from rev 146427, smuxi/trunk/boehm.patch)
  smuxi/repos/community-any/smuxi.install
(from rev 146427, smuxi/trunk/smuxi.install)
Deleted:
  smuxi/repos/community-any/boehm.patch

---+
 PKGBUILD  |   69 +
 boehm.patch   |  102 
 smuxi.install |   11 ++
 3 files changed, 131 insertions(+), 51 deletions(-)

Copied: smuxi/repos/community-any/PKGBUILD (from rev 146427, 
smuxi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-11-09 14:40:48 UTC (rev 146428)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+# Contributor: Madek <gonzaloseg...@gmail.com>
+# Contributor: Marcelo Cavalcante <marc...@marcelocavalcante.net>
+# Contributor: Jens Kleikamp <j...@codes-concepts.com>
+# Contributor: Philipp Gildein <r...@openspeak-project.org>
+
+pkgbase=smuxi
+pkgname=('smuxi-server' 'smuxi')
+pkgver=1.0
+pkgrel=2
+pkgdesc="User-friendly and cross-platform IRC client for sophisticated users 
for GNOME/GTK+"
+arch=('any')
+url="https://smuxi.im/;
+license=('GPL')
+makedepends=('notify-sharp' 'log4net' 'nini' 'gtkspell' 'stfl' 'intltool')
+options=('!emptydirs')
+source=(https://smuxi.im/jaws/data/files/$pkgbase-$pkgver.tar.gz
+boehm.patch)
+md5sums=('8568485702e032d10a70b13a869400a2'
+ '2b2c372e2c128196083e639a9b91c2f6')
+
+prepare() {
+  cd "$srcdir/$pkgbase-$pkgver"
+
+  # Revert broken commit
+  patch -RNp1 -i ../boehm.patch
+}
+
+build() {
+  cd "$srcdir/$pkgbase-$pkgver"
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --enable-frontend-stfl \
+  --with-vendor-package-version="Arch Linux $pkgver-$pkgrel"
+  LANG=C make
+}
+
+package_smuxi-server() {
+  pkgdesc+=" (common files and server)"
+  depends=('log4net' 'nini')
+  cd "$srcdir/$pkgbase-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  # Split frontend
+  [[ -d $srcdir/frontend ]] && rm -r "$srcdir/frontend/"
+  mkdir "$srcdir"/frontend
+  mv "$pkgdir"/usr/bin/smuxi-frontend-{gnome,stfl} \
+ "$pkgdir"/usr/lib/pkgconfig/smuxi-frontend.pc \
+ "$pkgdir"/usr/lib/smuxi/smuxi-frontend* \
+ "$pkgdir"/usr/share/{appdata,applications,icons} \
+ "$pkgdir"/usr/share/man/man1/smuxi-frontend* \
+ "$srcdir/frontend/"
+}
+
+package_smuxi() {
+  pkgdesc+=" (frontend)" 
+  depends=('smuxi-server' 'notify-sharp' 'gtkspell' 'stfl')
+  install=smuxi.install
+  cd "$srcdir/frontend"
+
+  mkdir -p "$pkgdir"/usr/{bin,lib/{pkgconfig,smuxi},share/man/man1}
+  mv smuxi-frontend-{gnome,stfl} "$pkgdir/usr/bin"
+  mv smuxi-frontend.pc "$pkgdir/usr/lib/pkgconfig"
+  mv smuxi-frontend*.1 "$pkgdir/usr/share/man/man1"
+  mv smuxi-frontend* "$pkgdir/usr/lib/smuxi"
+  mv {appdata,applications,icons} "$pkgdir/usr/share"
+}

Deleted: boehm.patch
===
--- boehm.patch 2015-11-09 14:40:22 UTC (rev 146427)
+++ boehm.patch 2015-11-09 14:40:48 UTC (rev 146428)
@@ -1,51 +0,0 @@
-commit b4b87f46ec4457ca8da31329bb9f784c6e119fc1
-Author: Mirco Bauer <mee...@meebey.net>
-Date:   Sat Jun 6 03:15:23 2015 +0200
-
-Server, Frontend-GNOME: use Boehm as GC instead of SGen (closes: #1062)
-
-Mono 3.2.8 (and possibly newer versions) SEGVs in Mono.Data.Sqlite when 
the GC
-is SGen and huge datasets are read from more than one thread at the same 
time
-using different databases. With Boehm this does not happen. Since Smuxi 
switched
-to SQLite by default this is a show stopper for the 1.0 release and thus 
Boehm
-will be used to workaround this issue till the Mono SGen GC or the
-Mono.Data.Sqlite binding will be fixed in a later Mono version. Or the used
-SQLite binding will be replaced with sqlite-net [0] or Hyena's SQLite 
binding [1].
-
- [0]: https://github.com/praeclarum/sqlite-net
- [1]: https://github.com/GNOME/hyena/tree/master/Hyena.Data.Sqlite
-
-diff --git a/src/Frontend-GNOME/smuxi-frontend-gnome.in 
b/src/Frontend-GNOME/smuxi-frontend-gnome.in
-index 3422198..2c16c35 100644
 a/src/Frontend-GNOME/smuxi-frontend-gnome.in
-+++ b/src/Frontend-GNOME/smuxi-frontend-gnome.in
-@@ -5,6 +5,13 @@
- MONO_TLS_SESSION_CACHE_TIMEOUT=0
- export MONO_TLS_SESSION_CACHE_TIMEOUT
- 
-+# HACK: forcibly disabled SGen, as it has a known SEGV bug related 

[arch-commits] Commit in gnubiff/trunk (PKGBUILD gnubiff.install)

2015-11-08 Thread Balló György
Date: Sunday, November 8, 2015 @ 15:12:10
  Author: bgyorgy
Revision: 146398

upgpkg: gnubiff 2.2.16-1

Update to version 2.2.16

Added:
  gnubiff/trunk/gnubiff.install
Modified:
  gnubiff/trunk/PKGBUILD

-+
 PKGBUILD|   15 ++-
 gnubiff.install |   13 +
 2 files changed, 19 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-08 07:36:37 UTC (rev 146397)
+++ PKGBUILD2015-11-08 14:12:10 UTC (rev 146398)
@@ -4,18 +4,18 @@
 # Contributor: Todd Musall 
 
 pkgname=gnubiff
-pkgver=2.2.15
-pkgrel=3
+pkgver=2.2.16
+pkgrel=1
 pkgdesc="Mail notification program that checks for mail and displays headers 
when new mail has arrived"
 arch=('i686' 'x86_64')
 url="http://gnubiff.sourceforge.net/;
 license=("GPL")
-depends=('libglade' 'gtk3' 'popt')
-makedepends=('perl-xml-parser' 'intltool')
-conflicts=(gnubiff-gtk)
+depends=('gtk3' 'popt')
+makedepends=('intltool')
 source=(http://downloads.sourceforge.net/gnubiff/gnubiff-$pkgver.tar.gz
mutex.patch)
-md5sums=('c705e1135b0bd4c8d8f7ce72ca7b5443'
+install=gnubiff.install
+md5sums=('f908510bf3d9b38f883dc5873b09f99c'
  '76de63fbc4a1487560cfae210fc1d6e4')
 
 prepare() {
@@ -24,9 +24,7 @@
 }
 
 build() {
-  [ "$GNOMEDIR" = "" ] && GNOMEDIR=/usr
   cd $srcdir/gnubiff-$pkgver
-  export LDFLAGS="-lgthread-2.0"
   ./configure --prefix=/usr --with-password 
--with-password-string="65423957eb027b94c9e661611c0e4271" \
--disable-fam --disable-gnome
   make
@@ -35,5 +33,4 @@
 package() {
   cd $srcdir/gnubiff-$pkgver
   make DESTDIR=$pkgdir install
-  rm -rf ${pkgdir}/usr/share/info/dir
 }

Added: gnubiff.install
===
--- gnubiff.install (rev 0)
+++ gnubiff.install 2015-11-08 14:12:10 UTC (rev 146398)
@@ -0,0 +1,13 @@
+infodir=usr/share/info
+
+post_install() {
+  install-info $infodir/gnubiff.info.gz $infodir/dir 2> /dev/null
+}
+
+post_upgrade() {
+  post-install
+}
+
+pre_remove() {
+  install-info --delete $infodir/gnubiff.info.gz $infodir/dir 2> /dev/null
+}


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

2015-11-08 Thread Balló György
Date: Sunday, November 8, 2015 @ 15:12:19
  Author: bgyorgy
Revision: 146399

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

Added:
  gnubiff/repos/community-i686/PKGBUILD
(from rev 146398, gnubiff/trunk/PKGBUILD)
  gnubiff/repos/community-i686/gnubiff.install
(from rev 146398, gnubiff/trunk/gnubiff.install)
  gnubiff/repos/community-i686/mutex.patch
(from rev 146398, gnubiff/trunk/mutex.patch)
  gnubiff/repos/community-x86_64/PKGBUILD
(from rev 146398, gnubiff/trunk/PKGBUILD)
  gnubiff/repos/community-x86_64/gnubiff.install
(from rev 146398, gnubiff/trunk/gnubiff.install)
  gnubiff/repos/community-x86_64/mutex.patch
(from rev 146398, gnubiff/trunk/mutex.patch)
Deleted:
  gnubiff/repos/community-i686/PKGBUILD
  gnubiff/repos/community-i686/mutex.patch
  gnubiff/repos/community-x86_64/PKGBUILD
  gnubiff/repos/community-x86_64/mutex.patch

--+
 /PKGBUILD|   72 +
 /mutex.patch |   26 +
 community-i686/PKGBUILD  |   39 
 community-i686/gnubiff.install   |   13 ++
 community-i686/mutex.patch   |   13 --
 community-x86_64/PKGBUILD|   39 
 community-x86_64/gnubiff.install |   13 ++
 community-x86_64/mutex.patch |   13 --
 8 files changed, 124 insertions(+), 104 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-08 14:12:10 UTC (rev 146398)
+++ community-i686/PKGBUILD 2015-11-08 14:12:19 UTC (rev 146399)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Tom K 
-# Contributor: Todd Musall 
-
-pkgname=gnubiff
-pkgver=2.2.15
-pkgrel=3
-pkgdesc="Mail notification program that checks for mail and displays headers 
when new mail has arrived"
-arch=('i686' 'x86_64')
-url="http://gnubiff.sourceforge.net/;
-license=("GPL")
-depends=('libglade' 'gtk3' 'popt')
-makedepends=('perl-xml-parser' 'intltool')
-conflicts=(gnubiff-gtk)
-source=(http://downloads.sourceforge.net/gnubiff/gnubiff-$pkgver.tar.gz
-   mutex.patch)
-md5sums=('c705e1135b0bd4c8d8f7ce72ca7b5443'
- '76de63fbc4a1487560cfae210fc1d6e4')
-
-prepare() {
-  cd $srcdir/gnubiff-$pkgver
-  patch -p1 <$srcdir/mutex.patch
-}
-
-build() {
-  [ "$GNOMEDIR" = "" ] && GNOMEDIR=/usr
-  cd $srcdir/gnubiff-$pkgver
-  export LDFLAGS="-lgthread-2.0"
-  ./configure --prefix=/usr --with-password 
--with-password-string="65423957eb027b94c9e661611c0e4271" \
-   --disable-fam --disable-gnome
-  make
-}
-
-package() {
-  cd $srcdir/gnubiff-$pkgver
-  make DESTDIR=$pkgdir install
-  rm -rf ${pkgdir}/usr/share/info/dir
-}

Copied: gnubiff/repos/community-i686/PKGBUILD (from rev 146398, 
gnubiff/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-08 14:12:19 UTC (rev 146399)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Tom K 
+# Contributor: Todd Musall 
+
+pkgname=gnubiff
+pkgver=2.2.16
+pkgrel=1
+pkgdesc="Mail notification program that checks for mail and displays headers 
when new mail has arrived"
+arch=('i686' 'x86_64')
+url="http://gnubiff.sourceforge.net/;
+license=("GPL")
+depends=('gtk3' 'popt')
+makedepends=('intltool')
+source=(http://downloads.sourceforge.net/gnubiff/gnubiff-$pkgver.tar.gz
+   mutex.patch)
+install=gnubiff.install
+md5sums=('f908510bf3d9b38f883dc5873b09f99c'
+ '76de63fbc4a1487560cfae210fc1d6e4')
+
+prepare() {
+  cd $srcdir/gnubiff-$pkgver
+  patch -p1 <$srcdir/mutex.patch
+}
+
+build() {
+  cd $srcdir/gnubiff-$pkgver
+  ./configure --prefix=/usr --with-password 
--with-password-string="65423957eb027b94c9e661611c0e4271" \
+   --disable-fam --disable-gnome
+  make
+}
+
+package() {
+  cd $srcdir/gnubiff-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: gnubiff/repos/community-i686/gnubiff.install (from rev 146398, 
gnubiff/trunk/gnubiff.install)
===
--- community-i686/gnubiff.install  (rev 0)
+++ community-i686/gnubiff.install  2015-11-08 14:12:19 UTC (rev 146399)
@@ -0,0 +1,13 @@
+infodir=usr/share/info
+
+post_install() {
+  install-info $infodir/gnubiff.info.gz $infodir/dir 2> /dev/null
+}
+
+post_upgrade() {
+  post-install
+}
+
+pre_remove() {
+  install-info --delete $infodir/gnubiff.info.gz $infodir/dir 2> /dev/null
+}

Deleted: community-i686/mutex.patch
===
--- community-i686/mutex.patch  2015-11-08 14:12:10 UTC (rev 146398)
+++ community-i686/mutex.patch  2015-11-08 14:12:19 UTC (rev 146399)
@@ -1,13 +0,0 @@

[arch-commits] Commit in virtviewer/repos (8 files)

2015-11-08 Thread Balló György
Date: Monday, November 9, 2015 @ 03:02:25
  Author: bgyorgy
Revision: 146414

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

Added:
  virtviewer/repos/community-i686/PKGBUILD
(from rev 146413, virtviewer/trunk/PKGBUILD)
  virtviewer/repos/community-i686/virtviewer.install
(from rev 146413, virtviewer/trunk/virtviewer.install)
  virtviewer/repos/community-x86_64/PKGBUILD
(from rev 146413, virtviewer/trunk/PKGBUILD)
  virtviewer/repos/community-x86_64/virtviewer.install
(from rev 146413, virtviewer/trunk/virtviewer.install)
Deleted:
  virtviewer/repos/community-i686/PKGBUILD
  virtviewer/repos/community-i686/virtviewer.install
  virtviewer/repos/community-x86_64/PKGBUILD
  virtviewer/repos/community-x86_64/virtviewer.install

-+
 /PKGBUILD   |   54 ++
 /virtviewer.install |   26 
 community-i686/PKGBUILD |   27 -
 community-i686/virtviewer.install   |   13 
 community-x86_64/PKGBUILD   |   27 -
 community-x86_64/virtviewer.install |   13 
 6 files changed, 80 insertions(+), 80 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-09 02:02:18 UTC (rev 146413)
+++ community-i686/PKGBUILD 2015-11-09 02:02:25 UTC (rev 146414)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jonathan Wiersma 
-
-pkgname=virtviewer
-pkgver=2.0
-pkgrel=1
-pkgdesc="A lightweight interface for interacting with the graphical display of 
virtualized guest OS."
-depends=('gtk-vnc' 'libglade>=2.6.0' 'libvirt' 'spice-gtk3' 
'desktop-file-utils')
-makedepends=('intltool' 'spice-protocol')
-url="http://virt-manager.org/;
-arch=('i686' 'x86_64')
-license=('GPL')
-install=virtviewer.install
-source=("http://virt-manager.org/download/sources/virt-viewer/virt-viewer-$pkgver.tar.gz;)
-md5sums=('4b1e9a2029e0dfff741e17bb915f75ec')
-
-build() {
-  cd $srcdir/virt-viewer-$pkgver
-  ./configure --prefix=/usr --with-gtk=3.0 --disable-update-mimedb
-  make
-}
-
-package() {
-  cd $srcdir/virt-viewer-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: virtviewer/repos/community-i686/PKGBUILD (from rev 146413, 
virtviewer/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-09 02:02:25 UTC (rev 146414)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jonathan Wiersma 
+
+pkgname=virtviewer
+pkgver=2.0
+pkgrel=2
+pkgdesc="A lightweight interface for interacting with the graphical display of 
virtualized guest OS."
+depends=('gtk-vnc' 'libvirt' 'spice-gtk3' 'desktop-file-utils')
+makedepends=('intltool' 'spice-protocol')
+url="http://virt-manager.org/;
+arch=('i686' 'x86_64')
+license=('GPL')
+install=virtviewer.install
+source=("http://virt-manager.org/download/sources/virt-viewer/virt-viewer-$pkgver.tar.gz;)
+md5sums=('4b1e9a2029e0dfff741e17bb915f75ec')
+
+build() {
+  cd $srcdir/virt-viewer-$pkgver
+  ./configure --prefix=/usr --with-gtk=3.0 --disable-update-mimedb
+  make
+}
+
+package() {
+  cd $srcdir/virt-viewer-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-i686/virtviewer.install
===
--- community-i686/virtviewer.install   2015-11-09 02:02:18 UTC (rev 146413)
+++ community-i686/virtviewer.install   2015-11-09 02:02:25 UTC (rev 146414)
@@ -1,13 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-  update-mime-database /usr/share/mime > /dev/null
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: virtviewer/repos/community-i686/virtviewer.install (from rev 146413, 
virtviewer/trunk/virtviewer.install)
===
--- community-i686/virtviewer.install   (rev 0)
+++ community-i686/virtviewer.install   2015-11-09 02:02:25 UTC (rev 146414)
@@ -0,0 +1,13 @@
+post_install() {
+  update-desktop-database -q
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+  update-mime-database /usr/share/mime > /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-11-09 02:02:18 UTC (rev 146413)
+++ community-x86_64/PKGBUILD   2015-11-09 02:02:25 UTC (rev 146414)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jonathan Wiersma 
-
-pkgname=virtviewer
-pkgver=2.0
-pkgrel=1
-pkgdesc="A lightweight interface for interacting with the 

[arch-commits] Commit in virtviewer/trunk (PKGBUILD)

2015-11-08 Thread Balló György
Date: Monday, November 9, 2015 @ 03:02:18
  Author: bgyorgy
Revision: 146413

upgpkg: virtviewer 2.0-2

Remove unused libglade dependency

Modified:
  virtviewer/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-09 01:54:48 UTC (rev 146412)
+++ PKGBUILD2015-11-09 02:02:18 UTC (rev 146413)
@@ -4,9 +4,9 @@
 
 pkgname=virtviewer
 pkgver=2.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A lightweight interface for interacting with the graphical display of 
virtualized guest OS."
-depends=('gtk-vnc' 'libglade>=2.6.0' 'libvirt' 'spice-gtk3' 
'desktop-file-utils')
+depends=('gtk-vnc' 'libvirt' 'spice-gtk3' 'desktop-file-utils')
 makedepends=('intltool' 'spice-protocol')
 url="http://virt-manager.org/;
 arch=('i686' 'x86_64')


[arch-commits] Commit in devede/trunk (PKGBUILD help.patch)

2015-11-08 Thread Balló György
Date: Monday, November 9, 2015 @ 02:54:37
  Author: bgyorgy
Revision: 146411

upgpkg: devede 4.3-3

Fix opening help, fix dependencies

Added:
  devede/trunk/help.patch
Modified:
  devede/trunk/PKGBUILD

+
 PKGBUILD   |   13 +++--
 help.patch |   33 +
 2 files changed, 40 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-08 23:59:51 UTC (rev 146410)
+++ PKGBUILD2015-11-09 01:54:37 UTC (rev 146411)
@@ -6,7 +6,7 @@
 
 pkgname=devede
 pkgver=4.3
-pkgrel=2
+pkgrel=3
 pkgdesc="A program to create VideoDVDs and CDs"
 arch=('any')
 url="http://www.rastersoft.com/programas/devede.html;
@@ -13,14 +13,15 @@
 license=('GPL3')
 depends=('mplayer' 'mencoder' 'ffmpeg' 'dvdauthor' 'vcdimager'
 'cdrkit' 'ttf-dejavu'
-'python-dbus' 'python-cairo' 'python-setuptools' 'python-gobject'
-'python-pip')
-source=($pkgname-$pkgver.tar.gz::https://github.com/rastersoft/devedeng/archive/$pkgver.tar.gz)
-md5sums=('57e466a0cbe7aeeb864dc9c4051343e3')
+'gtk3' 'python-cairo' 'python-gobject' 'python-setuptools')
+source=($pkgname-$pkgver.tar.gz::https://github.com/rastersoft/devedeng/archive/$pkgver.tar.gz
+help.patch)
+md5sums=('57e466a0cbe7aeeb864dc9c4051343e3'
+ '91c510680c6809367e0a318ec2777c54')
 
 prepare() {
   cd ${srcdir}/${pkgname}ng-$pkgver
-  sed -i 's/import devedeng.help//' src/devedeng/project.py 
+  patch -Np1 -i ${srcdir}/help.patch
 }
 
 package() {

Added: help.patch
===
--- help.patch  (rev 0)
+++ help.patch  2015-11-09 01:54:37 UTC (rev 146411)
@@ -0,0 +1,33 @@
+From 58776ef1b6d88a79b03892b72bac625a60e293b8 Mon Sep 17 00:00:00 2001
+From: Sergio Costas 
+Date: Wed, 28 Oct 2015 16:28:53 +0100
+Subject: [PATCH] Added forgoten file help.py
+
+---
+ src/devedeng/help.py | 17 +
+ 1 file changed, 17 insertions(+)
+ create mode 100644 src/devedeng/help.py
+
+diff --git a/src/devedeng/help.py b/src/devedeng/help.py
+new file mode 100644
+index 000..796bd9e
+--- /dev/null
 b/src/devedeng/help.py
+@@ -0,0 +1,17 @@
++#!/usr/bin/env python3
++
++from gi.repository import Gtk,Gdk
++import devedeng.configuration_data
++import os
++
++class help:
++
++def __init__(self,help_page):
++
++self.config = devedeng.configuration_data.configuration.get_config()
++
++file="file://"+os.path.join(self.config.help_path,"html",help_page)
++
++retval = Gtk.show_uri(None,file,Gdk.CURRENT_TIME)
++if retval == False:
++msg=devede_dialogs.show_error(gladefile,_("Can't open the help 
files."))


<    10   11   12   13   14   15   16   17   18   19   >