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

2018-12-29 Thread Christian Hesse via arch-commits
Date: Saturday, December 29, 2018 @ 23:09:57
  Author: eworm
Revision: 342789

archrelease: copy trunk to testing-x86_64

Added:
  xfce4-session/repos/testing-x86_64/
  
xfce4-session/repos/testing-x86_64/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
(from rev 342788, 
xfce4-session/trunk/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch)
  
xfce4-session/repos/testing-x86_64/0002-Make-verbose-logging-conditional-Bug-11698.patch
(from rev 342788, 
xfce4-session/trunk/0002-Make-verbose-logging-conditional-Bug-11698.patch)
  
xfce4-session/repos/testing-x86_64/0003-xfce4-session-source-system-xinitrc-scripts.patch
(from rev 342788, 
xfce4-session/trunk/0003-xfce4-session-source-system-xinitrc-scripts.patch)
  xfce4-session/repos/testing-x86_64/0004-screenlockers.patch
(from rev 342788, xfce4-session/trunk/0004-screenlockers.patch)
  xfce4-session/repos/testing-x86_64/0005-dbus-launch.patch
(from rev 342788, xfce4-session/trunk/0005-dbus-launch.patch)
  xfce4-session/repos/testing-x86_64/PKGBUILD
(from rev 342788, xfce4-session/trunk/PKGBUILD)
  
xfce4-session/repos/testing-x86_64/xfce-polkit-gnome-authentication-agent-1.desktop
(from rev 342788, 
xfce4-session/trunk/xfce-polkit-gnome-authentication-agent-1.desktop)

+
 0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch  |   27 
 0002-Make-verbose-logging-conditional-Bug-11698.patch  |   31 +
 0003-xfce4-session-source-system-xinitrc-scripts.patch |   18 +++
 0004-screenlockers.patch   |   58 ++
 0005-dbus-launch.patch |   15 ++
 PKGBUILD   |   80 +
 xfce-polkit-gnome-authentication-agent-1.desktop   |   87 +++
 7 files changed, 316 insertions(+)

Copied: 
xfce4-session/repos/testing-x86_64/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
 (from rev 342788, 
xfce4-session/trunk/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch)
===
--- testing-x86_64/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
(rev 0)
+++ testing-x86_64/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
2018-12-29 23:09:57 UTC (rev 342789)
@@ -0,0 +1,27 @@
+From e740aad5d6761ce9a9df48a3d87ff29240433d19 Mon Sep 17 00:00:00 2001
+From: Evangelos Foutras 
+Date: Tue, 24 Mar 2015 10:09:33 +0200
+Subject: [PATCH] Pass VT number to xinit if XDG_VTNR is set
+
+---
+ scripts/startxfce4.in | 4 
+ 1 file changed, 4 insertions(+)
+
+diff --git a/scripts/startxfce4.in b/scripts/startxfce4.in
+index d0a74a9..bf3201b 100644
+--- a/scripts/startxfce4.in
 b/scripts/startxfce4.in
+@@ -92,6 +92,10 @@ if test "x$DISPLAY" = "x"
+ then
+   echo "$0: Starting X server"
+   prog=xinit
++
++  if test ! "x$XDG_VTNR" = "x"; then
++SERVERRC="vt$XDG_VTNR $SERVERRC"
++  fi
+ else
+   echo "$0: X server already running on display $DISPLAY"
+   prog=/bin/sh
+-- 
+2.3.4
+

Copied: 
xfce4-session/repos/testing-x86_64/0002-Make-verbose-logging-conditional-Bug-11698.patch
 (from rev 342788, 
xfce4-session/trunk/0002-Make-verbose-logging-conditional-Bug-11698.patch)
===
--- testing-x86_64/0002-Make-verbose-logging-conditional-Bug-11698.patch
(rev 0)
+++ testing-x86_64/0002-Make-verbose-logging-conditional-Bug-11698.patch
2018-12-29 23:09:57 UTC (rev 342789)
@@ -0,0 +1,31 @@
+From 26f9ae8df629f02af0773df2ed82db6b85c5b556 Mon Sep 17 00:00:00 2001
+From: Eric Koegel 
+Date: Sat, 28 Mar 2015 16:57:24 +0300
+Subject: [PATCH] Make verbose logging conditional (Bug #11698)
+
+Bug report and patch submitted by Zhihao Yuan
+
+Signed-off-by: Eric Koegel 
+---
+ xfce4-session/xfsm-global.h | 5 -
+ 1 file changed, 4 insertions(+), 1 deletion(-)
+
+diff --git a/xfce4-session/xfsm-global.h b/xfce4-session/xfsm-global.h
+index d2e0c29..d458712 100644
+--- a/xfce4-session/xfsm-global.h
 b/xfce4-session/xfsm-global.h
+@@ -49,7 +49,10 @@ extern XfsmSplashScreen *splash_screen;
+ #if defined(G_HAVE_ISO_VARARGS)
+ 
+ #define xfsm_verbose(...)\
+-xfsm_verbose_real (__func__, __FILE__, __LINE__, __VA_ARGS__)
++G_STMT_START{ \
++  if (G_UNLIKELY (verbose)) \
++xfsm_verbose_real (__func__, __FILE__, __LINE__, __VA_ARGS__); \
++}G_STMT_END
+ 
+ #else
+ 
+-- 
+2.13.2
+

Copied: 
xfce4-session/repos/testing-x86_64/0003-xfce4-session-source-system-xinitrc-scripts.patch
 (from rev 342788, 
xfce4-session/trunk/0003-xfce4-session-source-system-xinitrc-scripts.patch)
===
--- testing-x86_64/0003-xfce4-session-source-system-xinitrc-scripts.patch   
(rev 0)
+++ testing-x86_64/0003-xfce4-session-source-system-xinitrc-scripts.patch   
2018-12-29 23:09:57 UTC (rev 342789)

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

2013-08-03 Thread Evangelos Foutras
Date: Saturday, August 3, 2013 @ 17:37:32
  Author: foutrelis
Revision: 191980

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

Added:
  xfce4-session/repos/testing-i686/
  xfce4-session/repos/testing-i686/PKGBUILD
(from rev 191979, xfce4-session/trunk/PKGBUILD)
  
xfce4-session/repos/testing-i686/xfce4-session-4.10.1-logind-support-for-suspend-hibernate.patch
(from rev 191979, 
xfce4-session/trunk/xfce4-session-4.10.1-logind-support-for-suspend-hibernate.patch)
  xfce4-session/repos/testing-i686/xfce4-session.install
(from rev 191979, xfce4-session/trunk/xfce4-session.install)
  xfce4-session/repos/testing-x86_64/
  xfce4-session/repos/testing-x86_64/PKGBUILD
(from rev 191979, xfce4-session/trunk/PKGBUILD)
  
xfce4-session/repos/testing-x86_64/xfce4-session-4.10.1-logind-support-for-suspend-hibernate.patch
(from rev 191979, 
xfce4-session/trunk/xfce4-session-4.10.1-logind-support-for-suspend-hibernate.patch)
  xfce4-session/repos/testing-x86_64/xfce4-session.install
(from rev 191979, xfce4-session/trunk/xfce4-session.install)

+
 testing-i686/PKGBUILD  
|   56 ++
 testing-i686/xfce4-session-4.10.1-logind-support-for-suspend-hibernate.patch   
|  275 ++
 testing-i686/xfce4-session.install 
|   13 
 testing-x86_64/PKGBUILD
|   56 ++
 testing-x86_64/xfce4-session-4.10.1-logind-support-for-suspend-hibernate.patch 
|  275 ++
 testing-x86_64/xfce4-session.install   
|   13 
 6 files changed, 688 insertions(+)

Copied: xfce4-session/repos/testing-i686/PKGBUILD (from rev 191979, 
xfce4-session/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-08-03 15:37:32 UTC (rev 191980)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+
+pkgname=xfce4-session
+pkgver=4.10.1
+pkgrel=3
+pkgdesc="A session manager for Xfce"
+arch=('i686' 'x86_64')
+url="http://www.xfce.org/";
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4ui' 'libwnck' 'libsm' 'xorg-iceauth' 'upower' 'xorg-xinit'
+ 'xorg-xrdb' 'hicolor-icon-theme')
+makedepends=('intltool' 'xfce4-dev-tools')
+optdepends=('gnome-keyring: for keyring support when GNOME compatibility is 
enabled'
+'xscreensaver: for locking screen with xflock4'
+'gnome-screensaver: for locking screen with xflock4'
+'xlockmore: for locking screen with xflock4')
+replaces=('xfce-utils')
+options=('!libtool')
+install=$pkgname.install
+source=(http://archive.xfce.org/src/xfce/$pkgname/4.10/$pkgname-$pkgver.tar.bz2
+xfce4-session-4.10.1-logind-support-for-suspend-hibernate.patch)
+sha256sums=('0154fabdc398798c3445374ccc52a2f5bcb2d867fc94bc54114395b24f9cfc83'
+'1fc10b6495624ddfb9e18419c835f7b929ad738c602a64ee7aab8327d3aac981')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # Use logind interfaces for suspend and hibernate
+  # https://bugzilla.xfce.org/show_bug.cgi?id=9952
+  patch -Np1 -i 
"$srcdir/xfce4-session-4.10.1-logind-support-for-suspend-hibernate.patch"
+
+  xdt-autogen
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/xfce4 \
+--localstatedir=/var \
+--disable-static \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
xfce4-session/repos/testing-i686/xfce4-session-4.10.1-logind-support-for-suspend-hibernate.patch
 (from rev 191979, 
xfce4-session/trunk/xfce4-session-4.10.1-logind-support-for-suspend-hibernate.patch)
===
--- 
testing-i686/xfce4-session-4.10.1-logind-support-for-suspend-hibernate.patch
(rev 0)
+++ 
testing-i686/xfce4-session-4.10.1-logind-support-for-suspend-hibernate.patch
2013-08-03 15:37:32 UTC (rev 191980)
@@ -0,0 +1,275 @@
+From b076b5592579b397b7d4888eb8062e646b9a4dec Mon Sep 17 00:00:00 2001
+From: Mikhail Efremov 
+Date: Wed, 10 Apr 2013 17:10:09 +0400
+Subject: [PATCH] Add systemd-logind support for suspend/hibernate.
+
+---
+ xfce4-session/Makefile.am |  8 +++
+ xfce4-session/xfsm-shutdown.c | 42 +++---
+ xfce4-session/xfsm-systemd.c  | 52 +++
+ xfce4-session/xfsm-systemd.h  | 14 
+ 4 files changed, 104 insertions(+), 12 deletions(-)
+
+diff --git a/xfce4-session/Makefile.am b/xfce4-session/Makefile.am
+index 5472b33..5e2973b 100644
+--- a/xfce4-session/Makefile.am
 b/xfce4-session/Makefile.am
+@@ -59,9 +59,7 @@

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

2013-07-07 Thread Evangelos Foutras
Date: Sunday, July 7, 2013 @ 16:26:30
  Author: foutrelis
Revision: 189759

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

Added:
  xfce4-session/repos/extra-i686/PKGBUILD
(from rev 189758, xfce4-session/trunk/PKGBUILD)
  xfce4-session/repos/extra-i686/xfce4-session.install
(from rev 189758, xfce4-session/trunk/xfce4-session.install)
  xfce4-session/repos/extra-x86_64/PKGBUILD
(from rev 189758, xfce4-session/trunk/PKGBUILD)
  xfce4-session/repos/extra-x86_64/xfce4-session.install
(from rev 189758, xfce4-session/trunk/xfce4-session.install)
Deleted:
  xfce4-session/repos/extra-i686/PKGBUILD
  xfce4-session/repos/extra-i686/xfce4-session.install
  xfce4-session/repos/extra-x86_64/PKGBUILD
  xfce4-session/repos/extra-x86_64/xfce4-session.install

+
 /PKGBUILD  |   88 +++
 /xfce4-session.install |   26 ++
 extra-i686/PKGBUILD|   44 -
 extra-i686/xfce4-session.install   |   13 -
 extra-x86_64/PKGBUILD  |   44 -
 extra-x86_64/xfce4-session.install |   13 -
 6 files changed, 114 insertions(+), 114 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-07-07 14:26:18 UTC (rev 189758)
+++ extra-i686/PKGBUILD 2013-07-07 14:26:30 UTC (rev 189759)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: tobias 
-
-pkgname=xfce4-session
-pkgver=4.10.1
-pkgrel=1
-pkgdesc="A session manager for Xfce"
-arch=('i686' 'x86_64')
-url="http://www.xfce.org/";
-license=('GPL2')
-groups=('xfce4')
-depends=('libxfce4ui' 'libwnck' 'libsm' 'xorg-iceauth' 'upower' 'xorg-xinit'
-  'hicolor-icon-theme')
-makedepends=('intltool' 'xfce4-dev-tools')
-optdepends=('gnome-keyring: for keyring support when GNOME compatibility is 
enabled'
-'xscreensaver: for locking screen with xflock4'
-'gnome-screensaver: for locking screen with xflock4'
-'xlockmore: for locking screen with xflock4')
-replaces=('xfce-utils')
-options=('!libtool')
-install=$pkgname.install
-source=(http://archive.xfce.org/src/xfce/$pkgname/4.10/$pkgname-$pkgver.tar.bz2)
-sha256sums=('0154fabdc398798c3445374ccc52a2f5bcb2d867fc94bc54114395b24f9cfc83')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/xfce4 \
---localstatedir=/var \
---disable-static \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-session/repos/extra-i686/PKGBUILD (from rev 189758, 
xfce4-session/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-07-07 14:26:30 UTC (rev 189759)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+
+pkgname=xfce4-session
+pkgver=4.10.1
+pkgrel=2
+pkgdesc="A session manager for Xfce"
+arch=('i686' 'x86_64')
+url="http://www.xfce.org/";
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4ui' 'libwnck' 'libsm' 'xorg-iceauth' 'upower' 'xorg-xinit'
+ 'xorg-xrdb' 'hicolor-icon-theme')
+makedepends=('intltool' 'xfce4-dev-tools')
+optdepends=('gnome-keyring: for keyring support when GNOME compatibility is 
enabled'
+'xscreensaver: for locking screen with xflock4'
+'gnome-screensaver: for locking screen with xflock4'
+'xlockmore: for locking screen with xflock4')
+replaces=('xfce-utils')
+options=('!libtool')
+install=$pkgname.install
+source=(http://archive.xfce.org/src/xfce/$pkgname/4.10/$pkgname-$pkgver.tar.bz2)
+sha256sums=('0154fabdc398798c3445374ccc52a2f5bcb2d867fc94bc54114395b24f9cfc83')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/xfce4 \
+--localstatedir=/var \
+--disable-static \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-i686/xfce4-session.install
===
--- extra-i686/xfce4-session.install2013-07-07 14:26:18 UTC (rev 189758)
+++ extra-i686/xfce4-session.install2013-07-07 14:26:30 UTC (rev 189759)
@@ -1,13 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-session/repos/extra-i686/xfce4-session.install (from rev 189758, 
xfce4-session/trunk/xfce4-session.install)
===
--- extra-i686/xfce4-session.install(rev 0)

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

2012-04-29 Thread Evangelos Foutras
Date: Monday, April 30, 2012 @ 01:50:06
  Author: foutrelis
Revision: 157922

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

Added:
  xfce4-session/repos/extra-i686/PKGBUILD
(from rev 157921, xfce4-session/trunk/PKGBUILD)
  xfce4-session/repos/extra-i686/xfce4-session.install
(from rev 157921, xfce4-session/trunk/xfce4-session.install)
  xfce4-session/repos/extra-x86_64/PKGBUILD
(from rev 157921, xfce4-session/trunk/PKGBUILD)
  xfce4-session/repos/extra-x86_64/xfce4-session.install
(from rev 157921, xfce4-session/trunk/xfce4-session.install)
Deleted:
  xfce4-session/repos/extra-i686/PKGBUILD
  xfce4-session/repos/extra-i686/xfce4-session.install
  xfce4-session/repos/extra-x86_64/PKGBUILD
  xfce4-session/repos/extra-x86_64/xfce4-session.install

+
 extra-i686/PKGBUILD|   89 ++-
 extra-i686/xfce4-session.install   |   26 +-
 extra-x86_64/PKGBUILD  |   89 ++-
 extra-x86_64/xfce4-session.install |   26 +-
 4 files changed, 118 insertions(+), 112 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-04-30 05:49:45 UTC (rev 157921)
+++ extra-i686/PKGBUILD 2012-04-30 05:50:06 UTC (rev 157922)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: tobias 
-
-pkgname=xfce4-session
-pkgver=4.10.0
-pkgrel=2
-pkgdesc="A session manager for Xfce"
-arch=('i686' 'x86_64')
-url="http://www.xfce.org/";
-license=('GPL2')
-groups=('xfce4')
-# keep xorg-server-utils for https://bugs.archlinux.org/task/21096
-# upower and consolekit for reboot/shutdown/hibernate/suspend
-depends=('libxfce4ui' 'libwnck' 'libsm' 'xorg-iceauth' 'upower' 'consolekit'
- 'hicolor-icon-theme')
-makedepends=('intltool')
-optdepends=('gnome-keyring: for keyring support when GNOME compatibility is 
enabled')
-replaces=('xfce-utils')
-options=('!libtool')
-install=$pkgname.install
-source=(http://archive.xfce.org/src/xfce/$pkgname/4.10/$pkgname-$pkgver.tar.bz2)
-sha256sums=('bb8aa9a74c3d382840596fb4875144d66c7f3f47c8e9ee81d31e3428a72c46ce')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/xfce4 \
---localstatedir=/var \
---disable-static \
---enable-libgnome-keyring \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-session/repos/extra-i686/PKGBUILD (from rev 157921, 
xfce4-session/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-04-30 05:50:06 UTC (rev 157922)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+
+pkgname=xfce4-session
+pkgver=4.10.0
+pkgrel=3
+pkgdesc="A session manager for Xfce"
+arch=('i686' 'x86_64')
+url="http://www.xfce.org/";
+license=('GPL2')
+groups=('xfce4')
+# keep xorg-server-utils for https://bugs.archlinux.org/task/21096
+# upower and consolekit for reboot/shutdown/hibernate/suspend
+depends=('libxfce4ui' 'libwnck' 'libsm' 'xorg-iceauth' 'upower' 'consolekit'
+ 'xorg-xinit' 'hicolor-icon-theme')
+makedepends=('intltool')
+optdepends=('gnome-keyring: for keyring support when GNOME compatibility is 
enabled'
+'xscreensaver: for locking screen with xflock4'
+'gnome-screensaver: for locking screen with xflock4'
+'xlockmore: for locking screen with xflock4')
+replaces=('xfce-utils')
+options=('!libtool')
+install=$pkgname.install
+source=(http://archive.xfce.org/src/xfce/$pkgname/4.10/$pkgname-$pkgver.tar.bz2)
+sha256sums=('bb8aa9a74c3d382840596fb4875144d66c7f3f47c8e9ee81d31e3428a72c46ce')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/xfce4 \
+--localstatedir=/var \
+--disable-static \
+--enable-libgnome-keyring \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-i686/xfce4-session.install
===
--- extra-i686/xfce4-session.install2012-04-30 05:49:45 UTC (rev 157921)
+++ extra-i686/xfce4-session.install2012-04-30 05:50:06 UTC (rev 157922)
@@ -1,13 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-session/repos/extra-i686/xfce4-session.install (from rev 157921, 
xfce4-session/trunk/xfce4-session.install)
===
--- extra-i686/xfce4-session.install   

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

2012-04-29 Thread Evangelos Foutras
Date: Sunday, April 29, 2012 @ 12:48:26
  Author: foutrelis
Revision: 157800

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

Added:
  xfce4-session/repos/testing-i686/PKGBUILD
(from rev 157799, xfce4-session/trunk/PKGBUILD)
  xfce4-session/repos/testing-i686/xfce4-session.install
(from rev 157799, xfce4-session/trunk/xfce4-session.install)
  xfce4-session/repos/testing-x86_64/PKGBUILD
(from rev 157799, xfce4-session/trunk/PKGBUILD)
  xfce4-session/repos/testing-x86_64/xfce4-session.install
(from rev 157799, xfce4-session/trunk/xfce4-session.install)
Deleted:
  xfce4-session/repos/testing-i686/PKGBUILD
  xfce4-session/repos/testing-i686/xfce4-session.install
  xfce4-session/repos/testing-x86_64/PKGBUILD
  xfce4-session/repos/testing-x86_64/xfce4-session.install

--+
 testing-i686/PKGBUILD|   86 -
 testing-i686/xfce4-session.install   |   26 -
 testing-x86_64/PKGBUILD  |   86 -
 testing-x86_64/xfce4-session.install |   26 -
 4 files changed, 112 insertions(+), 112 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2012-04-29 16:48:06 UTC (rev 157799)
+++ testing-i686/PKGBUILD   2012-04-29 16:48:26 UTC (rev 157800)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: tobias 
-
-pkgname=xfce4-session
-pkgver=4.10.0
-pkgrel=1
-pkgdesc="A session manager for Xfce"
-arch=('i686' 'x86_64')
-url="http://www.xfce.org/";
-license=('GPL2')
-groups=('xfce4')
-# keep xorg-server-utils for https://bugs.archlinux.org/task/21096
-# upower and consolekit for reboot/shutdown/hibernate/suspend
-depends=('libxfce4ui' 'libgnome-keyring' 'libwnck' 'libsm' 'xorg-iceauth'
- 'upower' 'consolekit' 'hicolor-icon-theme')
-makedepends=('intltool')
-optdepends=('fortune-mod: for xfce4-tips')
-replaces=('xfce-utils')
-options=('!libtool')
-install=$pkgname.install
-source=(http://archive.xfce.org/src/xfce/$pkgname/4.10/$pkgname-$pkgver.tar.bz2)
-sha256sums=('bb8aa9a74c3d382840596fb4875144d66c7f3f47c8e9ee81d31e3428a72c46ce')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/xfce4 \
---localstatedir=/var \
---disable-static \
---enable-libgnome-keyring \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-session/repos/testing-i686/PKGBUILD (from rev 157799, 
xfce4-session/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-04-29 16:48:26 UTC (rev 157800)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+
+pkgname=xfce4-session
+pkgver=4.10.0
+pkgrel=2
+pkgdesc="A session manager for Xfce"
+arch=('i686' 'x86_64')
+url="http://www.xfce.org/";
+license=('GPL2')
+groups=('xfce4')
+# keep xorg-server-utils for https://bugs.archlinux.org/task/21096
+# upower and consolekit for reboot/shutdown/hibernate/suspend
+depends=('libxfce4ui' 'libwnck' 'libsm' 'xorg-iceauth' 'upower' 'consolekit'
+ 'hicolor-icon-theme')
+makedepends=('intltool')
+optdepends=('gnome-keyring: for keyring support when GNOME compatibility is 
enabled')
+replaces=('xfce-utils')
+options=('!libtool')
+install=$pkgname.install
+source=(http://archive.xfce.org/src/xfce/$pkgname/4.10/$pkgname-$pkgver.tar.bz2)
+sha256sums=('bb8aa9a74c3d382840596fb4875144d66c7f3f47c8e9ee81d31e3428a72c46ce')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/xfce4 \
+--localstatedir=/var \
+--disable-static \
+--enable-libgnome-keyring \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: testing-i686/xfce4-session.install
===
--- testing-i686/xfce4-session.install  2012-04-29 16:48:06 UTC (rev 157799)
+++ testing-i686/xfce4-session.install  2012-04-29 16:48:26 UTC (rev 157800)
@@ -1,13 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-session/repos/testing-i686/xfce4-session.install (from rev 
157799, xfce4-session/trunk/xfce4-session.install)
===
--- testing-i686/xfce4-session.install  (rev 0)
+++ testing-i686/xfce4-session.install  2012-04-29 16:48:26 UTC (rev 157800)
@@ -0,0 +1,13 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/

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

2012-04-28 Thread Evangelos Foutras
Date: Saturday, April 28, 2012 @ 19:25:39
  Author: foutrelis
Revision: 157546

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

Added:
  xfce4-session/repos/staging-i686/PKGBUILD
(from rev 157545, xfce4-session/trunk/PKGBUILD)
  xfce4-session/repos/staging-i686/xfce4-session.install
(from rev 157545, xfce4-session/trunk/xfce4-session.install)
  xfce4-session/repos/staging-x86_64/PKGBUILD
(from rev 157545, xfce4-session/trunk/PKGBUILD)
  xfce4-session/repos/staging-x86_64/xfce4-session.install
(from rev 157545, xfce4-session/trunk/xfce4-session.install)
Deleted:
  xfce4-session/repos/staging-i686/PKGBUILD
  xfce4-session/repos/staging-i686/xfce4-session.install
  xfce4-session/repos/staging-x86_64/PKGBUILD
  xfce4-session/repos/staging-x86_64/xfce4-session.install

--+
 staging-i686/PKGBUILD|   93 +++--
 staging-i686/xfce4-session.install   |   26 -
 staging-x86_64/PKGBUILD  |   93 +++--
 staging-x86_64/xfce4-session.install |   26 -
 4 files changed, 112 insertions(+), 126 deletions(-)

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2012-04-28 23:24:36 UTC (rev 157545)
+++ staging-i686/PKGBUILD   2012-04-28 23:25:39 UTC (rev 157546)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: tobias 
-
-pkgname=xfce4-session
-pkgver=4.10.0
-pkgrel=1
-pkgdesc="A session manager for Xfce"
-arch=('i686' 'x86_64')
-url="http://www.xfce.org/";
-license=('GPL2')
-groups=('xfce4')
-# keep xorg-server-utils for https://bugs.archlinux.org/task/21096
-# upower and consolekit for reboot/shutdown/hibernate/suspend
-depends=('libxfce4ui' 'libgnome-keyring' 'libwnck' 'libsm' 'xorg-iceauth'
- 'upower' 'consolekit' 'hicolor-icon-theme')
-makedepends=('intltool')
-optdepends=('fortune-mod: for xfce4-tips')
-replaces=('xfce-utils')
-options=('!libtool')
-install=$pkgname.install
-source=(http://archive.xfce.org/src/xfce/$pkgname/4.10/$pkgname-$pkgver.tar.bz2)
-sha256sums=('bb8aa9a74c3d382840596fb4875144d66c7f3f47c8e9ee81d31e3428a72c46ce')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/xfce4 \
---localstatedir=/var \
---disable-static \
---disable-hal \
---enable-gnome \
---enable-libgnome-keyring \
---enable-session-screenshots \
---enable-upower \
---enable-consolekit \
---enable-polkit \
---enable-panel-plugin \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-session/repos/staging-i686/PKGBUILD (from rev 157545, 
xfce4-session/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-04-28 23:25:39 UTC (rev 157546)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+
+pkgname=xfce4-session
+pkgver=4.10.0
+pkgrel=1
+pkgdesc="A session manager for Xfce"
+arch=('i686' 'x86_64')
+url="http://www.xfce.org/";
+license=('GPL2')
+groups=('xfce4')
+# keep xorg-server-utils for https://bugs.archlinux.org/task/21096
+# upower and consolekit for reboot/shutdown/hibernate/suspend
+depends=('libxfce4ui' 'libgnome-keyring' 'libwnck' 'libsm' 'xorg-iceauth'
+ 'upower' 'consolekit' 'hicolor-icon-theme')
+makedepends=('intltool')
+optdepends=('fortune-mod: for xfce4-tips')
+replaces=('xfce-utils')
+options=('!libtool')
+install=$pkgname.install
+source=(http://archive.xfce.org/src/xfce/$pkgname/4.10/$pkgname-$pkgver.tar.bz2)
+sha256sums=('bb8aa9a74c3d382840596fb4875144d66c7f3f47c8e9ee81d31e3428a72c46ce')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/xfce4 \
+--localstatedir=/var \
+--disable-static \
+--enable-libgnome-keyring \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: staging-i686/xfce4-session.install
===
--- staging-i686/xfce4-session.install  2012-04-28 23:24:36 UTC (rev 157545)
+++ staging-i686/xfce4-session.install  2012-04-28 23:25:39 UTC (rev 157546)
@@ -1,13 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-session/repos/staging-i686/xfce4-session.install (from rev 
157545, xfce4-session/trunk/xfce4-session.install)
===
--- staging-i686/xfce4-session.install  

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

2012-02-13 Thread Evangelos Foutras
Date: Monday, February 13, 2012 @ 03:12:40
  Author: foutrelis
Revision: 150131

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

Added:
  xfce4-session/repos/extra-i686/PKGBUILD
(from rev 150130, xfce4-session/trunk/PKGBUILD)
  xfce4-session/repos/extra-i686/xfce4-session.install
(from rev 150130, xfce4-session/trunk/xfce4-session.install)
  xfce4-session/repos/extra-x86_64/PKGBUILD
(from rev 150130, xfce4-session/trunk/PKGBUILD)
  xfce4-session/repos/extra-x86_64/xfce4-session.install
(from rev 150130, xfce4-session/trunk/xfce4-session.install)
Deleted:
  xfce4-session/repos/extra-i686/PKGBUILD
  xfce4-session/repos/extra-i686/xfce4-session.install
  xfce4-session/repos/extra-x86_64/PKGBUILD
  xfce4-session/repos/extra-x86_64/xfce4-session.install

+
 extra-i686/PKGBUILD|  100 +--
 extra-i686/xfce4-session.install   |   26 -
 extra-x86_64/PKGBUILD  |  100 +--
 extra-x86_64/xfce4-session.install |   26 -
 4 files changed, 126 insertions(+), 126 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-02-13 08:12:10 UTC (rev 150130)
+++ extra-i686/PKGBUILD 2012-02-13 08:12:40 UTC (rev 150131)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: tobias 
-
-pkgname=xfce4-session
-pkgver=4.8.2
-pkgrel=2
-pkgdesc="A session manager for Xfce"
-arch=('i686' 'x86_64')
-url="http://www.xfce.org/";
-license=('GPL2')
-groups=('xfce4')
-# keep xorg-server-utils for https://bugs.archlinux.org/task/21096
-# upower and consolekit for reboot/shutdown/hibernate/suspend
-depends=('xfce4-panel' 'gconf' 'libgnome-keyring' 'libwnck' 'libsm'
- 'xorg-iceauth' 'upower' 'consolekit' 'hicolor-icon-theme')
-makedepends=('intltool')
-optdepends=('fortune-mod: for xfce4-tips')
-replaces=('xfce4-toys')
-options=('!libtool')
-install=$pkgname.install
-source=(http://archive.xfce.org/src/xfce/$pkgname/4.8/$pkgname-$pkgver.tar.bz2)
-sha256sums=('31bca2a559e05a8a859f150394a901517e5842414ef171a85c5da234e344c0d0')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/xfce4 \
---localstatedir=/var \
---disable-static \
---disable-hal \
---enable-gnome \
---enable-libgnome-keyring \
---enable-session-screenshots \
---enable-upower \
---enable-consolekit \
---enable-polkit \
---enable-panel-plugin \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-session/repos/extra-i686/PKGBUILD (from rev 150130, 
xfce4-session/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-02-13 08:12:40 UTC (rev 150131)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+
+pkgname=xfce4-session
+pkgver=4.8.3
+pkgrel=1
+pkgdesc="A session manager for Xfce"
+arch=('i686' 'x86_64')
+url="http://www.xfce.org/";
+license=('GPL2')
+groups=('xfce4')
+# keep xorg-server-utils for https://bugs.archlinux.org/task/21096
+# upower and consolekit for reboot/shutdown/hibernate/suspend
+depends=('xfce4-panel' 'gconf' 'libgnome-keyring' 'libwnck' 'libsm'
+ 'xorg-iceauth' 'upower' 'consolekit' 'hicolor-icon-theme')
+makedepends=('intltool')
+optdepends=('fortune-mod: for xfce4-tips')
+replaces=('xfce4-toys')
+options=('!libtool')
+install=$pkgname.install
+source=(http://archive.xfce.org/src/xfce/$pkgname/4.8/$pkgname-$pkgver.tar.bz2)
+sha256sums=('f0801b8c0ffa7e5d41b29b8df281ac127adf467bf50e8ded8aebe5a02bd99338')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/xfce4 \
+--localstatedir=/var \
+--disable-static \
+--disable-hal \
+--enable-gnome \
+--enable-libgnome-keyring \
+--enable-session-screenshots \
+--enable-upower \
+--enable-consolekit \
+--enable-polkit \
+--enable-panel-plugin \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-i686/xfce4-session.install
===
--- extra-i686/xfce4-session.install2012-02-13 08:12:10 UTC (rev 150130)
+++ extra-i686/xfce4-session.install2012-02-13 08:12:40 UTC (rev 150131)
@@ -1,13 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-session/repos/extra-i686/xfce4-session.install (from rev 150130, 
xfce4-session/trunk/xfce4-session.install)
==