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

Jan de Groot jgc at archlinux.org
Fri Sep 26 10:55:46 UTC 2014


    Date: Friday, September 26, 2014 @ 12:55:45
  Author: jgc
Revision: 223101

db-move: moved gnome-session from [gnome-unstable] to [testing] (i686, x86_64)

Added:
  gnome-session/repos/testing-i686/
  gnome-session/repos/testing-i686/PKGBUILD
    (from rev 223030, gnome-session/repos/gnome-unstable-i686/PKGBUILD)
  gnome-session/repos/testing-i686/gnome-session.install
    (from rev 223030, gnome-session/repos/gnome-unstable-i686/gnome-session.install)
  gnome-session/repos/testing-i686/timeout.patch
    (from rev 223030, gnome-session/repos/gnome-unstable-i686/timeout.patch)
  gnome-session/repos/testing-x86_64/
  gnome-session/repos/testing-x86_64/PKGBUILD
    (from rev 223030, gnome-session/repos/gnome-unstable-x86_64/PKGBUILD)
  gnome-session/repos/testing-x86_64/gnome-session.install
    (from rev 223030, gnome-session/repos/gnome-unstable-x86_64/gnome-session.install)
  gnome-session/repos/testing-x86_64/timeout.patch
    (from rev 223030, gnome-session/repos/gnome-unstable-x86_64/timeout.patch)
Deleted:
  gnome-session/repos/gnome-unstable-i686/
  gnome-session/repos/gnome-unstable-x86_64/

--------------------------------------+
 testing-i686/PKGBUILD                |   39 +++++++++++++++++++++++++++++++++
 testing-i686/gnome-session.install   |   12 ++++++++++
 testing-i686/timeout.patch           |   24 ++++++++++++++++++++
 testing-x86_64/PKGBUILD              |   39 +++++++++++++++++++++++++++++++++
 testing-x86_64/gnome-session.install |   12 ++++++++++
 testing-x86_64/timeout.patch         |   24 ++++++++++++++++++++
 6 files changed, 150 insertions(+)

Copied: gnome-session/repos/testing-i686/PKGBUILD (from rev 223030, gnome-session/repos/gnome-unstable-i686/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2014-09-26 10:55:45 UTC (rev 223101)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
+
+pkgname=gnome-session
+pkgver=3.14.0
+pkgrel=1
+pkgdesc="The GNOME Session Handler"
+arch=(i686 x86_64)
+license=(GPL LGPL)
+depends=(systemd dconf gsettings-desktop-schemas gtk3 gnome-desktop
+         hicolor-icon-theme json-glib libgl libsm libxtst systemd dbus-glib)
+makedepends=(intltool mesa gtk-doc xtrans)
+options=('!emptydirs')
+install=gnome-session.install
+url="http://www.gnome.org"
+groups=(gnome)
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+        timeout.patch)
+sha256sums=('b1e6e805478b863eda58e61ecd0e13961f63dd76e2d49692affc5a1d00f2c184'
+            '9eaf31857b41db417475c3b14adc11b10c8226ed76978cdf96dd648fa6e505fc')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Increase timeout, for slow machines
+  patch -Np1 -i ../timeout.patch
+}
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+      --localstatedir=/var --libexecdir=/usr/lib/gnome-session \
+      --disable-schemas-compile --enable-systemd --disable-gconf
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: gnome-session/repos/testing-i686/gnome-session.install (from rev 223030, gnome-session/repos/gnome-unstable-i686/gnome-session.install)
===================================================================
--- testing-i686/gnome-session.install	                        (rev 0)
+++ testing-i686/gnome-session.install	2014-09-26 10:55:45 UTC (rev 223101)
@@ -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: gnome-session/repos/testing-i686/timeout.patch (from rev 223030, gnome-session/repos/gnome-unstable-i686/timeout.patch)
===================================================================
--- testing-i686/timeout.patch	                        (rev 0)
+++ testing-i686/timeout.patch	2014-09-26 10:55:45 UTC (rev 223101)
@@ -0,0 +1,24 @@
+diff -u -r gnome-session-3.4.2/gnome-session/gsm-session-fill.c gnome-session-3.4.2-timeout/gnome-session/gsm-session-fill.c
+--- gnome-session-3.4.2/gnome-session/gsm-session-fill.c	2012-02-02 15:33:01.000000000 +0100
++++ gnome-session-3.4.2-timeout/gnome-session/gsm-session-fill.c	2012-06-10 02:39:46.184348462 +0200
+@@ -36,7 +36,7 @@
+ #define GSM_KEYFILE_DEFAULT_PROVIDER_PREFIX "DefaultProvider"
+ 
+ /* See https://bugzilla.gnome.org/show_bug.cgi?id=641992 for discussion */
+-#define GSM_RUNNABLE_HELPER_TIMEOUT 3000 /* ms */
++#define GSM_RUNNABLE_HELPER_TIMEOUT 10000 /* ms */
+ 
+ typedef void (*GsmFillHandleProvider) (const char *provides,
+                                        const char *default_provider,
+diff -u -r gnome-session-3.4.2/tools/gnome-session-check-accelerated.c gnome-session-3.4.2-timeout/tools/gnome-session-check-accelerated.c
+--- gnome-session-3.4.2/tools/gnome-session-check-accelerated.c	2011-03-22 21:31:43.000000000 +0100
++++ gnome-session-3.4.2-timeout/tools/gnome-session-check-accelerated.c	2012-06-10 02:42:08.013218006 +0200
+@@ -30,7 +30,7 @@
+ #include <X11/Xatom.h>
+ 
+ /* Wait up to this long for a running check to finish */
+-#define PROPERTY_CHANGE_TIMEOUT 5000
++#define PROPERTY_CHANGE_TIMEOUT 12000
+ 
+ /* Values used for the _GNOME_SESSION_ACCELERATED root window property */
+ #define NO_ACCEL            0

Copied: gnome-session/repos/testing-x86_64/PKGBUILD (from rev 223030, gnome-session/repos/gnome-unstable-x86_64/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2014-09-26 10:55:45 UTC (rev 223101)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
+
+pkgname=gnome-session
+pkgver=3.14.0
+pkgrel=1
+pkgdesc="The GNOME Session Handler"
+arch=(i686 x86_64)
+license=(GPL LGPL)
+depends=(systemd dconf gsettings-desktop-schemas gtk3 gnome-desktop
+         hicolor-icon-theme json-glib libgl libsm libxtst systemd dbus-glib)
+makedepends=(intltool mesa gtk-doc xtrans)
+options=('!emptydirs')
+install=gnome-session.install
+url="http://www.gnome.org"
+groups=(gnome)
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+        timeout.patch)
+sha256sums=('b1e6e805478b863eda58e61ecd0e13961f63dd76e2d49692affc5a1d00f2c184'
+            '9eaf31857b41db417475c3b14adc11b10c8226ed76978cdf96dd648fa6e505fc')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Increase timeout, for slow machines
+  patch -Np1 -i ../timeout.patch
+}
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+      --localstatedir=/var --libexecdir=/usr/lib/gnome-session \
+      --disable-schemas-compile --enable-systemd --disable-gconf
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: gnome-session/repos/testing-x86_64/gnome-session.install (from rev 223030, gnome-session/repos/gnome-unstable-x86_64/gnome-session.install)
===================================================================
--- testing-x86_64/gnome-session.install	                        (rev 0)
+++ testing-x86_64/gnome-session.install	2014-09-26 10:55:45 UTC (rev 223101)
@@ -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: gnome-session/repos/testing-x86_64/timeout.patch (from rev 223030, gnome-session/repos/gnome-unstable-x86_64/timeout.patch)
===================================================================
--- testing-x86_64/timeout.patch	                        (rev 0)
+++ testing-x86_64/timeout.patch	2014-09-26 10:55:45 UTC (rev 223101)
@@ -0,0 +1,24 @@
+diff -u -r gnome-session-3.4.2/gnome-session/gsm-session-fill.c gnome-session-3.4.2-timeout/gnome-session/gsm-session-fill.c
+--- gnome-session-3.4.2/gnome-session/gsm-session-fill.c	2012-02-02 15:33:01.000000000 +0100
++++ gnome-session-3.4.2-timeout/gnome-session/gsm-session-fill.c	2012-06-10 02:39:46.184348462 +0200
+@@ -36,7 +36,7 @@
+ #define GSM_KEYFILE_DEFAULT_PROVIDER_PREFIX "DefaultProvider"
+ 
+ /* See https://bugzilla.gnome.org/show_bug.cgi?id=641992 for discussion */
+-#define GSM_RUNNABLE_HELPER_TIMEOUT 3000 /* ms */
++#define GSM_RUNNABLE_HELPER_TIMEOUT 10000 /* ms */
+ 
+ typedef void (*GsmFillHandleProvider) (const char *provides,
+                                        const char *default_provider,
+diff -u -r gnome-session-3.4.2/tools/gnome-session-check-accelerated.c gnome-session-3.4.2-timeout/tools/gnome-session-check-accelerated.c
+--- gnome-session-3.4.2/tools/gnome-session-check-accelerated.c	2011-03-22 21:31:43.000000000 +0100
++++ gnome-session-3.4.2-timeout/tools/gnome-session-check-accelerated.c	2012-06-10 02:42:08.013218006 +0200
+@@ -30,7 +30,7 @@
+ #include <X11/Xatom.h>
+ 
+ /* Wait up to this long for a running check to finish */
+-#define PROPERTY_CHANGE_TIMEOUT 5000
++#define PROPERTY_CHANGE_TIMEOUT 12000
+ 
+ /* Values used for the _GNOME_SESSION_ACCELERATED root window property */
+ #define NO_ACCEL            0




More information about the arch-commits mailing list