[arch-commits] Commit in perl-text-patch/trunk (PKGBUILD)

2011-05-26 Thread Angel Velásquez
Date: Thursday, May 26, 2011 @ 02:26:28
  Author: angvp
Revision: 125357

upgpkg: perl-text-patch 1.8-1
Rebuild + bump

Modified:
  perl-text-patch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-05-26 04:50:41 UTC (rev 125356)
+++ PKGBUILD2011-05-26 06:26:28 UTC (rev 125357)
@@ -3,7 +3,7 @@
 # Contributor: Caleb Cushing xenoterrac...@gmail.com
 pkgname=perl-text-patch
 _realname=Text-Patch
-pkgver=1.4
+pkgver=1.8
 pkgrel=1
 pkgdesc=Patches text with given patch
 arch=(any)
@@ -12,7 +12,7 @@
 url='http://search.cpan.org/dist/$_realname'
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/C/CA/CADE/$_realname-$pkgver.tar.gz;)
-md5sums=('df9d160e5f32bfbcc240edccc4e46a88')
+md5sums=('ad5e453d5ba3b48afd8163114d0fee1c')
 
 build() {
   cd $srcdir/$_realname-$pkgver



[arch-commits] Commit in perl-text-patch/repos (staging-any)

2011-05-26 Thread Angel Velásquez
Date: Thursday, May 26, 2011 @ 02:26:52
  Author: angvp
Revision: 125358

archrelease: copy trunk to staging-any

Added:
  perl-text-patch/repos/staging-any/



[arch-commits] Commit in scim/trunk (PKGBUILD gcc45.patch install scim.install)

2011-05-26 Thread Gaetan Bisson
Date: Thursday, May 26, 2011 @ 05:22:50
  Author: bisson
Revision: 125359

upstream update, various cleanup

Added:
  scim/trunk/install
(from rev 125358, scim/trunk/scim.install)
Modified:
  scim/trunk/PKGBUILD
Deleted:
  scim/trunk/gcc45.patch
  scim/trunk/scim.install

--+
 PKGBUILD |   45 -
 gcc45.patch  |   12 
 install  |   13 +
 scim.install |   13 -
 4 files changed, 41 insertions(+), 42 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-05-26 06:26:52 UTC (rev 125358)
+++ PKGBUILD2011-05-26 09:22:50 UTC (rev 125359)
@@ -1,29 +1,40 @@
 # $Id$
-# Maintainer: damir da...@archlinux.org
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: damir da...@archlinux.org
 # Contributor: Gan Lu rhythm@gmail.com
 
 pkgname=scim
-pkgver=1.4.9
-pkgrel=2
-pkgdesc=A Input Method development platform
-arch=(i686 x86_64)
-url=http://www.scim-im.org/projects/scim;
+pkgver=1.4.10
+pkgrel=1
+pkgdesc='Input method user interface and development platform'
+url='http://www.scim-im.org/projects/scim'
 license=('GPL')
+arch=('i686' 'x86_64')
 depends=('gtk2' 'gcc-libs')
 makedepends=('intltool')
 backup=('etc/scim/config' 'etc/scim/global')
 options=('!libtool')
-install=scim.install
-source=(http://downloads.sourceforge.net/sourceforge/scim/$pkgname-$pkgver.tar.gz
-gcc45.patch)
-md5sums=('975ba34b01304ea8166ac8ea27aa9e88'
- '9d7b41421424cedcbc5740098afa4921')
+source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/${pkgname}_$pkgver.tar.gz;)
+sha1sums=('bf33a6ceb199453fed909a61f54e971653fe5abf')
 
+install=install
+
 build() {
-  cd $srcdir/$pkgname-$pkgver
-  patch -Np1 -i $srcdir/gcc45.patch
-  ./configure --prefix=/usr --sysconfdir=/etc \
---with-gnu-ld --with-x --disable-static
-  make
-  make DESTDIR=$pkgdir install
+   cd $srcdir/$pkgname-$pkgver
+
+   ./bootstrap
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --disable-static \
+   --with-gnu-ld \
+   --with-x \
+
+   make
 }
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+
+   make DESTDIR=$pkgdir install
+}

Deleted: gcc45.patch
===
--- gcc45.patch 2011-05-26 06:26:52 UTC (rev 125358)
+++ gcc45.patch 2011-05-26 09:22:50 UTC (rev 125359)
@@ -1,12 +0,0 @@
-diff -Nur scim-1.4.9.orig//src/ltdl.cpp scim-1.4.9/src/ltdl.cpp
 scim-1.4.9.orig//src/ltdl.cpp  2008-11-02 01:42:40.0 -0500
-+++ scim-1.4.9/src/ltdl.cpp2010-07-04 00:19:58.924925581 -0500
-@@ -3361,7 +3361,7 @@
- {
-   lt_dlhandle handle  = 0;
-   char *  tmp = 0;
--  char *  ext = 0;
-+  const char *ext = 0;
-   size_t  len;
-   int errors  = 0;
- 

Copied: scim/trunk/install (from rev 125358, scim/trunk/scim.install)
===
--- install (rev 0)
+++ install 2011-05-26 09:22:50 UTC (rev 125359)
@@ -0,0 +1,13 @@
+post_install() {
+   echo -n 'updating gtk.immodules... '
+   /usr/bin/gtk-query-immodules-2.0  /etc/gtk-2.0/gtk.immodules
+   echo 'done.'
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: scim.install
===
--- scim.install2011-05-26 06:26:52 UTC (rev 125358)
+++ scim.install2011-05-26 09:22:50 UTC (rev 125359)
@@ -1,13 +0,0 @@
-post_install() {
-  echo -n updating gtk.immodules... 
-  /usr/bin/gtk-query-immodules-2.0  /etc/gtk-2.0/gtk.immodules
-  echo done.
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}



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

2011-05-26 Thread Gaetan Bisson
Date: Thursday, May 26, 2011 @ 05:23:39
  Author: bisson
Revision: 125360

archrelease: remove extra-i686

Deleted:
  scim/repos/extra-i686/



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

2011-05-26 Thread Gaetan Bisson
Date: Thursday, May 26, 2011 @ 05:23:45
  Author: bisson
Revision: 125361

archrelease: copy trunk to extra-i686

Added:
  scim/repos/extra-i686/



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

2011-05-26 Thread Gaetan Bisson
Date: Thursday, May 26, 2011 @ 05:23:47
  Author: bisson
Revision: 125362

archrelease: remove extra-x86_64

Deleted:
  scim/repos/extra-x86_64/



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

2011-05-26 Thread Gaetan Bisson
Date: Thursday, May 26, 2011 @ 05:23:53
  Author: bisson
Revision: 125363

archrelease: copy trunk to extra-x86_64

Added:
  scim/repos/extra-x86_64/



[arch-commits] Commit in libqzeitgeist/kde-unstable (PKGBUILD)

2011-05-26 Thread Andrea Scarpino
Date: Thursday, May 26, 2011 @ 06:10:50
  Author: andrea
Revision: 125364

upgpkg: libqzeitgeist 0.7.0-1
use libqzeitgeist 0.7.0

Modified:
  libqzeitgeist/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-05-26 09:23:53 UTC (rev 125363)
+++ PKGBUILD2011-05-26 10:10:50 UTC (rev 125364)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=libqzeitgeist
-pkgver=0.1git20110522
+pkgver=0.7.0
 pkgrel=1
 pkgdesc=A Qt interface to the Zeitgeist event tracking system
 url=https://projects.kde.org/projects/kdesupport/libqzeitgeist;
@@ -10,14 +10,14 @@
 license=('GPL')
 depends=('qt')
 makedepends=('cmake')
-source=(${pkgname}-${pkgver}.tar.bz2::'http://quickgit.kde.org/?p=libqzeitgeist.gita=snapshoth=289c66f430dfb842afd36191a0ef82a26111c403fmt=tbz2')
-md5sums=('ba7d2c347e82b0aa6ab55f3136fb9468')
+source=(http://releases.zeitgeist-project.com/qzeitgeist/QtZeitgeist-${pkgver}.tar.bz2;)
+md5sums=('e58d4b988bbab812f8bd6878d87c0956')
 
 build() {
   cd ${srcdir}
   mkdir build
   cd build
-  cmake ../${pkgname} \
+  cmake ../QtZeitgeist-${pkgver}-Source \
 -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr
   make



[arch-commits] Commit in libqzeitgeist/repos (kde-unstable-i686)

2011-05-26 Thread Andrea Scarpino
Date: Thursday, May 26, 2011 @ 06:10:53
  Author: andrea
Revision: 125365

archrelease: remove kde-unstable-i686

Deleted:
  libqzeitgeist/repos/kde-unstable-i686/



[arch-commits] Commit in libqzeitgeist/repos (kde-unstable-i686)

2011-05-26 Thread Andrea Scarpino
Date: Thursday, May 26, 2011 @ 06:11:06
  Author: andrea
Revision: 125366

archrelease: copy kde-unstable to kde-unstable-i686

Added:
  libqzeitgeist/repos/kde-unstable-i686/



[arch-commits] Commit in libqzeitgeist/repos (kde-unstable-x86_64)

2011-05-26 Thread Andrea Scarpino
Date: Thursday, May 26, 2011 @ 06:11:08
  Author: andrea
Revision: 125367

archrelease: remove kde-unstable-x86_64

Deleted:
  libqzeitgeist/repos/kde-unstable-x86_64/



[arch-commits] Commit in libqzeitgeist/repos (kde-unstable-x86_64)

2011-05-26 Thread Andrea Scarpino
Date: Thursday, May 26, 2011 @ 06:11:20
  Author: andrea
Revision: 125368

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  libqzeitgeist/repos/kde-unstable-x86_64/



[arch-commits] Commit in phonon (kde-unstable kde-unstable/PKGBUILD)

2011-05-26 Thread Andrea Scarpino
Date: Thursday, May 26, 2011 @ 06:11:37
  Author: andrea
Revision: 125369

upgpkg: phonon 4.5.55-1
enable QtZeitgeist support

Added:
  phonon/kde-unstable/
Modified:
  phonon/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2011-05-26 06:26:52 UTC (rev 125358)
+++ kde-unstable/PKGBUILD   2011-05-26 10:11:37 UTC (rev 125369)
@@ -2,31 +2,31 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=phonon
-pkgver=4.5.0
+pkgver=4.5.55
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://phonon.kde.org;
 license=('LGPL')
 pkgdesc=The multimedia framework for KDE4
-depends=('qt' 'phonon-backend' 'libpulse')
+depends=('qt' 'phonon-backend' 'libpulse' 'libqzeitgeist')
 optdepends=('pulseaudio: PulseAudio support')
 makedepends=('cmake' 'automoc4' 'pulseaudio')
-source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('32f8d388c18fde2e23dea7bb103f9713')
+source=(${pkgname}-${pkgver}.tar.bz2::http://quickgit.kde.org/?p=phonon.gita=snapshoth=37ec84753af68c4f30041d080b37f1a49a89197cfmt=tbz2;)
+#source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('ce1316c88df988320e75a2b4c3cb8804')
 
 build() {
-  cd ${srcdir}
+  cd ${srcdir}
   mkdir build
   cd build
-  cmake ../${pkgname}-${pkgver} \
+  cmake ../${pkgname} \
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_SKIP_RPATH=ON \
--DWITH_QZeitgeist=OFF
+-DCMAKE_SKIP_RPATH=ON
   make
 }
 
 package(){
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
 }



[arch-commits] Commit in phonon/repos (kde-unstable-i686)

2011-05-26 Thread Andrea Scarpino
Date: Thursday, May 26, 2011 @ 06:15:12
  Author: andrea
Revision: 125370

archrelease: copy kde-unstable to kde-unstable-i686

Added:
  phonon/repos/kde-unstable-i686/



[arch-commits] Commit in phonon/repos (kde-unstable-x86_64)

2011-05-26 Thread Andrea Scarpino
Date: Thursday, May 26, 2011 @ 06:15:24
  Author: andrea
Revision: 125371

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  phonon/repos/kde-unstable-x86_64/



[arch-commits] Commit in kdebase-runtime/kde-unstable (PKGBUILD)

2011-05-26 Thread Andrea Scarpino
Date: Thursday, May 26, 2011 @ 06:16:31
  Author: andrea
Revision: 125372

KDE 4.7beta1 - libqzeitgeist is needed by phonon now

Modified:
  kdebase-runtime/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-05-26 10:15:24 UTC (rev 125371)
+++ PKGBUILD2011-05-26 10:16:31 UTC (rev 125372)
@@ -11,7 +11,7 @@
 url='http://www.kde.org'
 license=('GPL' 'LGPL')
 depends=('kdelibs' 'ntrack' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons'
-'xorg-xauth' 'hicolor-icon-theme' 'libqzeitgeist')
+'xorg-xauth' 'hicolor-icon-theme')
 makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'xine-lib')
 optdepends=('htdig: to build the search index in khelpcenter'
 'rarian: needed by khelpcenter'



[arch-commits] Commit in (5 files)

2011-05-26 Thread Andrea Scarpino
Date: Thursday, May 26, 2011 @ 06:37:17
  Author: andrea
Revision: 125373

fix source url

Modified:
  kdeaccessibility/kde-unstable/PKGBUILD
  kdebase-runtime/kde-unstable/PKGBUILD
  kdebase-workspace/kde-unstable/PKGBUILD
  kdegraphics/kde-unstable/PKGBUILD
  kdemultimedia/kde-unstable/PKGBUILD

-+
 kdeaccessibility/kde-unstable/PKGBUILD  |2 +-
 kdebase-runtime/kde-unstable/PKGBUILD   |2 +-
 kdebase-workspace/kde-unstable/PKGBUILD |2 +-
 kdegraphics/kde-unstable/PKGBUILD   |2 +-
 kdemultimedia/kde-unstable/PKGBUILD |2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

Modified: kdeaccessibility/kde-unstable/PKGBUILD
===
--- kdeaccessibility/kde-unstable/PKGBUILD  2011-05-26 10:16:31 UTC (rev 
125372)
+++ kdeaccessibility/kde-unstable/PKGBUILD  2011-05-26 10:37:17 UTC (rev 
125373)
@@ -15,7 +15,7 @@
 license=('GPL' 'FDL')
 groups=('kde' 'kdeaccessibility')
 makedepends=('pkgconfig' 'cmake' 'automoc4' 'kdelibs' 'speech-dispatcher')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
 sha1sums=('a8d4ca99dadc9439b6a1ee91645527f954665cb1')
 
 build() {

Modified: kdebase-runtime/kde-unstable/PKGBUILD
===
--- kdebase-runtime/kde-unstable/PKGBUILD   2011-05-26 10:16:31 UTC (rev 
125372)
+++ kdebase-runtime/kde-unstable/PKGBUILD   2011-05-26 10:37:17 UTC (rev 
125373)
@@ -17,7 +17,7 @@
 'rarian: needed by khelpcenter'
 'gdb: drkonq crash handler')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
+source=(http://download.kde.org/unstable/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
 sha1sums=('5d06c11f43beb21ebf6c47d2a7addcbe710e019e')
 
 build() {

Modified: kdebase-workspace/kde-unstable/PKGBUILD
===
--- kdebase-workspace/kde-unstable/PKGBUILD 2011-05-26 10:16:31 UTC (rev 
125372)
+++ kdebase-workspace/kde-unstable/PKGBUILD 2011-05-26 10:37:17 UTC (rev 
125373)
@@ -26,7 +26,7 @@
 'etc/pam.d/kde-np'
 'etc/pam.d/kscreensaver')
 options=('emptydirs')
-source=(http://download.kde.org/stable/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;
+source=(http://download.kde.org/unstable/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;
 'kdm-zsh-profile.patch' 'kdm' 'kde.pam' 'kde-np.pam' 'kscreensaver.pam'
 'fixpath.patch' 'terminate-server.patch')
 sha1sums=('99bf68ee90c4cfa3568527a55c7c68d4247d9b13'

Modified: kdegraphics/kde-unstable/PKGBUILD
===
--- kdegraphics/kde-unstable/PKGBUILD   2011-05-26 10:16:31 UTC (rev 125372)
+++ kdegraphics/kde-unstable/PKGBUILD   2011-05-26 10:37:17 UTC (rev 125373)
@@ -12,7 +12,7 @@
 groups=('kde' 'kdegraphics')
 makedepends=('kdelibs' 'pkgconfig' 'cmake' 'automoc4' 'qimageblitz' 
'ebook-tools'
  'poppler-qt' 'libspectre' 'chmlib' 'djvulibre')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
 sha1sums=('69f191663db147cf481edd9f528fcae50c1dc2c3')
 
 build() {

Modified: kdemultimedia/kde-unstable/PKGBUILD
===
--- kdemultimedia/kde-unstable/PKGBUILD 2011-05-26 10:16:31 UTC (rev 125372)
+++ kdemultimedia/kde-unstable/PKGBUILD 2011-05-26 10:37:17 UTC (rev 125373)
@@ -18,7 +18,7 @@
 groups=('kde' 'kdemultimedia')
 makedepends=('pkgconfig' 'cmake' 'automoc4' 'kdelibs' 'tunepimp'
 'ffmpeg' 'mplayer' 'pulseaudio' 'libmusicbrainz3')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;
 'mplayerthumbs.config')
 sha1sums=('60fa25d125aa77b66fd1c1e9e043df48abf35bd4'
   'ba016fa2563c14ffcba852c62506b66bfc6ee683')



[arch-commits] Commit in kdebase-workspace/kde-unstable (PKGBUILD)

2011-05-26 Thread Andrea Scarpino
Date: Thursday, May 26, 2011 @ 08:53:42
  Author: andrea
Revision: 125374

KDE 4.7beta1 - fully disable OpenGL ES 2.0

Modified:
  kdebase-workspace/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-05-26 10:37:17 UTC (rev 125373)
+++ PKGBUILD2011-05-26 12:53:42 UTC (rev 125374)
@@ -5,7 +5,7 @@
 pkgname=kdebase-workspace
 _pkgname=kde-workspace
 pkgver=4.6.80
-pkgrel=1
+pkgrel=2
 pkgdesc=KDE Base Workspace
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -16,7 +16,7 @@
 #  but nvidia providing libgl does not depend on libxdamage
 depends=('kdepim-runtime' 'lm_sensors' 'libraw1394'  'libqalculate' 
'qimageblitz'
  'polkit-kde' 'consolekit' 'xorg-xprop' 'libxdamage' 'libxklavier' 
'libdmtx'
- 'xorg-xsetroot' 'libxcomposite' 'libxinerama' 'libgles' 
'kde-wallpapers')
+ 'xorg-xsetroot' 'libxcomposite' 'libxinerama' 'kde-wallpapers')
 makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost' 'kdebindings-python')
 replaces=('kdmtheme' 'kde-common' 'guidance-power-manager' 'policykit-kde' 
'kdebase-kinfocenter')
 conflicts=('kde-common' 'guidance-power-manager' 'policykit-kde' 
'kdebase-kinfocenter')
@@ -48,15 +48,17 @@
mkdir build
cd build
cmake ../${_pkgname}-${pkgver} \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_SKIP_RPATH=ON \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DWITH_Xmms=OFF \
-   -DWITH_Googlegadgets=OFF \
-   -DWITH_libgps=OFF \
-   -DWITH_Prison=OFF \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_Xmms=OFF \
+-DWITH_Googlegadgets=OFF \
+-DWITH_libgps=OFF \
+-DWITH_Prison=OFF \
 -DWITH_NetworkManager=OFF \
-   -DKWIN_MOBILE_EFFECTS=OFF
+-DKWIN_MOBILE_EFFECTS=OFF \
+-DWITH_OpenGLES=OFF \
+-DKWIN_BUILD_WITH_OPENGLES=OFF
make
 }
 



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 08:54:23
  Author: ibiru
Revision: 125375

silence warning

Added:
  gtk3/trunk/only_draw_resize_grip_if_its_window_exists.patch
Modified:
  gtk3/trunk/PKGBUILD

--+
 PKGBUILD |9 --
 only_draw_resize_grip_if_its_window_exists.patch |   28 +
 2 files changed, 34 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-05-26 12:53:42 UTC (rev 125374)
+++ PKGBUILD2011-05-26 12:54:23 UTC (rev 125375)
@@ -3,7 +3,7 @@
 
 pkgname=gtk3
 pkgver=3.0.10
-pkgrel=1
+pkgrel=2
 pkgdesc=The GTK+ Toolkit (v3)
 arch=('i686' 'x86_64')
 url=http://www.gtk.org/;
@@ -14,12 +14,15 @@
 backup=(etc/gtk-3.0/settings.ini)
 license=('LGPL')
 source=(http://ftp.gnome.org/pub/gnome/sources/gtk+/3.0/gtk+-${pkgver}.tar.bz2
-settings.ini)
+settings.ini
+only_draw_resize_grip_if_its_window_exists.patch)
 sha256sums=('a217ed31aed9843810eabb241239e0f2c5ca0e14bd91687cf4180b3e346abc30'
-'c214d3dcdcadda3d642112287524ab3e526ad592b70895c9f3e3733c23701621')
+'c214d3dcdcadda3d642112287524ab3e526ad592b70895c9f3e3733c23701621'
+'fa2bd8085cae6cdb4f3b8baae11d3c0b38afec2eb4503f5bacabf87aee15313a')
 
 build() {
 cd ${srcdir}/gtk+-${pkgver}
+patch -Np1 -i ${srcdir}/only_draw_resize_grip_if_its_window_exists.patch
 CXX=/bin/false ./configure --prefix=/usr \
 --sysconfdir=/etc \
 --localstatedir=/var \

Added: only_draw_resize_grip_if_its_window_exists.patch
===
--- only_draw_resize_grip_if_its_window_exists.patch
(rev 0)
+++ only_draw_resize_grip_if_its_window_exists.patch2011-05-26 12:54:23 UTC 
(rev 125375)
@@ -0,0 +1,28 @@
+From 847df205ede7f624c2bc4c4498495352cc865423 Mon Sep 17 00:00:00 2001
+From: Benjamin Otte o...@redhat.com
+Date: Mon, 23 May 2011 13:46:59 +
+Subject: window: Only draw resize grip if its window exists
+
+Don't rely on priv-resize_grip_visible as the code comment in the
+variable declaration indicates.
+This fixes warnings with GtkPlug, which can cause resize_grip_visible to
+be TRUE but grid_window to be NULL - running tests/teststatusicon
+reproduces this.
+
+This broke with 0cf31b35eb10cb5bc08048ecdc141c949efec4cc
+---
+diff --git a/gtk/gtkwindow.c b/gtk/gtkwindow.c
+index b97418a..b1caa9b 100644
+--- a/gtk/gtkwindow.c
 b/gtk/gtkwindow.c
+@@ -7304,7 +7304,7 @@ gtk_window_draw (GtkWidget *widget,
+   if (GTK_WIDGET_CLASS (gtk_window_parent_class)-draw)
+ ret = GTK_WIDGET_CLASS (gtk_window_parent_class)-draw (widget, cr);
+ 
+-  if (priv-resize_grip_visible 
++  if (priv-grip_window 
+   gtk_cairo_should_draw_window (cr, priv-grip_window))
+ {
+   GdkRectangle rect;
+--
+cgit v0.9



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 08:57:51
  Author: ibiru
Revision: 125376

archrelease: remove testing-i686

Deleted:
  gtk3/repos/testing-i686/



[arch-commits] Commit in libqzeitgeist/repos (extra-i686 kde-unstable-i686)

2011-05-26 Thread Andrea Scarpino
Date: Thursday, May 26, 2011 @ 08:58:05
  Author: andrea
Revision: 125377

db-move: moved libqzeitgeist from [kde-unstable] to [extra] (i686)

Added:
  libqzeitgeist/repos/extra-i686/
Deleted:
  libqzeitgeist/repos/kde-unstable-i686/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 08:58:05
  Author: ibiru
Revision: 125378

archrelease: copy trunk to testing-i686

Added:
  gtk3/repos/testing-i686/



[arch-commits] Commit in libqzeitgeist/repos (extra-x86_64 kde-unstable-x86_64)

2011-05-26 Thread Andrea Scarpino
Date: Thursday, May 26, 2011 @ 08:58:06
  Author: andrea
Revision: 125379

db-move: moved libqzeitgeist from [kde-unstable] to [extra] (x86_64)

Added:
  libqzeitgeist/repos/extra-x86_64/
Deleted:
  libqzeitgeist/repos/kde-unstable-x86_64/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 08:58:08
  Author: ibiru
Revision: 125380

archrelease: remove testing-x86_64

Deleted:
  gtk3/repos/testing-x86_64/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 08:58:25
  Author: ibiru
Revision: 125381

archrelease: copy trunk to testing-x86_64

Added:
  gtk3/repos/testing-x86_64/



[arch-commits] Commit in libqzeitgeist (kde-unstable trunk/PKGBUILD)

2011-05-26 Thread Andrea Scarpino
Date: Thursday, May 26, 2011 @ 09:00:34
  Author: andrea
Revision: 125382

moved to [extra] from [kde-unstable]

Added:
  libqzeitgeist/trunk/PKGBUILD
(from rev 125381, libqzeitgeist/kde-unstable/PKGBUILD)
Deleted:
  libqzeitgeist/kde-unstable/

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

Copied: libqzeitgeist/trunk/PKGBUILD (from rev 125381, 
libqzeitgeist/kde-unstable/PKGBUILD)
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2011-05-26 13:00:34 UTC (rev 125382)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libqzeitgeist
+pkgver=0.7.0
+pkgrel=1
+pkgdesc=A Qt interface to the Zeitgeist event tracking system
+url=https://projects.kde.org/projects/kdesupport/libqzeitgeist;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('qt')
+makedepends=('cmake')
+source=(http://releases.zeitgeist-project.com/qzeitgeist/QtZeitgeist-${pkgver}.tar.bz2;)
+md5sums=('e58d4b988bbab812f8bd6878d87c0956')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../QtZeitgeist-${pkgver}-Source \
+-DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}



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

2011-05-26 Thread Gaetan Bisson
Date: Thursday, May 26, 2011 @ 09:02:11
  Author: bisson
Revision: 125383

cleanup build, fix FS#24443

Modified:
  socat/trunk/PKGBUILD

--+
 PKGBUILD |   28 +++-
 1 file changed, 15 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-05-26 13:00:34 UTC (rev 125382)
+++ PKGBUILD2011-05-26 13:02:11 UTC (rev 125383)
@@ -1,29 +1,31 @@
 # $Id$
-# Maintainer:
+# Maintainer: Gaetan Bisson bis...@archlinux.org
 # Contributor: Juergen Hoetzel juer...@archlinux.org
 # Contributor: John Proctor jproc...@prium.net
 
 pkgname=socat
 pkgver=1.7.1.3
-pkgrel=1
-pkgdesc='Relay for bidirectional data transfer via socket, pty, pipe, file and 
more'
+pkgrel=2
+pkgdesc='Multipurpose relay'
+url='http://www.dest-unreach.org/socat/'
+license=('GPL2')
 arch=('i686' 'x86_64')
-license=('GPL2')
-url='http://www.dest-unreach.org/socat/'
 depends=('readline' 'openssl' 'tcp_wrappers')
-makedepends=('imake')
 source=(http://www.dest-unreach.org/socat/download/$pkgname-$pkgver.tar.gz;)
 sha1sums=('5a42275da0d8a5182452b36535a74c3cdf21793b')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr \
---mandir=/usr/share/man
-  make depend || return 1
-  make || return 1
+   cd $srcdir/$pkgname-$pkgver
+
+   ./configure \
+   --prefix=/usr \
+   --mandir=/usr/share/man \
+
+   make
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install || return 1
+   cd $srcdir/$pkgname-$pkgver
+
+   make DESTDIR=$pkgdir install
 }



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

2011-05-26 Thread Gaetan Bisson
Date: Thursday, May 26, 2011 @ 09:02:28
  Author: bisson
Revision: 125385

archrelease: copy trunk to extra-i686

Added:
  socat/repos/extra-i686/



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

2011-05-26 Thread Gaetan Bisson
Date: Thursday, May 26, 2011 @ 09:02:30
  Author: bisson
Revision: 125386

archrelease: remove extra-x86_64

Deleted:
  socat/repos/extra-x86_64/



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

2011-05-26 Thread Gaetan Bisson
Date: Thursday, May 26, 2011 @ 09:02:37
  Author: bisson
Revision: 125387

archrelease: copy trunk to extra-x86_64

Added:
  socat/repos/extra-x86_64/



[arch-commits] Commit in kdebase-workspace/repos (kde-unstable-i686)

2011-05-26 Thread Andrea Scarpino
Date: Thursday, May 26, 2011 @ 09:25:02
  Author: andrea
Revision: 125388

archrelease: remove kde-unstable-i686

Deleted:
  kdebase-workspace/repos/kde-unstable-i686/



[arch-commits] Commit in kdebase-workspace/repos (kde-unstable-x86_64)

2011-05-26 Thread Andrea Scarpino
Date: Thursday, May 26, 2011 @ 09:25:36
  Author: andrea
Revision: 125391

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kdebase-workspace/repos/kde-unstable-x86_64/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:25:56
  Author: ibiru
Revision: 125393

db-move: moved accountsservice from [testing] to [extra] (i686)

Added:
  accountsservice/repos/extra-i686/
Deleted:
  accountsservice/repos/testing-i686/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:25:57
  Author: ibiru
Revision: 125395

db-move: moved accountsservice from [testing] to [extra] (x86_64)

Added:
  accountsservice/repos/extra-x86_64/
Deleted:
  accountsservice/repos/testing-x86_64/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:25:59
  Author: ibiru
Revision: 125396

db-move: anjuta removed by ibiru for move to [extra] (i686)

Deleted:
  anjuta/repos/extra-i686/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:25:57
  Author: ibiru
Revision: 125394

db-move: accountsservice removed by ibiru for move to [extra] (x86_64)

Deleted:
  accountsservice/repos/extra-x86_64/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:02
  Author: ibiru
Revision: 125397

db-move: moved anjuta from [testing] to [extra] (i686)

Added:
  anjuta/repos/extra-i686/
Deleted:
  anjuta/repos/testing-i686/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:03
  Author: ibiru
Revision: 125398

db-move: anjuta removed by ibiru for move to [extra] (x86_64)

Deleted:
  anjuta/repos/extra-x86_64/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:04
  Author: ibiru
Revision: 125400

db-move: empathy removed by ibiru for move to [extra] (i686)

Deleted:
  empathy/repos/extra-i686/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:04
  Author: ibiru
Revision: 125399

db-move: moved anjuta from [testing] to [extra] (x86_64)

Added:
  anjuta/repos/extra-x86_64/
Deleted:
  anjuta/repos/testing-x86_64/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:05
  Author: ibiru
Revision: 125401

db-move: moved empathy from [testing] to [extra] (i686)

Added:
  empathy/repos/extra-i686/
Deleted:
  empathy/repos/testing-i686/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:06
  Author: ibiru
Revision: 125402

db-move: empathy removed by ibiru for move to [extra] (x86_64)

Deleted:
  empathy/repos/extra-x86_64/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:06
  Author: ibiru
Revision: 125403

db-move: moved empathy from [testing] to [extra] (x86_64)

Added:
  empathy/repos/extra-x86_64/
Deleted:
  empathy/repos/testing-x86_64/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:08
  Author: ibiru
Revision: 125404

db-move: eog removed by ibiru for move to [extra] (i686)

Deleted:
  eog/repos/extra-i686/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:09
  Author: ibiru
Revision: 125406

db-move: eog removed by ibiru for move to [extra] (x86_64)

Deleted:
  eog/repos/extra-x86_64/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:10
  Author: ibiru
Revision: 125407

db-move: moved eog from [testing] to [extra] (x86_64)

Added:
  eog/repos/extra-x86_64/
Deleted:
  eog/repos/testing-x86_64/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:08
  Author: ibiru
Revision: 125405

db-move: moved eog from [testing] to [extra] (i686)

Added:
  eog/repos/extra-i686/
Deleted:
  eog/repos/testing-i686/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:11
  Author: ibiru
Revision: 125408

db-move: evince removed by ibiru for move to [extra] (i686)

Deleted:
  evince/repos/extra-i686/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:12
  Author: ibiru
Revision: 125409

db-move: moved evince from [testing] to [extra] (i686)

Added:
  evince/repos/extra-i686/
Deleted:
  evince/repos/testing-i686/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:13
  Author: ibiru
Revision: 125410

db-move: evince removed by ibiru for move to [extra] (x86_64)

Deleted:
  evince/repos/extra-x86_64/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:15
  Author: ibiru
Revision: 125412

db-move: evolution removed by ibiru for move to [extra] (i686)

Deleted:
  evolution/repos/extra-i686/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:14
  Author: ibiru
Revision: 125411

db-move: moved evince from [testing] to [extra] (x86_64)

Added:
  evince/repos/extra-x86_64/
Deleted:
  evince/repos/testing-x86_64/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:15
  Author: ibiru
Revision: 125413

db-move: moved evolution from [testing] to [extra] (i686)

Added:
  evolution/repos/extra-i686/
Deleted:
  evolution/repos/testing-i686/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:16
  Author: ibiru
Revision: 125414

db-move: evolution removed by ibiru for move to [extra] (x86_64)

Deleted:
  evolution/repos/extra-x86_64/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:17
  Author: ibiru
Revision: 125415

db-move: moved evolution from [testing] to [extra] (x86_64)

Added:
  evolution/repos/extra-x86_64/
Deleted:
  evolution/repos/testing-x86_64/



[arch-commits] Commit in evolution-data-server/repos (extra-i686)

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:18
  Author: ibiru
Revision: 125416

db-move: evolution-data-server removed by ibiru for move to [extra] (i686)

Deleted:
  evolution-data-server/repos/extra-i686/



[arch-commits] Commit in evolution-data-server/repos (extra-i686 testing-i686)

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:19
  Author: ibiru
Revision: 125417

db-move: moved evolution-data-server from [testing] to [extra] (i686)

Added:
  evolution-data-server/repos/extra-i686/
Deleted:
  evolution-data-server/repos/testing-i686/



[arch-commits] Commit in evolution-data-server/repos (extra-x86_64)

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:20
  Author: ibiru
Revision: 125418

db-move: evolution-data-server removed by ibiru for move to [extra] (x86_64)

Deleted:
  evolution-data-server/repos/extra-x86_64/



[arch-commits] Commit in evolution-data-server/repos (extra-x86_64 testing-x86_64)

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:21
  Author: ibiru
Revision: 125419

db-move: moved evolution-data-server from [testing] to [extra] (x86_64)

Added:
  evolution-data-server/repos/extra-x86_64/
Deleted:
  evolution-data-server/repos/testing-x86_64/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:22
  Author: ibiru
Revision: 125420

db-move: evolution-exchange removed by ibiru for move to [extra] (i686)

Deleted:
  evolution-exchange/repos/extra-i686/



[arch-commits] Commit in evolution-exchange/repos (extra-i686 testing-i686)

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:23
  Author: ibiru
Revision: 125421

db-move: moved evolution-exchange from [testing] to [extra] (i686)

Added:
  evolution-exchange/repos/extra-i686/
Deleted:
  evolution-exchange/repos/testing-i686/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:24
  Author: ibiru
Revision: 125422

db-move: evolution-exchange removed by ibiru for move to [extra] (x86_64)

Deleted:
  evolution-exchange/repos/extra-x86_64/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:26:26
  Author: ibiru
Revision: 125424

db-move: file-roller removed by ibiru for move to [extra] (i686)

Deleted:
  file-roller/repos/extra-i686/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:24
  Author: ibiru
Revision: 125445

db-move: moved gnome-backgrounds from [testing] to [extra] (any)

Added:
  gnome-backgrounds/repos/extra-any/
Deleted:
  gnome-backgrounds/repos/testing-any/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:27
  Author: ibiru
Revision: 125446

db-move: gnome-control-center removed by ibiru for move to [extra] (i686)

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



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:31
  Author: ibiru
Revision: 125448

db-move: gnome-control-center removed by ibiru for move to [extra] (x86_64)

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



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:29
  Author: ibiru
Revision: 125447

db-move: moved gnome-control-center from [testing] to [extra] (i686)

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



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:33
  Author: ibiru
Revision: 125449

db-move: moved gnome-control-center from [testing] to [extra] (x86_64)

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



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:36
  Author: ibiru
Revision: 125450

db-move: gnome-desktop removed by ibiru for move to [extra] (i686)

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



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:39
  Author: ibiru
Revision: 125451

db-move: moved gnome-desktop from [testing] to [extra] (i686)

Added:
  gnome-desktop/repos/extra-i686/
Deleted:
  gnome-desktop/repos/testing-i686/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:40
  Author: ibiru
Revision: 125452

db-move: gnome-desktop removed by ibiru for move to [extra] (x86_64)

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



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:41
  Author: ibiru
Revision: 125453

db-move: moved gnome-desktop from [testing] to [extra] (x86_64)

Added:
  gnome-desktop/repos/extra-x86_64/
Deleted:
  gnome-desktop/repos/testing-x86_64/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:41
  Author: ibiru
Revision: 125454

db-move: gnome-games removed by ibiru for move to [extra] (i686)

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



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:42
  Author: ibiru
Revision: 125455

db-move: moved gnome-games from [testing] to [extra] (i686)

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



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:43
  Author: ibiru
Revision: 125456

db-move: gnome-games removed by ibiru for move to [extra] (x86_64)

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



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:44
  Author: ibiru
Revision: 125457

db-move: moved gnome-games from [testing] to [extra] (x86_64)

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



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:45
  Author: ibiru
Revision: 125458

db-move: gnome-panel removed by ibiru for move to [extra] (i686)

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



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:45
  Author: ibiru
Revision: 125459

db-move: moved gnome-panel from [testing] to [extra] (i686)

Added:
  gnome-panel/repos/extra-i686/
Deleted:
  gnome-panel/repos/testing-i686/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:46
  Author: ibiru
Revision: 125460

db-move: gnome-panel removed by ibiru for move to [extra] (x86_64)

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



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:47
  Author: ibiru
Revision: 125461

db-move: moved gnome-panel from [testing] to [extra] (x86_64)

Added:
  gnome-panel/repos/extra-x86_64/
Deleted:
  gnome-panel/repos/testing-x86_64/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:48
  Author: ibiru
Revision: 125462

db-move: gnome-power-manager removed by ibiru for move to [extra] (i686)

Deleted:
  gnome-power-manager/repos/extra-i686/



[arch-commits] Commit in gnome-power-manager/repos (extra-i686 testing-i686)

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:49
  Author: ibiru
Revision: 125463

db-move: moved gnome-power-manager from [testing] to [extra] (i686)

Added:
  gnome-power-manager/repos/extra-i686/
Deleted:
  gnome-power-manager/repos/testing-i686/



[arch-commits] Commit in gnome-power-manager/repos (extra-x86_64 testing-x86_64)

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:50
  Author: ibiru
Revision: 125465

db-move: moved gnome-power-manager from [testing] to [extra] (x86_64)

Added:
  gnome-power-manager/repos/extra-x86_64/
Deleted:
  gnome-power-manager/repos/testing-x86_64/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:49
  Author: ibiru
Revision: 125464

db-move: gnome-power-manager removed by ibiru for move to [extra] (x86_64)

Deleted:
  gnome-power-manager/repos/extra-x86_64/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:51
  Author: ibiru
Revision: 125466

db-move: gnome-session removed by ibiru for move to [extra] (i686)

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



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:53
  Author: ibiru
Revision: 125468

db-move: gnome-session removed by ibiru for move to [extra] (x86_64)

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



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:52
  Author: ibiru
Revision: 125467

db-move: moved gnome-session from [testing] to [extra] (i686)

Added:
  gnome-session/repos/extra-i686/
Deleted:
  gnome-session/repos/testing-i686/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:54
  Author: ibiru
Revision: 125469

db-move: moved gnome-session from [testing] to [extra] (x86_64)

Added:
  gnome-session/repos/extra-x86_64/
Deleted:
  gnome-session/repos/testing-x86_64/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:54
  Author: ibiru
Revision: 125470

db-move: gnome-settings-daemon removed by ibiru for move to [extra] (i686)

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



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:55
  Author: ibiru
Revision: 125471

db-move: moved gnome-settings-daemon from [testing] to [extra] (i686)

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



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:56
  Author: ibiru
Revision: 125472

db-move: gnome-settings-daemon removed by ibiru for move to [extra] (x86_64)

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



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:57
  Author: ibiru
Revision: 125473

db-move: moved gnome-settings-daemon from [testing] to [extra] (x86_64)

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



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:59
  Author: ibiru
Revision: 125475

db-move: moved gnome-shell from [testing] to [extra] (i686)

Added:
  gnome-shell/repos/extra-i686/
Deleted:
  gnome-shell/repos/testing-i686/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:27:58
  Author: ibiru
Revision: 125474

db-move: gnome-shell removed by ibiru for move to [extra] (i686)

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



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:28:01
  Author: ibiru
Revision: 125478

db-move: gnome-shell-extensions removed by ibiru for move to [extra] (any)

Deleted:
  gnome-shell-extensions/repos/extra-any/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:28:00
  Author: ibiru
Revision: 125476

db-move: gnome-shell removed by ibiru for move to [extra] (x86_64)

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



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:28:00
  Author: ibiru
Revision: 125477

db-move: moved gnome-shell from [testing] to [extra] (x86_64)

Added:
  gnome-shell/repos/extra-x86_64/
Deleted:
  gnome-shell/repos/testing-x86_64/



[arch-commits] Commit in gnome-shell-extensions/repos (extra-any testing-any)

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:28:02
  Author: ibiru
Revision: 125479

db-move: moved gnome-shell-extensions from [testing] to [extra] (any)

Added:
  gnome-shell-extensions/repos/extra-any/
Deleted:
  gnome-shell-extensions/repos/testing-any/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:28:03
  Author: ibiru
Revision: 125480

db-move: gnome-system-monitor removed by ibiru for move to [extra] (i686)

Deleted:
  gnome-system-monitor/repos/extra-i686/



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

2011-05-26 Thread Ionut Biru
Date: Thursday, May 26, 2011 @ 09:28:05
  Author: ibiru
Revision: 125482

db-move: gnome-system-monitor removed by ibiru for move to [extra] (x86_64)

Deleted:
  gnome-system-monitor/repos/extra-x86_64/



  1   2   3   >