[arch-commits] Commit in xorg-server/trunk (2 files)

2010-04-29 Thread Thomas Bächler
Date: Thursday, April 29, 2010 @ 04:41:53
  Author: thomas
Revision: 78871

Apply upstream git commit: Revert DRI2: Track DRI2 drawables as resources, not 
privates

Added:
  
xorg-server/trunk/revert-dri2-track-dri2-drawables-as-resources-not-privates.patch
Modified:
  xorg-server/trunk/PKGBUILD

--+
 PKGBUILD |   11 
 revert-dri2-track-dri2-drawables-as-resources-not-privates.patch |  309 
++
 2 files changed, 317 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-04-29 05:00:21 UTC (rev 78870)
+++ PKGBUILD2010-04-29 08:41:53 UTC (rev 78871)
@@ -22,20 +22,25 @@
 xvfb-run
 xvfb-run.1
 10-evdev.conf
-10-quirks.conf)
+10-quirks.conf
+revert-dri2-track-dri2-drawables-as-resources-not-privates.patch)
 md5sums=('5326bc5e84f2e3455321ab2baed26362'
  '1a336eb22e27cbf443ec5a2ecddfa93c'
  '52fd3effd80d7bc6c1660d4ecf23d31c'
  '376c70308715cd2643f7bff936d9934b'
  'e930e153d69968a795fe4e2ef5d9a5dc'
- 'd4f7dfc6be4ef4e2c6dd7632a9d88abe')
+ 'd4f7dfc6be4ef4e2c6dd7632a9d88abe'
+ 'f5b98d5ca8f098e0c75a5d7a0e7ef2a6')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
 
   # Get rid of the ugly pattern
-  patch -Np3 -i ${srcdir}/xorg-redhat-die-ugly-pattern-die-die-die.patch || 
return  1
+  patch -Np3 -i ${srcdir}/xorg-redhat-die-ugly-pattern-die-die-die.patch || 
return 1
 
+  # Fix a bug in 1.8.0.901 that has been fixed in git
+  patch -p1 -i 
${srcdir}/revert-dri2-track-dri2-drawables-as-resources-not-privates.patch || 
return 1
+
   sed -i -e 's/\$(prefix)\/etc/\/etc/g' config/Makefile.* || return 1
 
   ./configure --prefix=/usr \

Added: revert-dri2-track-dri2-drawables-as-resources-not-privates.patch
===
--- revert-dri2-track-dri2-drawables-as-resources-not-privates.patch
(rev 0)
+++ revert-dri2-track-dri2-drawables-as-resources-not-privates.patch
2010-04-29 08:41:53 UTC (rev 78871)
@@ -0,0 +1,309 @@
+From c394b17266301d363a9e234f58f8015f74e01307 Mon Sep 17 00:00:00 2001
+From: Peter Hutterer peter.hutte...@who-t.net
+Date: Tue, 27 Apr 2010 07:53:22 +
+Subject: Revert DRI2: Track DRI2 drawables as resources, not privates
+
+This change breaks GLX compositing managers.
+See Bug 27767 https://bugs.freedesktop.org/show_bug.cgi?id=27767
+
+This reverts commit 0c499f2ee4ae2b7dc424009abb336fc81a8a2853.
+
+Signed-off-by: Peter Hutterer peter.hutte...@who-t.net
+---
+diff --git a/glx/glxdri2.c b/glx/glxdri2.c
+index bde519a..edd29b0 100644
+--- a/glx/glxdri2.c
 b/glx/glxdri2.c
+@@ -105,6 +105,11 @@ __glXDRIdrawableDestroy(__GLXdrawable *drawable)
+ 
+ (*core-destroyDrawable)(private-driDrawable);
+ 
++/* If the X window was destroyed, the dri DestroyWindow hook will
++ * aready have taken care of this, so only call if pDraw isn't NULL. */
++if (drawable-pDraw != NULL)
++  DRI2DestroyDrawable(drawable-pDraw);
++
+ __glXDrawableRelease(drawable);
+ 
+ xfree(private);
+diff --git a/hw/xfree86/dri2/dri2.c b/hw/xfree86/dri2/dri2.c
+index 63bef28..48618e1 100644
+--- a/hw/xfree86/dri2/dri2.c
 b/hw/xfree86/dri2/dri2.c
+@@ -45,14 +45,15 @@
+ 
+ #include xf86.h
+ 
+-static int   dri2ScreenPrivateKeyIndex;
++static int dri2ScreenPrivateKeyIndex;
+ static DevPrivateKey dri2ScreenPrivateKey = dri2ScreenPrivateKeyIndex;
+-static RESTYPE   dri2DrawableRes;
+-
+-typedef struct _DRI2Screen *DRI2ScreenPtr;
++static int dri2WindowPrivateKeyIndex;
++static DevPrivateKey dri2WindowPrivateKey = dri2WindowPrivateKeyIndex;
++static int dri2PixmapPrivateKeyIndex;
++static DevPrivateKey dri2PixmapPrivateKey = dri2PixmapPrivateKeyIndex;
+ 
+ typedef struct _DRI2Drawable {
+-DRI2ScreenPtrdri2_screen;
++unsigned int   refCount;
+ intwidth;
+ intheight;
+ DRI2BufferPtr *buffers;
+@@ -66,8 +67,9 @@ typedef struct _DRI2Drawable {
+ intswap_limit; /* for N-buffering */
+ } DRI2DrawableRec, *DRI2DrawablePtr;
+ 
++typedef struct _DRI2Screen *DRI2ScreenPtr;
++
+ typedef struct _DRI2Screen {
+-ScreenPtr  screen;
+ unsigned int   numDrivers;
+ const char**driverNames;
+ const char*deviceName;
+@@ -93,33 +95,43 @@ DRI2GetScreen(ScreenPtr pScreen)
+ static DRI2DrawablePtr
+ DRI2GetDrawable(DrawablePtr pDraw)
+ {
+-DRI2DrawablePtr pPriv;
+-int rc;
+- 
+-rc = dixLookupResourceByType((pointer *) pPriv, pDraw-id,
+-   dri2DrawableRes, NULL, DixReadAccess);
+-if (rc != Success)
++WindowPtr   pWin;
++PixmapPtr   pPixmap;
++
++if 

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

2010-04-29 Thread Allan McRae
Date: Thursday, April 29, 2010 @ 06:18:00
  Author: allan
Revision: 78872

upgpkg: coreutils 8.5-1
upstream update, update patches from sources

Modified:
  coreutils/trunk/PKGBUILD
  coreutils/trunk/coreutils-6.10-configuration.patch
  coreutils/trunk/coreutils-i18n.patch
  coreutils/trunk/coreutils-pam.patch

+
 PKGBUILD   |   14 +-
 coreutils-6.10-configuration.patch |   20 ---
 coreutils-i18n.patch   |  208 +--
 coreutils-pam.patch|   47 ---
 4 files changed, 140 insertions(+), 149 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-04-29 08:41:53 UTC (rev 78871)
+++ PKGBUILD2010-04-29 10:18:00 UTC (rev 78872)
@@ -3,8 +3,8 @@
 # Contributor: judd jvi...@zeroflux.org
 
 pkgname=coreutils
-pkgver=8.4
-pkgrel=3
+pkgver=8.5
+pkgrel=1
 pkgdesc=The basic file, shell and text manipulation utilities of the GNU 
operating system
 arch=('i686' 'x86_64')
 license=('GPL3')
@@ -17,17 +17,17 @@
 backup=('etc/pam.d/su')
 install=${pkgname}.install
 options=('!emptydirs')
-source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz
+source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz
coreutils-i18n.patch
coreutils-uname.patch
coreutils-pam.patch
coreutils-6.10-configuration.patch
su)
-md5sums=('56f549854d723d9dcebb77919019df55'
- 'f88e6b4ce09e6d453f595d46d2a153b2'
+md5sums=('55170ed640e300f5b81640c6f4641513'
+ 'f92a989319c4c741d7c28d8fa6e01616'
  'c4fcca138b6abf6d443d48a6f0cd8833'
- '7efee4d5b3653711f9e229493316841c'
- 'dd4f472de8380104af3ac0ef920fae8b'
+ 'aad79a2aa6d566c375d7bdd1b0767278'
+ '12ef00fbc3a8c9594fea6aa55daff2aa'
  'fa85e5cce5d723275b14365ba71a8aad')
 
 build() {

Modified: coreutils-6.10-configuration.patch
===
--- coreutils-6.10-configuration.patch  2010-04-29 08:41:53 UTC (rev 78871)
+++ coreutils-6.10-configuration.patch  2010-04-29 10:18:00 UTC (rev 78872)
@@ -79,28 +79,14 @@
tail-2/inotify-hash-abuse2  \
tail-2/F-vs-rename  \
tail-2/inotify-rotate   \
-diff -urNp coreutils-8.4-orig/tests/test-lib.sh coreutils-8.4/tests/test-lib.sh
 coreutils-8.4-orig/tests/test-lib.sh   2010-01-03 18:06:20.0 
+0100
-+++ coreutils-8.4/tests/test-lib.sh2010-01-14 10:28:17.0 +0100
-@@ -218,8 +218,8 @@ skip_if_()
- 
- require_selinux_()
- {
--  case `ls -Zd .` in
--'? .'|'unlabeled .')
-+  case `ls --scontext -d . | cut -f1 -d ` in
-+'?'|'unlabeled')
-   skip_test_ this system (or maybe just \
- the current file system) lacks SELinux support
- ;;
 diff -urNp coreutils-8.4-orig/tests/touch/no-dereference 
coreutils-8.4/tests/touch/no-dereference
 --- coreutils-8.4-orig/tests/touch/no-dereference  2010-01-12 
15:36:17.0 +0100
 +++ coreutils-8.4/tests/touch/no-dereference   2010-01-14 10:28:17.0 
+0100
 @@ -46,6 +46,8 @@ test -f nowhere  fail=1
- grep '^#define HAVE_UTIMENSAT' $CONFIG_HEADER  /dev/null ||
- grep '^#define HAVE_LUTIMES' $CONFIG_HEADER  /dev/null ||
+ grep '^#define HAVE_UTIMENSAT 1' $CONFIG_HEADER  /dev/null ||
+ grep '^#define HAVE_LUTIMES 1' $CONFIG_HEADER  /dev/null ||
skip_test_ 'this system lacks the utimensat function'
-+grep '^#define HAVE_WORKINGKOJI' $CONFIG_HEADER  /dev/null ||
++grep '^#define HAVE_WORKINGKOJI 1' $CONFIG_HEADER  /dev/null ||
 +  skip_test_ 'rest of the test disabled due to koji lack of utimensat 
function'
  
  # Changing time of dangling symlink is okay.

Modified: coreutils-i18n.patch
===
--- coreutils-i18n.patch2010-04-29 08:41:53 UTC (rev 78871)
+++ coreutils-i18n.patch2010-04-29 10:18:00 UTC (rev 78872)
@@ -1,6 +1,6 @@
-diff -urNp coreutils-8.0-orig/lib/linebuffer.h coreutils-8.0/lib/linebuffer.h
 coreutils-8.0-orig/lib/linebuffer.h2009-10-06 10:59:48.0 
+0200
-+++ coreutils-8.0/lib/linebuffer.h 2009-10-07 10:07:16.0 +0200
+diff -urNp coreutils-8.5-orig/lib/linebuffer.h coreutils-8.5/lib/linebuffer.h
+--- coreutils-8.5-orig/lib/linebuffer.h2010-04-23 15:44:00.0 
+0200
 coreutils-8.5/lib/linebuffer.h 2010-04-26 14:24:33.0 +0200
 @@ -21,6 +21,11 @@
  
  # include stdio.h
@@ -23,9 +23,9 @@
  };
  
  /* Initialize linebuffer LINEBUFFER for use. */
-diff -urNp coreutils-8.0-orig/src/cut.c coreutils-8.0/src/cut.c
 coreutils-8.0-orig/src/cut.c   2009-09-23 10:25:44.0 +0200
-+++ coreutils-8.0/src/cut.c2009-10-07 10:07:16.0 +0200
+diff -urNp coreutils-8.5-orig/src/cut.c coreutils-8.5/src/cut.c
+--- coreutils-8.5-orig/src/cut.c   2010-04-20 21:52:04.0 +0200
 

[arch-commits] Commit in coreutils/repos (testing-i686)

2010-04-29 Thread Allan McRae
Date: Thursday, April 29, 2010 @ 06:25:33
  Author: allan
Revision: 78873

archrelease: copy trunk to testing-i686

Added:
  coreutils/repos/testing-i686/



[arch-commits] Commit in coreutils/repos (testing-x86_64)

2010-04-29 Thread Allan McRae
Date: Thursday, April 29, 2010 @ 06:26:34
  Author: allan
Revision: 78874

archrelease: copy trunk to testing-x86_64

Added:
  coreutils/repos/testing-x86_64/



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

2010-04-29 Thread Jan de Groot
Date: Thursday, April 29, 2010 @ 06:41:01
  Author: jgc
Revision: 78875

upgpkg: gnome-themes 2.30.1-1
Update to 2.30.1

Modified:
  gnome-themes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-29 10:26:34 UTC (rev 78874)
+++ PKGBUILD2010-04-29 10:41:01 UTC (rev 78875)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gnome-themes
-pkgver=2.30.0
+pkgver=2.30.1
 pkgrel=1
 pkgdesc=Default themes for GNOME2
 arch=(any)
@@ -14,7 +14,7 @@
 replaces=('gtk-thinice-engine' 'clearlooks-gtk2')
 options=(!makeflags)
 
source=(http://ftp.gnome.org/pub/gnome/sources/gnome-themes/2.30/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('d06e33658a2341154e99ea15051e7b7473c1110cc019f0e4e826301b2a007a98')
+sha256sums=('20c4f9e3c8d16e45e3f15d4fcacf45cb59a8cd6124798828387ba6c04ec75c3e')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in gnome-themes/repos (extra-any)

2010-04-29 Thread Jan de Groot
Date: Thursday, April 29, 2010 @ 06:41:11
  Author: jgc
Revision: 78876

archrelease: remove extra-any

Deleted:
  gnome-themes/repos/extra-any/



[arch-commits] Commit in gnome-themes/repos (extra-any)

2010-04-29 Thread Jan de Groot
Date: Thursday, April 29, 2010 @ 06:41:17
  Author: jgc
Revision: 78877

archrelease: copy trunk to extra-any

Added:
  gnome-themes/repos/extra-any/



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

2010-04-29 Thread Jan de Groot
Date: Thursday, April 29, 2010 @ 06:44:29
  Author: jgc
Revision: 78878

upgpkg: gucharmap 2.30.1-1
Update to 2.30.1

Modified:
  gucharmap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-29 10:41:17 UTC (rev 78877)
+++ PKGBUILD2010-04-29 10:44:29 UTC (rev 78878)
@@ -2,19 +2,19 @@
 # Maintainer: Jan De Groot j...@archlinux.org
 
 pkgname=gucharmap
-pkgver=2.30.0
+pkgver=2.30.1
 pkgrel=1
 pkgdesc=Gnome Unicode Charmap
 arch=(i686 x86_64)
 license=('GPL')
 url=http://www.gnome.org;
-depends=('gconf=2.28.0' 'hicolor-icon-theme')
-makedepends=('gnome-doc-utils=0.19.5' 'pkgconfig' 'intltool')
+depends=('gconf=2.28.1' 'hicolor-icon-theme')
+makedepends=('gnome-doc-utils=0.20.1' 'pkgconfig' 'intltool')
 groups=('gnome-extra')
 options=('!libtool' '!emptydirs')
 install=gucharmap.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/gucharmap/2.30/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('4d66007bbf715df7773f212ea6142bdb52f614ff1963c1745fe19f6f9402b577')
+sha256sums=('016c5158c67eeb43e2f8a3bdfa32341beb039f7ef917f912f0ae56ee5bfe60f9')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in gucharmap/repos (extra-i686)

2010-04-29 Thread Jan de Groot
Date: Thursday, April 29, 2010 @ 06:44:48
  Author: jgc
Revision: 78880

archrelease: copy trunk to extra-i686

Added:
  gucharmap/repos/extra-i686/



[arch-commits] Commit in gucharmap/repos (extra-x86_64)

2010-04-29 Thread Jan de Groot
Date: Thursday, April 29, 2010 @ 06:44:59
  Author: jgc
Revision: 78881

archrelease: remove extra-x86_64

Deleted:
  gucharmap/repos/extra-x86_64/



[arch-commits] Commit in gucharmap/repos (extra-x86_64)

2010-04-29 Thread Jan de Groot
Date: Thursday, April 29, 2010 @ 06:45:09
  Author: jgc
Revision: 78882

archrelease: copy trunk to extra-x86_64

Added:
  gucharmap/repos/extra-x86_64/



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

2010-04-29 Thread Jan de Groot
Date: Thursday, April 29, 2010 @ 06:47:29
  Author: jgc
Revision: 78883

upgpkg: gnome-terminal 2.30.1-1
Update to 2.30.1

Modified:
  gnome-terminal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-29 10:45:09 UTC (rev 78882)
+++ PKGBUILD2010-04-29 10:47:29 UTC (rev 78883)
@@ -2,19 +2,19 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gnome-terminal
-pkgver=2.30.0
+pkgver=2.30.1
 pkgrel=1
 pkgdesc=The GNOME Terminal Emulator
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('gconf=2.28.0' 'vte=0.24.0' 'libgnome' 'libsm')
-makedepends=('pkgconfig' 'gnome-doc-utils=0.19.5' 'intltool') 
+depends=('gconf=2.28.1' 'vte=0.24.1' 'libgnome' 'libsm')
+makedepends=('pkgconfig' 'gnome-doc-utils=0.20.1' 'intltool') 
 options=('!emptydirs')
 url=http://www.gnome.org;
 groups=('gnome-extra')
 install=gnome-terminal.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.30/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('989e251a8407952b8c42fa74c8049a485504dfe3c82663946c7b538199b0c5d5')
+sha256sums=('6f30ff97c0798dbfdc8e0910427d88d1d210b8b63f3d0a238a3d48ef2a280cd7')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in gnome-terminal/repos (extra-i686)

2010-04-29 Thread Jan de Groot
Date: Thursday, April 29, 2010 @ 06:47:37
  Author: jgc
Revision: 78884

archrelease: remove extra-i686

Deleted:
  gnome-terminal/repos/extra-i686/



[arch-commits] Commit in gnome-terminal/repos (extra-i686)

2010-04-29 Thread Jan de Groot
Date: Thursday, April 29, 2010 @ 06:47:43
  Author: jgc
Revision: 78885

archrelease: copy trunk to extra-i686

Added:
  gnome-terminal/repos/extra-i686/



[arch-commits] Commit in gnome-terminal/repos (extra-x86_64)

2010-04-29 Thread Jan de Groot
Date: Thursday, April 29, 2010 @ 06:47:51
  Author: jgc
Revision: 78886

archrelease: remove extra-x86_64

Deleted:
  gnome-terminal/repos/extra-x86_64/



[arch-commits] Commit in gnome-terminal/repos (extra-x86_64)

2010-04-29 Thread Jan de Groot
Date: Thursday, April 29, 2010 @ 06:47:57
  Author: jgc
Revision: 78887

archrelease: copy trunk to extra-x86_64

Added:
  gnome-terminal/repos/extra-x86_64/



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

2010-04-29 Thread Jan de Groot
Date: Thursday, April 29, 2010 @ 08:21:55
  Author: jgc
Revision: 7

upgpkg: empathy 2.30.1-1
Update to 2.30.1

Modified:
  empathy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-29 10:47:57 UTC (rev 78887)
+++ PKGBUILD2010-04-29 12:21:55 UTC (rev 7)
@@ -1,14 +1,14 @@
 # $Id$
 # Maintainer: Ionut Biru ib...@archlinux.org
 pkgname=empathy
-pkgver=2.30.0.2
+pkgver=2.30.1
 pkgrel=1
 pkgdesc=A GNOME instant messaging client using the Telepathy framework.
 arch=('i686' 'x86_64')
 url=http://live.gnome.org/Empathy;
 license=('GPL2')
-depends=('iso-codes' 'telepathy-mission-control=5.4.0' 
'telepathy-farsight=0.0.12' 'libcanberra' 'libnotify' 'libunique=1.1.6' 
'libwebkit=1.2.0' 'evolution-data-server=2.30')
-makedepends=('pkgconfig' 'intltool' 'gnome-doc-utils=0.19.5' 
'nautilus-sendto')
+depends=('iso-codes' 'telepathy-mission-control=5.4.0' 
'telepathy-farsight=0.0.12' 'libcanberra' 'libnotify' 'libunique=1.1.6' 
'libwebkit=1.2.0' 'evolution-data-server=2.30.1')
+makedepends=('pkgconfig' 'intltool' 'gnome-doc-utils=0.20.1' 
'nautilus-sendto')
 optdepends=('telepathy-gabble: XMPP/Jabber support'
 'telepathy-butterfly: MSN support'
 'telepathy-idle: IRC support'
@@ -19,7 +19,7 @@
 groups=('gnome-extra')
 install=empathy.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/2.30/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('8dd9c31968677661e5cbdf08022bebcaadf2cdcdcd08fee4c40aaacc55233c86')
+sha256sums=('b7f06e609c410f1d6898751977fc6b964b9c3e015daec5cc281db715bc032577')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in empathy/repos (extra-i686)

2010-04-29 Thread Jan de Groot
Date: Thursday, April 29, 2010 @ 08:22:12
  Author: jgc
Revision: 78889

archrelease: remove extra-i686

Deleted:
  empathy/repos/extra-i686/



[arch-commits] Commit in empathy/repos (extra-i686)

2010-04-29 Thread Jan de Groot
Date: Thursday, April 29, 2010 @ 08:22:18
  Author: jgc
Revision: 78890

archrelease: copy trunk to extra-i686

Added:
  empathy/repos/extra-i686/



[arch-commits] Commit in empathy/repos (extra-x86_64)

2010-04-29 Thread Jan de Groot
Date: Thursday, April 29, 2010 @ 08:22:34
  Author: jgc
Revision: 78891

archrelease: remove extra-x86_64

Deleted:
  empathy/repos/extra-x86_64/



[arch-commits] Commit in empathy/repos (extra-x86_64)

2010-04-29 Thread Jan de Groot
Date: Thursday, April 29, 2010 @ 08:22:42
  Author: jgc
Revision: 78892

archrelease: copy trunk to extra-x86_64

Added:
  empathy/repos/extra-x86_64/



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

2010-04-29 Thread Paul Mattal
Date: Thursday, April 29, 2010 @ 08:32:37
  Author: paul
Revision: 78893

upgpkg: postfix 2.7.0-3
rebuild against new openssl

Modified:
  postfix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-29 12:22:42 UTC (rev 78892)
+++ PKGBUILD2010-04-29 12:32:37 UTC (rev 78893)
@@ -3,7 +3,7 @@
 # Maintainer: Paul Mattal p...@archlinux.org
 pkgname=postfix
 pkgver=2.7.0
-pkgrel=2
+pkgrel=3
 pkgdesc=Secure, fast, easy to administer drop in replacement for Sendmail 
(MTA)
 arch=('i686' 'x86_64')
 license=('custom')



[arch-commits] Commit in postfix/repos (testing-i686)

2010-04-29 Thread Paul Mattal
Date: Thursday, April 29, 2010 @ 08:32:48
  Author: paul
Revision: 78894

archrelease: copy trunk to testing-i686

Added:
  postfix/repos/testing-i686/



[arch-commits] Commit in postfix/repos (testing-x86_64)

2010-04-29 Thread Paul Mattal
Date: Thursday, April 29, 2010 @ 08:32:59
  Author: paul
Revision: 78895

archrelease: copy trunk to testing-x86_64

Added:
  postfix/repos/testing-x86_64/



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

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:07:45
  Author: ibiru
Revision: 78896

upgpkg: evince 2.30.1-1
update to 2.30.1

Modified:
  evince/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-29 12:32:59 UTC (rev 78895)
+++ PKGBUILD2010-04-29 13:07:45 UTC (rev 78896)
@@ -2,21 +2,21 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=evince
-pkgver=2.30.0
+pkgver=2.30.1
 pkgrel=1
 pkgdesc=Simply a document viewer
 url=http://www.gnome.org;
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('libspectre=0.2.3' 'gsfonts' 'poppler-glib=0.12.4' 
'libdjvu=3.5.22' 'gnome-icon-theme=2.29.3' 't1lib' 'libgnome-keyring=2.29.4' 
'desktop-file-utils')
-makedepends=('gnome-doc-utils=0.20.0' 'nautilus=2.30.0' 'pkgconfig' 
'texlive-bin' 'intltool' 'gobject-introspection')
+depends=('libspectre=0.2.3' 'gsfonts' 'poppler-glib=0.12.4' 
'libdjvu=3.5.22' 'gnome-icon-theme=2.30.2' 't1lib' 'libgnome-keyring=2.30.1' 
'desktop-file-utils')
+makedepends=('gnome-doc-utils=0.20.1' 'nautilus=2.30.1' 'pkgconfig' 
'texlive-bin' 'intltool' 'gobject-introspection')
 optdepends=('texlive-bin: DVI support')
 replaces=('gpdf')
 groups=('gnome-extra')
 install=evince.install
 options=('!libtool' '!emptydirs')
 
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.30/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('36dfee4e973421f15cb51c9b1c84784523592dc81feb6465fb59f87b8f7f8bf7')
+sha256sums=('ab6b957ab422341f023baa8ee4061bc5719389f92d6745874d239cd1e737f225')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in evince/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:08:08
  Author: ibiru
Revision: 78897

archrelease: remove extra-i686

Deleted:
  evince/repos/extra-i686/



[arch-commits] Commit in evince/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:08:26
  Author: ibiru
Revision: 78898

archrelease: copy trunk to extra-i686

Added:
  evince/repos/extra-i686/



[arch-commits] Commit in evince/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:08:42
  Author: ibiru
Revision: 78899

archrelease: remove extra-x86_64

Deleted:
  evince/repos/extra-x86_64/



[arch-commits] Commit in evince/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:09:06
  Author: ibiru
Revision: 78900

archrelease: copy trunk to extra-x86_64

Added:
  evince/repos/extra-x86_64/



[arch-commits] Commit in yelp/trunk (PKGBUILD libxul192.patch)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:12:05
  Author: ibiru
Revision: 78901

upgpkg: yelp 2.30.1-1
update to 2.30.1

Modified:
  yelp/trunk/PKGBUILD
Deleted:
  yelp/trunk/libxul192.patch

-+
 PKGBUILD|6 +-
 libxul192.patch |  109 --
 2 files changed, 3 insertions(+), 112 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-04-29 13:09:06 UTC (rev 78900)
+++ PKGBUILD2010-04-29 13:12:05 UTC (rev 78901)
@@ -2,11 +2,11 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=yelp
-pkgver=2.30.0
+pkgver=2.30.1
 pkgrel=1
 pkgdesc=A help browser for GNOME
 arch=('i686' 'x86_64')
-depends=('xulrunner=1.9.2' 'gnome-doc-utils=0.20.0' 
'startup-notification=0.10' 'libxslt' 'hicolor-icon-theme' 'rarian=0.8.1' 
'gconf=2.28.0')
+depends=('xulrunner=1.9.2' 'gnome-doc-utils=0.20.1' 
'startup-notification=0.10' 'libxslt' 'hicolor-icon-theme' 'rarian=0.8.1' 
'gconf=2.28.1')
 makedepends=('intltool' 'pkgconfig')
 groups=('gnome')
 license=('GPL')
@@ -14,7 +14,7 @@
 url=http://www.gnome.org;
 install=yelp.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/yelp/2.30/yelp-${pkgver}.tar.bz2)
-sha256sums=('d901e55cd2b276d7ba9169485d803832ad2e7e0a92a2a767130ae4f53975c53d')
+sha256sums=('4b453e994f8e57bc5c4637dba2c315536f30e90741b74b0bee218cbb436eb20c')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}

Deleted: libxul192.patch
===
--- libxul192.patch 2010-04-29 13:09:06 UTC (rev 78900)
+++ libxul192.patch 2010-04-29 13:12:05 UTC (rev 78901)
@@ -1,109 +0,0 @@
-From a5588114ed94d00ca64913aa5b248e09a5e13edc Mon Sep 17 00:00:00 2001
-From: Shaun McCance sha...@gnome.org
-Date: Mon, 25 Jan 2010 20:21:10 +
-Subject: Fixing issues introduced by xulrunner 1.9.2
-
-API changes in a stable release are not fun.  With 1.9.2, setting the base
-URI when opening a stream causes a uri_selected callback.  So we compare
-the URI to what we know we're loading to prevent an infinite loop.
-
-Also, #fragment links no longer trigger a uri_selected callback.  So I've
-halfway backported the xref: method used in the yelp-3-0 branch.  It's not
-pervasive.  We rewrite it pretty much immediately.  So we still use the
-slash hack, instead of the nicer method in yelp-3-0.  This should be enough
-to keep 2.x alive.

-diff --git a/src/yelp-html.cpp b/src/yelp-html.cpp
-index edd8788..aa9371d 100644
 a/src/yelp-html.cpp
-+++ b/src/yelp-html.cpp
-@@ -24,6 +24,8 @@
- #include mozilla-config.h
- #include config.h
- 
-+#include string.h
-+
- #include yelp-gecko-services.h
- #include yelp-gecko-utils.h
- #include yelp-marshal.h
-@@ -90,13 +92,20 @@ static gint
- html_open_uri (GtkMozEmbed *embed, const gchar *uri)
- {
- YelpHtml *html = YELP_HTML (embed);
--gboolean block_load;
-+gboolean block_load = FALSE;
- 
- g_return_val_if_fail (uri != NULL, FALSE);
- 
- debug_print (DB_FUNCTION, entering\n);
- debug_print (DB_ARG,   uri = \%s\\n, uri);
- 
-+if (g_str_equal (html-priv-base_uri, uri)) {
-+  /* As of xulrunner 1.6.2, open_uri is called in response
-+ to the base URI we pass in.
-+   */
-+  return FALSE;
-+}
-+
- if (!html-priv-frames_enabled) {
-   g_signal_emit (html, signals[URI_SELECTED], 0, uri, FALSE);
-   block_load = TRUE;
-diff --git a/src/yelp-window.c b/src/yelp-window.c
-index d436f24..401e059 100644
 a/src/yelp-window.c
-+++ b/src/yelp-window.c
-@@ -1849,14 +1849,21 @@ html_uri_selected_cb (YelpHtml  *html,
- gboolean   handled,
- gpointer   user_data)
- {
-+gchar *new_uri = uri;
- YelpWindow *window = YELP_WINDOW (user_data);
- 
- debug_print (DB_FUNCTION, entering\n);
- debug_print (DB_ARG,   uri = \%s\\n, uri);
- 
-+if (g_str_has_prefix (uri, xref:))
-+new_uri = g_strconcat (window-priv-base_uri, #, uri + 5, NULL);
-+
- if (!handled) {
--  yelp_window_load (window, uri);
-+  yelp_window_load (window, new_uri);
- }
-+
-+if (new_uri != uri)
-+g_free (new_uri);
- }
- 
- static gboolean
-diff --git a/stylesheets/db2html.xsl.in b/stylesheets/db2html.xsl.in
-index 1ebf44e..b68f153 100644
 a/stylesheets/db2html.xsl.in
-+++ b/stylesheets/db2html.xsl.in
-@@ -68,7 +68,7 @@ FIXME: yelp:cache no longer works
- !-- == db.xref.target == --
- xsl:template name=db.xref.target
-   xsl:param name=linkend/
--  xsl:value-of select=concat('#', $linkend)/
-+  xsl:value-of select=concat('xref:', $linkend)/
- /xsl:template
- 
- !-- == db2html.css.custom == --
-diff --git a/stylesheets/mal2html.xsl.in b/stylesheets/mal2html.xsl.in
-index 37560a7..9a55fcc 100644
 a/stylesheets/mal2html.xsl.in
-+++ b/stylesheets/mal2html.xsl.in
-@@ -44,10 +44,10 @@
- xsl:when test=contains($xref, '#')
-   xsl:variable name=pageid select=substring-before($xref, '#')/
-   

[arch-commits] Commit in yelp/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:12:17
  Author: ibiru
Revision: 78902

archrelease: remove extra-i686

Deleted:
  yelp/repos/extra-i686/



[arch-commits] Commit in yelp/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:12:37
  Author: ibiru
Revision: 78903

archrelease: copy trunk to extra-i686

Added:
  yelp/repos/extra-i686/



[arch-commits] Commit in yelp/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:12:47
  Author: ibiru
Revision: 78904

archrelease: remove extra-x86_64

Deleted:
  yelp/repos/extra-x86_64/



[arch-commits] Commit in yelp/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:13:07
  Author: ibiru
Revision: 78905

archrelease: copy trunk to extra-x86_64

Added:
  yelp/repos/extra-x86_64/



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

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:15:29
  Author: ibiru
Revision: 78906

upgpkg: hamster-applet 2.30.1-1
update to 2.30.1

Modified:
  hamster-applet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-29 13:13:07 UTC (rev 78905)
+++ PKGBUILD2010-04-29 13:15:29 UTC (rev 78906)
@@ -3,19 +3,19 @@
 # Contributor: Georg Vogetseder georg.vogetse...@gmail.com
 
 pkgname=hamster-applet
-pkgver=2.30.0.1
+pkgver=2.30.1
 pkgrel=1
 pkgdesc=GNOME time tracking applet
 arch=('i686' 'x86_64')
 url=http://projecthamster.wordpress.com/;
 license=('GPL')
 depends=('gnome-python=2.28.1' 'python-pysqlite=2.5.5' 
'gnome-python-desktop=2.30.0' 'dbus-python=0.83.0' 'gnome-panel=2.30.0' 
'pyxdg=0.19')
-makedepends=('intltool' 'gnome-doc-utils=0.20.0')
+makedepends=('intltool' 'gnome-doc-utils=0.20.1')
 options=('!libtool' '!emptydirs')
 groups=('gnome-extra')
 install=hamster-applet.install
 
source=(ftp://ftp.gnome.org/pub/GNOME/sources/${pkgname}/2.30/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('7448c12bf39d6902ddc5ebd10edb25a36909d4686242f8dba34b1b0d4cc27dbb')
+sha256sums=('a21994de512e17b176ff802c162dc1d26b25d8908c6108d47cd3c5c283fe4b3c')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in hamster-applet/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:16:34
  Author: ibiru
Revision: 78910

archrelease: copy trunk to extra-x86_64

Added:
  hamster-applet/repos/extra-x86_64/



[arch-commits] Commit in hamster-applet/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:16:11
  Author: ibiru
Revision: 78909

archrelease: remove extra-x86_64

Deleted:
  hamster-applet/repos/extra-x86_64/



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

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:20:33
  Author: ibiru
Revision: 78911

upgpkg: mousetweaks 2.30.1-1
update to 2.30.1

Modified:
  mousetweaks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-29 13:16:34 UTC (rev 78910)
+++ PKGBUILD2010-04-29 13:20:33 UTC (rev 78911)
@@ -2,19 +2,19 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=mousetweaks
-pkgver=2.30.0
+pkgver=2.30.1
 pkgrel=1
 pkgdesc=Mouse accessibility enhancements for the GNOME desktop
 arch=(i686 x86_64)
 license=('GPL3' 'FDL')
-depends=('gnome-panel=2.29.92.1' 'at-spi=1.29.92')
+depends=('gnome-panel=2.30.0' 'at-spi=1.30.1')
 makedepends=('pkgconfig' 'gnome-doc-utils=0.19.5' 'intltool')
 groups=('gnome-extra')
 options=('!libtool' '!emptydirs')
 url=http://www.gnome.org;
 install=mousetweaks.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.30/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('1b7f8e428e37006b65f39f3744281f5761cc11c424e71a72bb2093cdbb240b4f')
+sha256sums=('6bd16a59b248a68ae0c99e185400eba58c3dac82a99ca2cc7c60e775accd01e6')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
@@ -22,7 +22,7 @@
   --localstatedir=/var --disable-scrollkeeper || return 1
   make || return 1
   make -j1 GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR=${pkgdir} install 
|| return 1
- 
+
   install -m755 -d ${pkgdir}/usr/share/gconf/schemas
   gconf-merge-schema ${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas 
--domain mousetweaks ${pkgdir}/etc/gconf/schemas/*.schemas || return 1
   rm -f ${pkgdir}/etc/gconf/schemas/*.schemas



[arch-commits] Commit in mousetweaks/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:20:54
  Author: ibiru
Revision: 78912

archrelease: remove extra-i686

Deleted:
  mousetweaks/repos/extra-i686/



[arch-commits] Commit in mousetweaks/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:21:13
  Author: ibiru
Revision: 78913

archrelease: copy trunk to extra-i686

Added:
  mousetweaks/repos/extra-i686/



[arch-commits] Commit in mousetweaks/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:21:34
  Author: ibiru
Revision: 78914

archrelease: remove extra-x86_64

Deleted:
  mousetweaks/repos/extra-x86_64/



[arch-commits] Commit in mousetweaks/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:21:58
  Author: ibiru
Revision: 78915

archrelease: copy trunk to extra-x86_64

Added:
  mousetweaks/repos/extra-x86_64/



[arch-commits] Commit in hamster-applet/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:16:00
  Author: ibiru
Revision: 78908

archrelease: copy trunk to extra-i686

Added:
  hamster-applet/repos/extra-i686/



[arch-commits] Commit in hamster-applet/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:15:40
  Author: ibiru
Revision: 78907

archrelease: remove extra-i686

Deleted:
  hamster-applet/repos/extra-i686/



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

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:25:20
  Author: ibiru
Revision: 78916

upgpkg: tomboy 1.2.1-1
update to 1.2.1

Modified:
  tomboy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-29 13:21:58 UTC (rev 78915)
+++ PKGBUILD2010-04-29 13:25:20 UTC (rev 78916)
@@ -2,24 +2,24 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=tomboy
-pkgver=1.2.0
-pkgrel=2
+pkgver=1.2.1
+pkgrel=1
 pkgdesc=Desktop note-taking application for Linux and Unix
 arch=('i686' 'x86_64')
 license=('GPL')
 url=http://www.gnome.org/projects/tomboy/;
 depends=('gtkspell' 'gmime=2.4.15' 'ndesk-dbus-glib=0.4.1' 
'gnome-sharp=2.24.1' 'mono-addins=0.4' 'libsm' 'gnome-desktop-sharp=2.26.0' 
'hicolor-icon-theme')
-makedepends=('intltool' 'pkgconfig' 'gnome-panel=2.29.91' 
'gnome-doc-utils=0.20.0')
+makedepends=('intltool' 'pkgconfig' 'gnome-panel=2.30.0' 
'gnome-doc-utils=0.20.0')
 options=('!libtool' '!emptydirs')
 groups=('gnome-extra')
 install=tomboy.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.2/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('848e8c6a921499592d838b0f839796230f38b4cec184d7c021e6bfe3205868ab')
+sha256sums=('9cb69d399e25e2a773cce5518c60b65dfdb70a46f487527e38cc013688762f99')
 
 build() {
   export MONO_SHARED_DIR=${srcdir}/.wabi
   mkdir -p ${MONO_SHARED_DIR}
- 
+
   cd ${srcdir}/${pkgname}-${pkgver}
   ./configure --prefix=/usr --sysconfdir=/etc \
   --localstatedir=/var --disable-scrollkeeper \



[arch-commits] Commit in tomboy/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:26:05
  Author: ibiru
Revision: 78917

archrelease: remove extra-i686

Deleted:
  tomboy/repos/extra-i686/



[arch-commits] Commit in tomboy/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:26:23
  Author: ibiru
Revision: 78918

archrelease: copy trunk to extra-i686

Added:
  tomboy/repos/extra-i686/



[arch-commits] Commit in tomboy/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:27:03
  Author: ibiru
Revision: 78919

archrelease: remove extra-x86_64

Deleted:
  tomboy/repos/extra-x86_64/



[arch-commits] Commit in tomboy/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:27:23
  Author: ibiru
Revision: 78920

archrelease: copy trunk to extra-x86_64

Added:
  tomboy/repos/extra-x86_64/



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

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:45:10
  Author: ibiru
Revision: 78921

upgpkg: cheese 2.30.1-1
update to 2.30.1

Modified:
  cheese/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-29 13:27:23 UTC (rev 78920)
+++ PKGBUILD2010-04-29 13:45:10 UTC (rev 78921)
@@ -2,19 +2,19 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=cheese
-pkgver=2.30.0
+pkgver=2.30.1
 pkgrel=1
 pkgdesc=Use your webcam to take photos and videos, apply fancy special 
effects and share the fun with others
 arch=(i686 x86_64)
 license=('GPL')
-depends=('gnome-desktop=2.29.92' 'gstreamer0.10-base-plugins=0.10.26' 
'gstreamer0.10-good-plugins=0.10.18' 'librsvg=2.26.0' 
'gnome-icon-theme=2.29.2' 'libcanberra')
-makedepends=('pkgconfig' 'gnome-doc-utils=0.20.0' 'intltool')
+depends=('gnome-desktop=2.30.0' 'gstreamer0.10-base-plugins=0.10.26' 
'gstreamer0.10-good-plugins=0.10.18' 'librsvg=2.26.0' 
'gnome-icon-theme=2.30.2' 'libcanberra')
+makedepends=('pkgconfig' 'gnome-doc-utils=0.20.1' 'intltool')
 groups=('gnome-extra')
 options=('!libtool' '!emptydirs')
 url=http://www.gnome.org/projects/cheese/;
 install=cheese.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.30/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('7eab2c736abc1a333eb3dd7fb5c888c08f2dc0f34443b5801a7dfc581101aab9')
+sha256sums=('48f03470c6f527caa0e3b269d3afcff86ae0939a74f66ce030d4eed3bc3cbd9a')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in cheese/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:45:40
  Author: ibiru
Revision: 78922

archrelease: remove extra-i686

Deleted:
  cheese/repos/extra-i686/



[arch-commits] Commit in cheese/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:45:59
  Author: ibiru
Revision: 78923

archrelease: copy trunk to extra-i686

Added:
  cheese/repos/extra-i686/



[arch-commits] Commit in cheese/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:46:29
  Author: ibiru
Revision: 78924

archrelease: remove extra-x86_64

Deleted:
  cheese/repos/extra-x86_64/



[arch-commits] Commit in cheese/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:46:46
  Author: ibiru
Revision: 78925

archrelease: copy trunk to extra-x86_64

Added:
  cheese/repos/extra-x86_64/



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

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:51:48
  Author: ibiru
Revision: 78926

upgpkg: gdm 2.30.2-1
update to 2.30.2

Modified:
  gdm/trunk/04_fix_external_program_directories.patch
  gdm/trunk/PKGBUILD

---+
 04_fix_external_program_directories.patch |   42 ++--
 PKGBUILD  |   10 +++---
 2 files changed, 26 insertions(+), 26 deletions(-)

Modified: 04_fix_external_program_directories.patch
===
--- 04_fix_external_program_directories.patch   2010-04-29 13:46:46 UTC (rev 
78925)
+++ 04_fix_external_program_directories.patch   2010-04-29 13:51:48 UTC (rev 
78926)
@@ -1,7 +1,6 @@
-# Description: Fix location of external programs.
-diff -Nur -x '*.orig' -x '*~' gdm-2.27.90/daemon/gdm-server.c 
gdm-2.27.90.new/daemon/gdm-server.c
 gdm-2.27.90/daemon/gdm-server.c2009-08-25 05:31:18.0 +1000
-+++ gdm-2.27.90.new/daemon/gdm-server.c2009-08-25 14:35:12.0 
+1000
+diff -Nur gdm-2.30.2.orig/daemon/gdm-server.c gdm-2.30.2/daemon/gdm-server.c
+--- gdm-2.30.2.orig/daemon/gdm-server.c2010-04-26 20:08:42.0 
+0300
 gdm-2.30.2/daemon/gdm-server.c 2010-04-29 16:34:52.396858517 +0300
 @@ -127,7 +127,7 @@
  g_return_val_if_fail (GDM_IS_SERVER (server), NULL);
  
@@ -11,23 +10,33 @@
 server-priv-display_name);
  
  g_debug (GdmServer: Running helper %s, command);
-diff -Nur -x '*.orig' -x '*~' 
gdm-2.27.90/data/greeter-autostart/gnome-settings-daemon.desktop.in.in 
gdm-2.27.90.new/data/greeter-autostart/gnome-settings-daemon.desktop.in.in
 gdm-2.27.90/data/greeter-autostart/gnome-settings-daemon.desktop.in.in 
2009-08-25 05:31:18.0 +1000
-+++ gdm-2.27.90.new/data/greeter-autostart/gnome-settings-daemon.desktop.in.in 
2009-08-25 14:35:12.0 +1000
+diff -Nur 
gdm-2.30.2.orig/data/greeter-autostart/gnome-settings-daemon.desktop.in 
gdm-2.30.2/data/greeter-autostart/gnome-settings-daemon.desktop.in
+--- gdm-2.30.2.orig/data/greeter-autostart/gnome-settings-daemon.desktop.in
2010-04-27 16:51:57.0 +0300
 gdm-2.30.2/data/greeter-autostart/gnome-settings-daemon.desktop.in 
2010-04-29 16:36:04.916992754 +0300
 @@ -1,8 +1,8 @@
  [Desktop Entry]
  Type=Application
  _Name=GNOME Settings Daemon
--tryex...@libexecdir@/gnome-settings-daemon
--ex...@libexecdir@/gnome-settings-daemon 
--gconf-prefix=/apps/gdm/simple-greeter/settings-manager-plugins
+-TryExec=/usr/libexec/gnome-settings-daemon
+-Exec=/usr/libexec/gnome-settings-daemon 
--gconf-prefix=/apps/gdm/simple-greeter/settings-manager-plugins
 +TryExec=/usr/bin/gnome-settings-daemon
 +Exec=/usr/bin/gnome-settings-daemon 
--gconf-prefix=/apps/gdm/simple-greeter/settings-manager-plugins
  OnlyShowIn=GNOME;
  X-GNOME-Autostart-Phase=Initialization
  X-GNOME-Autostart-Notify=true
-diff -Nur -x '*.orig' -x '*~' 
gdm-2.27.90/gui/simple-chooser/gdm-chooser-session.c 
gdm-2.27.90.new/gui/simple-chooser/gdm-chooser-session.c
 gdm-2.27.90/gui/simple-chooser/gdm-chooser-session.c   2009-08-25 
05:31:18.0 +1000
-+++ gdm-2.27.90.new/gui/simple-chooser/gdm-chooser-session.c   2009-08-25 
14:35:12.0 +1000
+diff -Nur 
gdm-2.30.2.orig/data/greeter-autostart/polkit-gnome-authentication-agent-1.desktop.in
 
gdm-2.30.2/data/greeter-autostart/polkit-gnome-authentication-agent-1.desktop.in
+--- 
gdm-2.30.2.orig/data/greeter-autostart/polkit-gnome-authentication-agent-1.desktop.in
  2010-04-27 16:51:57.0 +0300
 
gdm-2.30.2/data/greeter-autostart/polkit-gnome-authentication-agent-1.desktop.in
   2010-04-29 16:38:35.533474550 +0300
+@@ -1,5 +1,5 @@
+ [Desktop Entry]
+ Type=Application
+ _Name=PolicyKit Authentication Agent
+-Exec=/usr/libexec/polkit-gnome-authentication-agent-1
++Exec=/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1
+ OnlyShowIn=GNOME;
+diff -Nur gdm-2.30.2.orig/gui/simple-chooser/gdm-chooser-session.c 
gdm-2.30.2/gui/simple-chooser/gdm-chooser-session.c
+--- gdm-2.30.2.orig/gui/simple-chooser/gdm-chooser-session.c   2010-03-17 
23:27:16.0 +0200
 gdm-2.30.2/gui/simple-chooser/gdm-chooser-session.c2010-04-29 
16:37:54.803452184 +0300
 @@ -131,7 +131,7 @@
  ret = FALSE;
  
@@ -37,12 +46,3 @@
  if (error != NULL) {
  g_warning (Error starting settings daemon: %s, 
error-message);
  g_error_free (error);
 
gdm-2.29.92/data/greeter-autostart/polkit-gnome-authentication-agent-1.desktop.in.orig
 2010-03-11 21:20:46.601321566 +0200
-+++ 
gdm-2.29.92/data/greeter-autostart/polkit-gnome-authentication-agent-1.desktop.in
  2010-03-11 21:21:16.765676813 +0200
-@@ -1,5 +1,5 @@
- [Desktop Entry]
- Type=Application
- _Name=PolicyKit Authentication Agent
--Exec=/usr/lib/polkit-gnome-authentication-agent-1
-+Exec=/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1
- OnlyShowIn=GNOME;

[arch-commits] Commit in gdm/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:52:03
  Author: ibiru
Revision: 78927

archrelease: remove extra-i686

Deleted:
  gdm/repos/extra-i686/



[arch-commits] Commit in gdm/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:52:20
  Author: ibiru
Revision: 78928

archrelease: copy trunk to extra-i686

Added:
  gdm/repos/extra-i686/



[arch-commits] Commit in gdm/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:52:32
  Author: ibiru
Revision: 78929

archrelease: remove extra-x86_64

Deleted:
  gdm/repos/extra-x86_64/



[arch-commits] Commit in gdm/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:52:48
  Author: ibiru
Revision: 78930

archrelease: copy trunk to extra-x86_64

Added:
  gdm/repos/extra-x86_64/



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

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:55:23
  Author: ibiru
Revision: 78931

upgpkg: eog 2.30.1-1
update to 2.30.1

Modified:
  eog/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-29 13:52:48 UTC (rev 78930)
+++ PKGBUILD2010-04-29 13:55:23 UTC (rev 78931)
@@ -2,19 +2,19 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=eog
-pkgver=2.30.0
+pkgver=2.30.1
 pkgrel=1
 pkgdesc=Eye of Gnome: An image viewing and cataloging program
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('gnome-desktop=2.29.91' 'libexif=0.6.19' 'lcms=1.18-3' 
'desktop-file-utils' 'gnome-icon-theme=2.28.0' 'exempi=2.1.1')
-makedepends=('pkgconfig' 'gnome-doc-utils=0.20.0' 'intltool')
+depends=('gnome-desktop=2.30.0' 'libexif=0.6.19' 'lcms=1.18-3' 
'desktop-file-utils' 'gnome-icon-theme=2.30.2' 'exempi=2.1.1')
+makedepends=('pkgconfig' 'gnome-doc-utils=0.20.1' 'intltool')
 install=eog.install
 groups=('gnome-extra')
 options=('!emptydirs' '!libtool')
 url=http://www.gnome.org;
 
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.30/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('9fbda0995416eeec70b41b0b2db4b38fd5256ac39415cdac852b32def52a06b2')
+sha256sums=('d245d96d791c88197dda1f667c196cb4134f9ce88596e696d5fbcddb6747ecf6')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in eog/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:55:41
  Author: ibiru
Revision: 78932

archrelease: remove extra-i686

Deleted:
  eog/repos/extra-i686/



[arch-commits] Commit in eog/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:55:57
  Author: ibiru
Revision: 78933

archrelease: copy trunk to extra-i686

Added:
  eog/repos/extra-i686/



[arch-commits] Commit in eog/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:56:16
  Author: ibiru
Revision: 78934

archrelease: remove extra-x86_64

Deleted:
  eog/repos/extra-x86_64/



[arch-commits] Commit in eog/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 09:56:33
  Author: ibiru
Revision: 78935

archrelease: copy trunk to extra-x86_64

Added:
  eog/repos/extra-x86_64/



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

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:19:39
  Author: ibiru
Revision: 78936

upgpkg: gnome-games 2.30.1-1
update to 2.30.1

Modified:
  gnome-games/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-29 13:56:33 UTC (rev 78935)
+++ PKGBUILD2010-04-29 14:19:39 UTC (rev 78936)
@@ -2,13 +2,13 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gnome-games
-pkgver=2.30.0
+pkgver=2.30.1
 pkgrel=1
 pkgdesc=Some Games for GNOME
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('libsm' 'gconf=2.28.0' 'guile=1.8.7' 'librsvg=2.26.0' 
'filesystem=2009.11' 'desktop-file-utils' 'gnome-python-desktop=2.29.1' 
'libcanberra=0.21' 'clutter-gtk=0.10.2' 'hicolor-icon-theme' 'seed=2.30.0' 
'gir-repository')
-makedepends=('pkgconfig' 'gnome-doc-utils=0.20.0' 'intltool')
+depends=('libsm' 'gconf=2.28.1' 'guile=1.8.7' 'librsvg=2.26.0' 
'filesystem=2010.02' 'desktop-file-utils' 'gnome-python-desktop=2.30.0' 
'libcanberra=0.23' 'clutter-gtk=0.10.2' 'hicolor-icon-theme' 'seed=2.30.0' 
'gir-repository')
+makedepends=('pkgconfig' 'gnome-doc-utils=0.20.1' 'intltool')
 optdepends=('python-gtkglext: glchess 3D mode')
 provides=('glchess' 'gnome-sudoku')
 conflicts=('glchess' 'gnome-sudoku')
@@ -17,7 +17,7 @@
 url=http://www.gnome.org;
 groups=('gnome-extra')
 
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.30/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('17f7b3bef00b26963a7155e861730aa427def70dace3358aa9fb4899603ef9da')
+sha256sums=('9adc8067bbf02e0dc0ccd5a1fe98d95b88f96e378e2d577543befc3ed6302da1')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in gnome-games/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:21:20
  Author: ibiru
Revision: 78937

archrelease: remove extra-i686

Deleted:
  gnome-games/repos/extra-i686/



[arch-commits] Commit in gnome-games/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:21:36
  Author: ibiru
Revision: 78938

archrelease: copy trunk to extra-i686

Added:
  gnome-games/repos/extra-i686/



[arch-commits] Commit in gnome-games/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:23:33
  Author: ibiru
Revision: 78940

archrelease: copy trunk to extra-x86_64

Added:
  gnome-games/repos/extra-x86_64/



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

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:29:42
  Author: ibiru
Revision: 78941

upgpkg: brasero 2.30.1-1
update to 2.30.1

Modified:
  brasero/trunk/PKGBUILD
Deleted:
  brasero/trunk/ChangeLog

---+
 ChangeLog |   27 ---
 PKGBUILD  |8 
 2 files changed, 4 insertions(+), 31 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2010-04-29 14:23:33 UTC (rev 78940)
+++ ChangeLog   2010-04-29 14:29:42 UTC (rev 78941)
@@ -1,27 +0,0 @@
-2009-07-01  Jan de Groot j...@archlinux.org
-  * brasero-2.26.3-1
-   * upstream update
-   * create gconf schemas with the correct gettext domain
-
-2009-04-18  Allan McRae al...@archlinux.org
-   * brasero-2.26.1-1
-   * upstream update
-
-2009-03-22  Jan de Groot j...@archlinux.org
-   * brasero-2.26.0-1
-   * upstream update
-   * Make dependencies versioned
-   * Fix optdepends
-
-2008-12-16  Allan McRae al...@archlinux.org
-   * brasero-0.8.4-1
-   * upstream update
-   * add nautilus as makedepend to build nautilus plugin
-
-2008-11-14  Allan McRae al...@archlinux.org
-   * brasero-0.8.3-1
-   * upstream update
-
-2008-10-22  Allan McRae al...@archlinux.org
-   * brasero-0.8.2-2
-   * Rebuild for totem-plparser update

Modified: PKGBUILD
===
--- PKGBUILD2010-04-29 14:23:33 UTC (rev 78940)
+++ PKGBUILD2010-04-29 14:29:42 UTC (rev 78941)
@@ -4,15 +4,15 @@
 # Contributor: William Rea sillywi...@gmail.com
 
 pkgname=brasero
-pkgver=2.30.0
+pkgver=2.30.1
 pkgrel=1
 pkgdesc=A disc burning application for Gnome
 arch=('i686' 'x86_64')
 url=http://www.gnome.org/projects/brasero;
 license=('GPL')
 options=('!libtool' '!emptydirs')
-depends=('gstreamer0.10-base-plugins=0.10.26' 'totem-plparser=2.30.0' 
'libbeagle=0.3.9' 'cdrkit' 'cdrdao' 'desktop-file-utils' 'hicolor-icon-theme' 
'libunique=1.1.6' 'gconf=2.28.0' 'libcanberra' 'dvd+rw-tools')
-makedepends=('gnome-doc-utils=0.20.0' 'intltool' 'libburn' 'libisofs' 
'nautilus' 'gobject-introspection')
+depends=('gstreamer0.10-base-plugins=0.10.26' 'totem-plparser=2.30.0' 
'libbeagle=0.3.9' 'cdrkit' 'cdrdao' 'desktop-file-utils' 'hicolor-icon-theme' 
'libunique=1.1.6' 'gconf=2.28.1' 'libcanberra' 'dvd+rw-tools')
+makedepends=('gnome-doc-utils=0.20.1' 'intltool' 'libburn' 'libisofs' 
'nautilus' 'gobject-introspection')
 optdepends=('libburn: alternative back-end'
 'libisofs: libburn back-end'
 'dvdauthor: video project'
@@ -21,7 +21,7 @@
 replaces=('nautilus-cd-burner')
 install=brasero.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/brasero/2.30/brasero-${pkgver}.tar.bz2)
-sha256sums=('6e9ead811f6325ae8c46f888540d57bb9e8c58fddd651fb3442bed4b7a737799')
+sha256sums=('676922e42192f38c82b40b460f896fa4653dd55a336365ace1fa64d9fc441f0e')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in brasero/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:30:01
  Author: ibiru
Revision: 78942

archrelease: remove extra-i686

Deleted:
  brasero/repos/extra-i686/



[arch-commits] Commit in brasero/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:30:21
  Author: ibiru
Revision: 78943

archrelease: copy trunk to extra-i686

Added:
  brasero/repos/extra-i686/



[arch-commits] Commit in brasero/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:30:43
  Author: ibiru
Revision: 78944

archrelease: remove extra-x86_64

Deleted:
  brasero/repos/extra-x86_64/



[arch-commits] Commit in brasero/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:30:59
  Author: ibiru
Revision: 78945

archrelease: copy trunk to extra-x86_64

Added:
  brasero/repos/extra-x86_64/



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

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:35:17
  Author: ibiru
Revision: 78946

upgpkg: seahorse 2.30.1-1
update to 2.30.1

Modified:
  seahorse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-29 14:30:59 UTC (rev 78945)
+++ PKGBUILD2010-04-29 14:35:17 UTC (rev 78946)
@@ -3,20 +3,20 @@
 # Contributor: Michel Brabants michel.li...@tiscali.be
 
 pkgname=seahorse
-pkgver=2.30.0
+pkgver=2.30.1
 pkgrel=1
 pkgdesc=GNOME application for managing PGP keys.
 arch=(i686 x86_64)
 license=('GPL')
 url=http://projects.gnome.org/seahorse/;
-depends=('libgnome-keyring=2.30.0' 'avahi=0.6.25' 'libnotify=0.4.5' 
'libsoup=2.30.0' 'gpgme=1.2.0' 'desktop-file-utils' 'hicolor-icon-theme')
-makedepends=('gettext' 'libldap' 'intltool' 'pkgconfig' 
'gnome-doc-utils=0.20.0' 'openssh' 'libsm')
+depends=('libgnome-keyring=2.30.1' 'avahi=0.6.25' 'libnotify=0.4.5' 
'libsoup=2.30.1' 'gpgme=1.2.0' 'desktop-file-utils' 'hicolor-icon-theme')
+makedepends=('gettext' 'libldap' 'intltool' 'pkgconfig' 
'gnome-doc-utils=0.20.1' 'openssh' 'libsm')
 options=('!libtool' '!emptydirs')
 groups=('gnome-extra')
 replaces=('gnome-keyring-manager')
 install=seahorse.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/seahorse/2.30/seahorse-${pkgver}.tar.bz2)
-sha256sums=('21a17ddac08092b410887e027921d9f522e687adeabe85c85919fc52feec1ab7')
+sha256sums=('1b97064ee91f87494040313a0a2fe813473ec4dba15b5781245080e8fea8e7c3')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in seahorse/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:35:33
  Author: ibiru
Revision: 78947

archrelease: remove extra-i686

Deleted:
  seahorse/repos/extra-i686/



[arch-commits] Commit in seahorse/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:35:50
  Author: ibiru
Revision: 78948

archrelease: copy trunk to extra-i686

Added:
  seahorse/repos/extra-i686/



[arch-commits] Commit in seahorse/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:36:02
  Author: ibiru
Revision: 78949

archrelease: remove extra-x86_64

Deleted:
  seahorse/repos/extra-x86_64/



[arch-commits] Commit in seahorse/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:36:19
  Author: ibiru
Revision: 78950

archrelease: copy trunk to extra-x86_64

Added:
  seahorse/repos/extra-x86_64/



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

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:38:50
  Author: ibiru
Revision: 78951

upgpkg: seahorse-plugins 2.30.1-1
update to 2.30.1

Modified:
  seahorse-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-29 14:36:19 UTC (rev 78950)
+++ PKGBUILD2010-04-29 14:38:50 UTC (rev 78951)
@@ -2,20 +2,20 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=seahorse-plugins
-pkgver=2.30.0
+pkgver=2.30.1
 pkgrel=1
 pkgdesc=Seahorse plugins
 arch=(i686 x86_64)
 license=('GPL')
-depends=('gnome-panel=2.30.0' 'seahorse=2.30.0' 'desktop-file-utils')
-makedepends=('intltool' 'gnome-doc-utils=0.20.0' 'pkgconfig' 'gedit=2.30.0' 
'nautilus=2.30.0')
+depends=('gnome-panel=2.30.0' 'seahorse=2.30.1' 'desktop-file-utils')
+makedepends=('intltool' 'gnome-doc-utils=0.20.0' 'pkgconfig' 'gedit=2.30.2' 
'nautilus=2.30.1')
 groups=('gnome-extra')
 url=http://www.gnome.org;
 options=(!libtool !emptydirs)
 install=seahorse-plugins.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.30/${pkgname}-${pkgver}.tar.bz2
 gpgme-init.patch)
-sha256sums=('24ed5c821a5d6575b7d7406fa043ef70c676db89b023a78e9ed7956703ab48e9'
+sha256sums=('1fdfed1aef2c22a29a9abc00eae67752854e466a66cee2a8c1c278277e832d66'
 '418d67892b348d02885e968c5299416baf545b12cf8f58b23579f79e87776ab2')
 
 build() {



[arch-commits] Commit in seahorse-plugins/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:39:00
  Author: ibiru
Revision: 78952

archrelease: remove extra-i686

Deleted:
  seahorse-plugins/repos/extra-i686/



[arch-commits] Commit in seahorse-plugins/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:39:16
  Author: ibiru
Revision: 78953

archrelease: copy trunk to extra-i686

Added:
  seahorse-plugins/repos/extra-i686/



[arch-commits] Commit in seahorse-plugins/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:39:25
  Author: ibiru
Revision: 78954

archrelease: remove extra-x86_64

Deleted:
  seahorse-plugins/repos/extra-x86_64/



[arch-commits] Commit in seahorse-plugins/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:39:41
  Author: ibiru
Revision: 78955

archrelease: copy trunk to extra-x86_64

Added:
  seahorse-plugins/repos/extra-x86_64/



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

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:45:21
  Author: ibiru
Revision: 78956

upgpkg: gnome-settings-daemon 2.30.1-1
update to 2.30.1

Modified:
  gnome-settings-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-29 14:39:41 UTC (rev 78955)
+++ PKGBUILD2010-04-29 14:45:21 UTC (rev 78956)
@@ -2,12 +2,12 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gnome-settings-daemon
-pkgver=2.30.0
+pkgver=2.30.1
 pkgrel=1
 pkgdesc=The GNOME Settings daemon
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('libgnomekbd=2.30.0' 'gnome-desktop=2.29.92' 'libnotify=0.4.5' 
'libxxf86misc' 'gstreamer0.10-base=0.10.26' 'hicolor-icon-theme')
+depends=('libgnomekbd=2.30.1' 'gnome-desktop=2.30.0' 'libnotify=0.4.5' 
'libxxf86misc' 'gstreamer0.10-base=0.10.26' 'hicolor-icon-theme')
 makedepends=('intltool' 'pkgconfig')
 conflicts=('gnome-control-center2.22.0')
 options=(!emptydirs !libtool)
@@ -16,7 +16,7 @@
 groups=('gnome')
 
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.30/${pkgname}-${pkgver}.tar.bz2
 gstreamer-volume-2.30.patch)
-sha256sums=('cb759f2aa403ad10f7b0a196c523fa0b3842cf4432b26a4b308ed1e5bf67e6aa'
+sha256sums=('6f66de1bb80af094a640398549799109e60f53d5373a1b0b7719a5a31c900095'
 '4b2a14c0e238f3cde71619b74f178544151bb319dee84b52133a254b85548582')
 
 build() {



[arch-commits] Commit in gnome-settings-daemon/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:45:31
  Author: ibiru
Revision: 78957

archrelease: remove extra-i686

Deleted:
  gnome-settings-daemon/repos/extra-i686/



[arch-commits] Commit in gnome-settings-daemon/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:45:49
  Author: ibiru
Revision: 78958

archrelease: copy trunk to extra-i686

Added:
  gnome-settings-daemon/repos/extra-i686/



[arch-commits] Commit in gnome-settings-daemon/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:46:00
  Author: ibiru
Revision: 78959

archrelease: remove extra-x86_64

Deleted:
  gnome-settings-daemon/repos/extra-x86_64/



[arch-commits] Commit in gnome-settings-daemon/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:46:18
  Author: ibiru
Revision: 78960

archrelease: copy trunk to extra-x86_64

Added:
  gnome-settings-daemon/repos/extra-x86_64/



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

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:57:14
  Author: ibiru
Revision: 78961

upgpkg: gnome-control-center 2.30.1-1
update to 2.30.1

Modified:
  gnome-control-center/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-29 14:46:18 UTC (rev 78960)
+++ PKGBUILD2010-04-29 14:57:14 UTC (rev 78961)
@@ -2,11 +2,11 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gnome-control-center
-pkgver=2.30.0
+pkgver=2.30.1
 pkgrel=1
 pkgdesc=The Control Center for GNOME
 arch=('i686' 'x86_64')
-depends=('metacity=2.28.1' 'libxss' 'desktop-file-utils' 
'gnome-settings-daemon=2.30.0' 'libgnomekbd=2.30.0' 'libcanberra=0.23' 
'sound-theme-freedesktop' 'libunique=1.1.6' 'gnome-menus=2.29.92' 
'evolution-data-server=2.29.92' 'librsvg=2.26.0')
+depends=('metacity=2.30.1' 'libxss' 'desktop-file-utils' 
'gnome-settings-daemon=2.30.1' 'libgnomekbd=2.30.1' 'libcanberra=0.23' 
'sound-theme-freedesktop' 'libunique=1.1.6' 'gnome-menus=2.30.0' 
'evolution-data-server=2.30.1' 'librsvg=2.26.0')
 makedepends=('gnome-doc-utils=0.19.5' 'pkgconfig' 'intltool')
 url=http://www.gnome.org;
 groups=('gnome')
@@ -17,7 +17,7 @@
 license=('GPL')
 options=('!libtool' '!emptydirs')
 
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/2.30/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('aa279706d7a1a4f5a4ba4767cc80ac3cae2855d3bc6600b5c039dc650d754828')
+sha256sums=('db050803a4bf3a2297255b8fff4810f2125a5b001d3fd785ee1ecd7f2c6f593b')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in gnome-control-center/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:57:27
  Author: ibiru
Revision: 78962

archrelease: remove extra-i686

Deleted:
  gnome-control-center/repos/extra-i686/



[arch-commits] Commit in gnome-control-center/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:57:45
  Author: ibiru
Revision: 78963

archrelease: copy trunk to extra-i686

Added:
  gnome-control-center/repos/extra-i686/



[arch-commits] Commit in gnome-control-center/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:58:01
  Author: ibiru
Revision: 78964

archrelease: remove extra-x86_64

Deleted:
  gnome-control-center/repos/extra-x86_64/



[arch-commits] Commit in gnome-control-center/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 10:58:17
  Author: ibiru
Revision: 78965

archrelease: copy trunk to extra-x86_64

Added:
  gnome-control-center/repos/extra-x86_64/



[arch-commits] Commit in gnome-icon-theme/trunk (PKGBUILD)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 11:21:28
  Author: ibiru
Revision: 78966

upgpkg: gnome-icon-theme 2.30.2.1-1
update to 2.30.2.1

Modified:
  gnome-icon-theme/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-29 14:58:17 UTC (rev 78965)
+++ PKGBUILD2010-04-29 15:21:28 UTC (rev 78966)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gnome-icon-theme
-pkgver=2.30.2
+pkgver=2.30.2.1
 pkgrel=1
 pkgdesc=Default icon theme for GNOME2
 arch=(any)
@@ -13,7 +13,7 @@
 groups=('gnome')
 install=gnome-icon-theme.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.30/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('66f59f63edd7a01e8f69dee76a10b32de2f357d219c9da52485b123e46bef50e')
+sha256sums=('5329aa295b1259194fc62005b5f14ca732af621a618598de638bda22989d9df5')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in gnome-icon-theme/repos (extra-any)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 11:22:09
  Author: ibiru
Revision: 78967

archrelease: remove extra-any

Deleted:
  gnome-icon-theme/repos/extra-any/



[arch-commits] Commit in gnome-icon-theme/repos (extra-any)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 11:22:28
  Author: ibiru
Revision: 78968

archrelease: copy trunk to extra-any

Added:
  gnome-icon-theme/repos/extra-any/



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

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 11:25:08
  Author: ibiru
Revision: 78969

upgpkg: anjuta 2.30.1.0-1
update to 2.30.1.0

Modified:
  anjuta/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-29 15:22:28 UTC (rev 78968)
+++ PKGBUILD2010-04-29 15:25:08 UTC (rev 78969)
@@ -3,20 +3,20 @@
 # Contributor: Harley Laue losinggenerat...@yahoo.com
 
 pkgname=anjuta
-pkgver=2.30.0.0
-pkgrel=3
+pkgver=2.30.1.0
+pkgrel=1
 pkgdesc=Anjuta Integrated Development Environment (IDE)
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('libunique=1.1.6' 'gconf=2.28.0' 'vte=0.23.5' 'gdl=2.30.0' 
'autogen=5.9.9' 'devhelp=2.28.1' 'gtksourceview2=2.10.0' 'glade=3.6.7' 
'libgda=4.0.8' 'subversion=1.6.9' 'gnome-icon-theme=2.30' 
'perl-locale-gettext')
-makedepends=('gnome-doc-utils=0.18.0' 'intltool')
+depends=('libunique=1.1.6' 'gconf=2.28.1' 'vte=0.24.1' 'gdl=2.30.0' 
'autogen=5.9.9' 'devhelp=2.28.1' 'gtksourceview2=2.10.1' 'glade=3.6.7' 
'libgda=4.0.8' 'subversion=1.6.9' 'gnome-icon-theme=2.30.2' 
'perl-locale-gettext')
+makedepends=('gnome-doc-utils=0.19.5' 'intltool')
 conflicts=('gnome-build')
 replaces=('gnome-build')
 url=http://anjuta.sourceforge.net/;
 install=anjuta.install
 
source=(ftp://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.30/${pkgname}-${pkgver}.tar.bz2)
 options=('!libtool' '!emptydirs')
-sha256sums=('09cf7e008c9f85dcafc8d13ce691c821c90ca4bf80f4d1c8af0bd83c6914c0cc')
+sha256sums=('3c64d80723e2a60311405e83b1b0cab94d07003a579f47cdb1f8073dcfb4e3c1')
 
 build() {
   cd ${srcdir}/anjuta-${pkgver}



[arch-commits] Commit in anjuta/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 11:25:46
  Author: ibiru
Revision: 78970

archrelease: remove extra-i686

Deleted:
  anjuta/repos/extra-i686/



[arch-commits] Commit in anjuta/repos (extra-i686)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 11:26:08
  Author: ibiru
Revision: 78971

archrelease: copy trunk to extra-i686

Added:
  anjuta/repos/extra-i686/



[arch-commits] Commit in anjuta/repos (extra-x86_64)

2010-04-29 Thread Ionut Biru
Date: Thursday, April 29, 2010 @ 11:26:43
  Author: ibiru
Revision: 78972

archrelease: remove extra-x86_64

Deleted:
  anjuta/repos/extra-x86_64/



  1   2   >