[arch-commits] Commit in xfdesktop/repos/extra-i686 (8 files)

2012-11-05 Thread Evangelos Foutras
Date: Monday, November 5, 2012 @ 17:40:35
  Author: foutrelis
Revision: 170240

archrelease: copy trunk to extra-i686

Added:
  xfdesktop/repos/extra-i686/PKGBUILD
(from rev 170239, xfdesktop/trunk/PKGBUILD)
  xfdesktop/repos/extra-i686/add-backgrounds-xfce-to-search-path.patch
(from rev 170239, xfdesktop/trunk/add-backgrounds-xfce-to-search-path.patch)
  xfdesktop/repos/extra-i686/avoid-duplicating-volume-icons.patch
(from rev 170239, xfdesktop/trunk/avoid-duplicating-volume-icons.patch)
  xfdesktop/repos/extra-i686/xfdesktop.install
(from rev 170239, xfdesktop/trunk/xfdesktop.install)
Deleted:
  xfdesktop/repos/extra-i686/PKGBUILD
  xfdesktop/repos/extra-i686/add-backgrounds-xfce-to-search-path.patch
  xfdesktop/repos/extra-i686/implement-paste-on-desktop.patch
  xfdesktop/repos/extra-i686/xfdesktop.install

---+
 PKGBUILD  |  104 ++--
 add-backgrounds-xfce-to-search-path.patch |   72 
 avoid-duplicating-volume-icons.patch  |   29 +++
 implement-paste-on-desktop.patch  |  236 
 xfdesktop.install |   26 +--
 5 files changed, 133 insertions(+), 334 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-11-05 22:39:18 UTC (rev 170239)
+++ PKGBUILD2012-11-05 22:40:35 UTC (rev 170240)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras evange...@foutrelis.com
-# Contributor: tobias tobias funnychar archlinux.org
-
-pkgname=xfdesktop
-pkgver=4.10.0
-pkgrel=3
-pkgdesc=A desktop manager for Xfce
-arch=('i686' 'x86_64')
-url=http://www.xfce.org/;
-license=('GPL2')
-groups=('xfce4')
-depends=('libxfce4ui' 'thunar' 'garcon' 'hicolor-icon-theme' 'libwnck')
-makedepends=('intltool')
-conflicts=('xfce4-menueditor')
-replaces=('xfce4-menueditor')
-options=('!libtool')
-install=xfdesktop.install
-source=(http://archive.xfce.org/src/xfce/$pkgname/4.10/$pkgname-$pkgver.tar.bz2
-add-backgrounds-xfce-to-search-path.patch)
-sha256sums=('897ae6ee435dcc89809ad70c15c5d15347d1cf4fc8033238b17dcc47836c2d7b'
-'fcb27e24abfd50cfe01ae946a2bc5a133d3f5cee076eef517ccc5f668dd5')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  # Add backgrounds/xfce/ to the single image list in the settings app
-  # https://bugzilla.xfce.org/show_bug.cgi?id=8799
-  patch -Np1 -i $srcdir/add-backgrounds-xfce-to-search-path.patch
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---localstatedir=/var \
---disable-static \
---enable-gio-unix \
---enable-thunarx \
---enable-notifications \
---disable-debug
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfdesktop/repos/extra-i686/PKGBUILD (from rev 170239, 
xfdesktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-11-05 22:40:35 UTC (rev 170240)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+# Contributor: tobias tobias funnychar archlinux.org
+
+pkgname=xfdesktop
+pkgver=4.10.0
+pkgrel=4
+pkgdesc=A desktop manager for Xfce
+arch=('i686' 'x86_64')
+url=http://www.xfce.org/;
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4ui' 'thunar' 'garcon' 'hicolor-icon-theme' 'libwnck')
+makedepends=('intltool')
+conflicts=('xfce4-menueditor')
+replaces=('xfce4-menueditor')
+options=('!libtool')
+install=xfdesktop.install
+source=(http://archive.xfce.org/src/xfce/$pkgname/4.10/$pkgname-$pkgver.tar.bz2
+add-backgrounds-xfce-to-search-path.patch
+avoid-duplicating-volume-icons.patch)
+sha256sums=('897ae6ee435dcc89809ad70c15c5d15347d1cf4fc8033238b17dcc47836c2d7b'
+'fcb27e24abfd50cfe01ae946a2bc5a133d3f5cee076eef517ccc5f668dd5'
+'f2ad30fe8fed9e2f5a65c214f03b65353527d285a4ea0ec22a1feac5c452446b')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # Add backgrounds/xfce/ to the single image list in the settings app
+  # https://bugzilla.xfce.org/show_bug.cgi?id=8799
+  patch -Np1 -i $srcdir/add-backgrounds-xfce-to-search-path.patch
+
+  # Workaround for GVFS 1.14.0 which emits volume-added signals for
+  # pre-existing volumes.
+  patch -Np1 -i $srcdir/avoid-duplicating-volume-icons.patch
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-static \
+--enable-gio-unix \
+--enable-thunarx \
+--enable-notifications \
+--disable-debug
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: add-backgrounds-xfce-to-search-path.patch
===
--- add-backgrounds-xfce-to-search-path.patch   2012-11-05 

[arch-commits] Commit in xfdesktop/repos/extra-i686 (8 files)

2012-05-01 Thread Evangelos Foutras
Date: Tuesday, May 1, 2012 @ 15:55:17
  Author: foutrelis
Revision: 158047

archrelease: copy trunk to extra-i686

Added:
  xfdesktop/repos/extra-i686/PKGBUILD
(from rev 158046, xfdesktop/trunk/PKGBUILD)
  xfdesktop/repos/extra-i686/add-backgrounds-xfce-to-search-path.patch
(from rev 158046, xfdesktop/trunk/add-backgrounds-xfce-to-search-path.patch)
  xfdesktop/repos/extra-i686/implement-paste-on-desktop.patch
(from rev 158046, xfdesktop/trunk/implement-paste-on-desktop.patch)
  xfdesktop/repos/extra-i686/xfdesktop.install
(from rev 158046, xfdesktop/trunk/xfdesktop.install)
Deleted:
  xfdesktop/repos/extra-i686/PKGBUILD
  xfdesktop/repos/extra-i686/add-backgrounds-xfce-to-search-path.patch
  xfdesktop/repos/extra-i686/implement-paste-on-desktop.patch
  xfdesktop/repos/extra-i686/xfdesktop.install

---+
 PKGBUILD  |   99 ++---
 add-backgrounds-xfce-to-search-path.patch |   72 ++--
 implement-paste-on-desktop.patch  |  472 ++--
 xfdesktop.install |   26 -
 4 files changed, 334 insertions(+), 335 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-05-01 19:51:23 UTC (rev 158046)
+++ PKGBUILD2012-05-01 19:55:17 UTC (rev 158047)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras evange...@foutrelis.com
-# Contributor: tobias tobias funnychar archlinux.org
-
-pkgname=xfdesktop
-pkgver=4.10.0
-pkgrel=2
-pkgdesc=A desktop manager for Xfce
-arch=('i686' 'x86_64')
-url=http://www.xfce.org/;
-license=('GPL2')
-groups=('xfce4')
-depends=('libxfce4ui' 'thunar' 'garcon' 'hicolor-icon-theme' 'libwnck')
-makedepends=('intltool' 'xfce4-panel')
-optdepends=('xfce4-panel: panel menu plugin')
-conflicts=('xfce4-menueditor')
-replaces=('xfce4-menueditor')
-options=('!libtool')
-install=xfdesktop.install
-source=(http://archive.xfce.org/src/xfce/$pkgname/4.10/$pkgname-$pkgver.tar.bz2
-add-backgrounds-xfce-to-search-path.patch)
-sha256sums=('897ae6ee435dcc89809ad70c15c5d15347d1cf4fc8033238b17dcc47836c2d7b'
-'fcb27e24abfd50cfe01ae946a2bc5a133d3f5cee076eef517ccc5f668dd5')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  # Add backgrounds/xfce/ to the single image list in the settings app
-  # https://bugzilla.xfce.org/show_bug.cgi?id=8799
-  patch -Np1 -i $srcdir/add-backgrounds-xfce-to-search-path.patch
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---localstatedir=/var \
---disable-static \
---enable-gio-unix \
---enable-thunarx \
---enable-notifications \
---disable-debug
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfdesktop/repos/extra-i686/PKGBUILD (from rev 158046, 
xfdesktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-05-01 19:55:17 UTC (rev 158047)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+# Contributor: tobias tobias funnychar archlinux.org
+
+pkgname=xfdesktop
+pkgver=4.10.0
+pkgrel=3
+pkgdesc=A desktop manager for Xfce
+arch=('i686' 'x86_64')
+url=http://www.xfce.org/;
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4ui' 'thunar' 'garcon' 'hicolor-icon-theme' 'libwnck')
+makedepends=('intltool')
+conflicts=('xfce4-menueditor')
+replaces=('xfce4-menueditor')
+options=('!libtool')
+install=xfdesktop.install
+source=(http://archive.xfce.org/src/xfce/$pkgname/4.10/$pkgname-$pkgver.tar.bz2
+add-backgrounds-xfce-to-search-path.patch)
+sha256sums=('897ae6ee435dcc89809ad70c15c5d15347d1cf4fc8033238b17dcc47836c2d7b'
+'fcb27e24abfd50cfe01ae946a2bc5a133d3f5cee076eef517ccc5f668dd5')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # Add backgrounds/xfce/ to the single image list in the settings app
+  # https://bugzilla.xfce.org/show_bug.cgi?id=8799
+  patch -Np1 -i $srcdir/add-backgrounds-xfce-to-search-path.patch
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-static \
+--enable-gio-unix \
+--enable-thunarx \
+--enable-notifications \
+--disable-debug
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: add-backgrounds-xfce-to-search-path.patch
===
--- add-backgrounds-xfce-to-search-path.patch   2012-05-01 19:51:23 UTC (rev 
158046)
+++ add-backgrounds-xfce-to-search-path.patch   2012-05-01 19:55:17 UTC (rev 
158047)
@@ -1,36 +0,0 @@
-@@ -, +, @@ 
- settings app. (Bug #8799)

- settings/main.c |   14 ++
- 1 file changed, 14 insertions(+)
 a/settings/main.c  
-+++ a/settings/main.c  
-@@ 

[arch-commits] Commit in xfdesktop/repos/extra-i686 (4 files)

2011-08-20 Thread Tobias Powalowski
Date: Saturday, August 20, 2011 @ 02:30:19
  Author: tpowa
Revision: 135899

archrelease: copy trunk to extra-i686

Added:
  xfdesktop/repos/extra-i686/PKGBUILD
(from rev 135898, xfdesktop/trunk/PKGBUILD)
  xfdesktop/repos/extra-i686/xfdesktop.install
(from rev 135898, xfdesktop/trunk/xfdesktop.install)
Deleted:
  xfdesktop/repos/extra-i686/PKGBUILD
  xfdesktop/repos/extra-i686/xfdesktop.install

---+
 PKGBUILD  |   85 ++--
 xfdesktop.install |   22 ++---
 2 files changed, 55 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-20 06:29:49 UTC (rev 135898)
+++ PKGBUILD2011-08-20 06:30:19 UTC (rev 135899)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-# Contributor: tobias tobias funnychar archlinux.org
-
-pkgname=xfdesktop
-pkgver=4.8.2
-pkgrel=2
-pkgdesc=A desktop manager for Xfce
-arch=('i686' 'x86_64')
-license=('GPL2')
-url=http://www.xfce.org/;
-groups=('xfce4')
-depends=('libxfce4ui' 'thunar=1.2.0' 'garcon' 'hicolor-icon-theme' 
'libwnck=2.30.0')
-makedepends=('intltool' 'xfce4-panel=4.8.0')
-optdepends=('xfce4-panel: panel menu plugin')
-conflicts=('xfce4-menueditor')
-replaces=('xfce4-menueditor')
-options=('!libtool')
-install=xfdesktop.install
-source=(http://archive.xfce.org/src/xfce/${pkgname}/4.8/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('ed25d59f478afda552d121e96657d16f')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
-   --sysconfdir=/etc \
-   --libexecdir=/usr/lib \
-   --localstatedir=/var \
-   --disable-static \
-   --enable-gio-unix \
-   --enable-thunarx \
-   --enable-exo \
-   --enable-notifications \
-   --disable-debug
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: xfdesktop/repos/extra-i686/PKGBUILD (from rev 135898, 
xfdesktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-20 06:30:19 UTC (rev 135899)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+# Contributor: tobias tobias funnychar archlinux.org
+
+pkgname=xfdesktop
+pkgver=4.8.2
+pkgrel=3
+pkgdesc=A desktop manager for Xfce
+arch=('i686' 'x86_64')
+license=('GPL2')
+url=http://www.xfce.org/;
+groups=('xfce4')
+depends=('libxfce4ui' 'thunar=1.2.0' 'garcon' 'hicolor-icon-theme' 
'libwnck=2.30.0')
+makedepends=('intltool' 'xfce4-panel=4.8.0')
+optdepends=('xfce4-panel: panel menu plugin')
+conflicts=('xfce4-menueditor')
+replaces=('xfce4-menueditor')
+options=('!libtool')
+install=xfdesktop.install
+source=(http://archive.xfce.org/src/xfce/${pkgname}/4.8/${pkgname}-${pkgver}.tar.bz2
+fix-desktop-drag-and-drop.patch)
+md5sums=('ed25d59f478afda552d121e96657d16f'
+ '86d464bcd8ffae9f048454f49603658a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ../fix-desktop-drag-and-drop.patch
+  ./configure --prefix=/usr \
+   --sysconfdir=/etc \
+   --libexecdir=/usr/lib \
+   --localstatedir=/var \
+   --disable-static \
+   --enable-gio-unix \
+   --enable-thunarx \
+   --enable-exo \
+   --enable-notifications \
+   --disable-debug
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: xfdesktop.install
===
--- xfdesktop.install   2011-08-20 06:29:49 UTC (rev 135898)
+++ xfdesktop.install   2011-08-20 06:30:19 UTC (rev 135899)
@@ -1,11 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}

Copied: xfdesktop/repos/extra-i686/xfdesktop.install (from rev 135898, 
xfdesktop/trunk/xfdesktop.install)
===
--- xfdesktop.install   (rev 0)
+++ xfdesktop.install   2011-08-20 06:30:19 UTC (rev 135899)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}



[arch-commits] Commit in xfdesktop/repos/extra-i686 (5 files)

2011-08-20 Thread Eric BĂ©langer
Date: Saturday, August 20, 2011 @ 17:31:40
  Author: eric
Revision: 135950

archrelease: copy trunk to extra-i686

Added:
  xfdesktop/repos/extra-i686/PKGBUILD
(from rev 135949, xfdesktop/trunk/PKGBUILD)
  xfdesktop/repos/extra-i686/fix-desktop-drag-and-drop.patch
(from rev 135949, xfdesktop/trunk/fix-desktop-drag-and-drop.patch)
  xfdesktop/repos/extra-i686/xfdesktop.install
(from rev 135949, xfdesktop/trunk/xfdesktop.install)
Deleted:
  xfdesktop/repos/extra-i686/PKGBUILD
  xfdesktop/repos/extra-i686/xfdesktop.install

-+
 PKGBUILD|   88 +++---
 fix-desktop-drag-and-drop.patch |   57 
 xfdesktop.install   |   22 -
 3 files changed, 112 insertions(+), 55 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-20 21:30:39 UTC (rev 135949)
+++ PKGBUILD2011-08-20 21:31:40 UTC (rev 135950)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-# Contributor: tobias tobias funnychar archlinux.org
-
-pkgname=xfdesktop
-pkgver=4.8.2
-pkgrel=3
-pkgdesc=A desktop manager for Xfce
-arch=('i686' 'x86_64')
-license=('GPL2')
-url=http://www.xfce.org/;
-groups=('xfce4')
-depends=('libxfce4ui' 'thunar=1.2.0' 'garcon' 'hicolor-icon-theme' 
'libwnck=2.30.0')
-makedepends=('intltool' 'xfce4-panel=4.8.0')
-optdepends=('xfce4-panel: panel menu plugin')
-conflicts=('xfce4-menueditor')
-replaces=('xfce4-menueditor')
-options=('!libtool')
-install=xfdesktop.install
-source=(http://archive.xfce.org/src/xfce/${pkgname}/4.8/${pkgname}-${pkgver}.tar.bz2
-fix-desktop-drag-and-drop.patch)
-md5sums=('ed25d59f478afda552d121e96657d16f'
- '86d464bcd8ffae9f048454f49603658a')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -Np1 -i ../fix-desktop-drag-and-drop.patch
-  ./configure --prefix=/usr \
-   --sysconfdir=/etc \
-   --libexecdir=/usr/lib \
-   --localstatedir=/var \
-   --disable-static \
-   --enable-gio-unix \
-   --enable-thunarx \
-   --enable-exo \
-   --enable-notifications \
-   --disable-debug
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: xfdesktop/repos/extra-i686/PKGBUILD (from rev 135949, 
xfdesktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-20 21:31:40 UTC (rev 135950)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+# Contributor: tobias tobias funnychar archlinux.org
+
+pkgname=xfdesktop
+pkgver=4.8.2
+pkgrel=3
+pkgdesc=A desktop manager for Xfce
+arch=('i686' 'x86_64')
+license=('GPL2')
+url=http://www.xfce.org/;
+groups=('xfce4')
+depends=('libxfce4ui' 'thunar=1.2.0' 'garcon' 'hicolor-icon-theme' 
'libwnck=2.30.0')
+makedepends=('intltool' 'xfce4-panel=4.8.0')
+optdepends=('xfce4-panel: panel menu plugin')
+conflicts=('xfce4-menueditor')
+replaces=('xfce4-menueditor')
+options=('!libtool')
+install=xfdesktop.install
+source=(http://archive.xfce.org/src/xfce/${pkgname}/4.8/${pkgname}-${pkgver}.tar.bz2
+fix-desktop-drag-and-drop.patch)
+md5sums=('ed25d59f478afda552d121e96657d16f'
+ '86d464bcd8ffae9f048454f49603658a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ../fix-desktop-drag-and-drop.patch
+  ./configure --prefix=/usr \
+   --sysconfdir=/etc \
+   --libexecdir=/usr/lib \
+   --localstatedir=/var \
+   --disable-static \
+   --enable-gio-unix \
+   --enable-thunarx \
+   --enable-exo \
+   --enable-notifications \
+   --disable-debug
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: xfdesktop/repos/extra-i686/fix-desktop-drag-and-drop.patch (from rev 
135949, xfdesktop/trunk/fix-desktop-drag-and-drop.patch)
===
--- fix-desktop-drag-and-drop.patch (rev 0)
+++ fix-desktop-drag-and-drop.patch 2011-08-20 21:31:40 UTC (rev 135950)
@@ -0,0 +1,57 @@
+diff --git a/src/xfdesktop-file-icon-manager.c 
b/src/xfdesktop-file-icon-manager.c
+index 2711646..d3ca2eb 100644
+--- a/src/xfdesktop-file-icon-manager.c
 b/src/xfdesktop-file-icon-manager.c
+@@ -2794,7 +2794,7 @@ 
xfdesktop_file_icon_manager_drag_data_received(XfdesktopIconViewManager *manager
+ GFile *tfile = NULL;
+ gboolean copy_only = TRUE, drop_ok = FALSE;
+ GList *file_list;
+-
++
+ if(info == TARGET_XDND_DIRECT_SAVE0) {
+ /* we don't suppose XdndDirectSave stage 3, result F, i.e., the app
+  * has to save the data itself given the filename we provided in
+@@ -2816,7 +2816,7 @@ 
xfdesktop_file_icon_manager_drag_data_received(XfdesktopIconViewManager *manager
+ /* data is URL\nTITLE */
+ GFile 

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

2011-05-29 Thread andyrtr
Date: Sunday, May 29, 2011 @ 12:59:16
  Author: andyrtr
Revision: 125790

archrelease: remove extra-i686

Deleted:
  xfdesktop/repos/extra-i686/



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

2011-05-29 Thread andyrtr
Date: Sunday, May 29, 2011 @ 12:59:32
  Author: andyrtr
Revision: 125791

archrelease: copy trunk to extra-i686

Added:
  xfdesktop/repos/extra-i686/



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

2011-04-22 Thread andyrtr
Date: Friday, April 22, 2011 @ 14:39:38
  Author: andyrtr
Revision: 120364

archrelease: remove extra-i686

Deleted:
  xfdesktop/repos/extra-i686/



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

2011-01-30 Thread andyrtr
Date: Sunday, January 30, 2011 @ 16:14:55
  Author: andyrtr
Revision: 108371

archrelease: remove extra-i686

Deleted:
  xfdesktop/repos/extra-i686/



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

2011-01-30 Thread andyrtr
Date: Sunday, January 30, 2011 @ 16:15:17
  Author: andyrtr
Revision: 108372

archrelease: copy trunk to extra-i686

Added:
  xfdesktop/repos/extra-i686/



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

2011-01-17 Thread andyrtr
Date: Monday, January 17, 2011 @ 13:01:06
  Author: andyrtr
Revision: 106533

db-move: xfdesktop removed by andyrtr for move to [extra] (i686)

Deleted:
  xfdesktop/repos/extra-i686/



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

2011-01-17 Thread andyrtr
Date: Monday, January 17, 2011 @ 13:01:07
  Author: andyrtr
Revision: 106534

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

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



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

2010-08-18 Thread andyrtr
Date: Wednesday, August 18, 2010 @ 15:32:21
  Author: andyrtr
Revision: 87975

archrelease: remove extra-i686

Deleted:
  xfdesktop/repos/extra-i686/



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

2010-08-18 Thread andyrtr
Date: Wednesday, August 18, 2010 @ 15:32:39
  Author: andyrtr
Revision: 87976

archrelease: copy trunk to extra-i686

Added:
  xfdesktop/repos/extra-i686/



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

2010-05-22 Thread andyrtr
Date: Saturday, May 22, 2010 @ 11:34:15
  Author: andyrtr
Revision: 80870

archrelease: remove extra-i686

Deleted:
  xfdesktop/repos/extra-i686/



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

2010-05-22 Thread andyrtr
Date: Saturday, May 22, 2010 @ 11:34:36
  Author: andyrtr
Revision: 80871

archrelease: copy trunk to extra-i686

Added:
  xfdesktop/repos/extra-i686/



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

2010-04-16 Thread Jan de Groot
Date: Friday, April 16, 2010 @ 16:11:59
  Author: jgc
Revision: 77654

archrelease: remove extra-i686

Deleted:
  xfdesktop/repos/extra-i686/



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

2010-04-16 Thread Jan de Groot
Date: Friday, April 16, 2010 @ 16:12:05
  Author: jgc
Revision: 77655

archrelease: copy trunk to extra-i686

Added:
  xfdesktop/repos/extra-i686/