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

Evangelos Foutras foutrelis at archlinux.org
Mon Nov 5 22:43:00 UTC 2012


    Date: Monday, November 5, 2012 @ 17:43:00
  Author: foutrelis
Revision: 170242

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

Deleted:
  xfdesktop/repos/extra-i686/PKGBUILD
  xfdesktop/repos/extra-i686/add-backgrounds-xfce-to-search-path.patch
  xfdesktop/repos/extra-x86_64/PKGBUILD
  xfdesktop/repos/extra-x86_64/add-backgrounds-xfce-to-search-path.patch

--------------------------------------------------------+
 extra-i686/PKGBUILD                                    |   55 ---------------
 extra-i686/add-backgrounds-xfce-to-search-path.patch   |   36 ---------
 extra-x86_64/PKGBUILD                                  |   55 ---------------
 extra-x86_64/add-backgrounds-xfce-to-search-path.patch |   36 ---------
 4 files changed, 182 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2012-11-05 22:42:10 UTC (rev 170241)
+++ extra-i686/PKGBUILD	2012-11-05 22:43:00 UTC (rev 170242)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras <evangelos at 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'
-            'fcb27e24abfd50c5555fe01ae946a2bc5a133d3f5cee076eef517ccc5f668dd5'
-            '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: extra-i686/add-backgrounds-xfce-to-search-path.patch
===================================================================
--- extra-i686/add-backgrounds-xfce-to-search-path.patch	2012-11-05 22:42:10 UTC (rev 170241)
+++ extra-i686/add-backgrounds-xfce-to-search-path.patch	2012-11-05 22:43:00 UTC (rev 170242)
@@ -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	
-@@ -688,6 +688,7 @@ xfdesktop_settings_dialog_populate_image_list(AppearancePanel *panel)
-         xfconf_channel_set_string(panel->channel, prop_image, image_file);
-         xfconf_channel_set_string(panel->channel, prop_last, image_file);
- 
-+        /* Add all backdrops in xfce4/backdrops/ */
-         backdrop_dirs = xfce_resource_lookup_all(XFCE_RESOURCE_DATA,
-                                                  "xfce4/backdrops/");
-         for(i = 0; backdrop_dirs[i]; ++i) {
-@@ -696,6 +697,19 @@ xfdesktop_settings_dialog_populate_image_list(AppearancePanel *panel)
-             if(tmp)
-                 image_file_iter = tmp;
-         }
-+        g_strfreev(backdrop_dirs);
-+
-+        /* Add all backdrops in backgrounds/xfce/ */
-+        backdrop_dirs = xfce_resource_lookup_all(XFCE_RESOURCE_DATA,
-+                                                 "backgrounds/xfce/");
-+        for(i = 0; backdrop_dirs[i]; ++i) {
-+            tmp = xfdesktop_image_list_add_dir(ls, backdrop_dirs[i],
-+                                               image_file);
-+            if(tmp)
-+                image_file_iter = tmp;
-+        }
-+        g_strfreev(backdrop_dirs);
-+
- 
-         if(!image_file_iter)
-             image_file_iter = xfdesktop_settings_image_treeview_add(GTK_TREE_MODEL(ls), image_file);
--- 

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2012-11-05 22:42:10 UTC (rev 170241)
+++ extra-x86_64/PKGBUILD	2012-11-05 22:43:00 UTC (rev 170242)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras <evangelos at 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'
-            'fcb27e24abfd50c5555fe01ae946a2bc5a133d3f5cee076eef517ccc5f668dd5'
-            '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: extra-x86_64/add-backgrounds-xfce-to-search-path.patch
===================================================================
--- extra-x86_64/add-backgrounds-xfce-to-search-path.patch	2012-11-05 22:42:10 UTC (rev 170241)
+++ extra-x86_64/add-backgrounds-xfce-to-search-path.patch	2012-11-05 22:43:00 UTC (rev 170242)
@@ -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	
-@@ -688,6 +688,7 @@ xfdesktop_settings_dialog_populate_image_list(AppearancePanel *panel)
-         xfconf_channel_set_string(panel->channel, prop_image, image_file);
-         xfconf_channel_set_string(panel->channel, prop_last, image_file);
- 
-+        /* Add all backdrops in xfce4/backdrops/ */
-         backdrop_dirs = xfce_resource_lookup_all(XFCE_RESOURCE_DATA,
-                                                  "xfce4/backdrops/");
-         for(i = 0; backdrop_dirs[i]; ++i) {
-@@ -696,6 +697,19 @@ xfdesktop_settings_dialog_populate_image_list(AppearancePanel *panel)
-             if(tmp)
-                 image_file_iter = tmp;
-         }
-+        g_strfreev(backdrop_dirs);
-+
-+        /* Add all backdrops in backgrounds/xfce/ */
-+        backdrop_dirs = xfce_resource_lookup_all(XFCE_RESOURCE_DATA,
-+                                                 "backgrounds/xfce/");
-+        for(i = 0; backdrop_dirs[i]; ++i) {
-+            tmp = xfdesktop_image_list_add_dir(ls, backdrop_dirs[i],
-+                                               image_file);
-+            if(tmp)
-+                image_file_iter = tmp;
-+        }
-+        g_strfreev(backdrop_dirs);
-+
- 
-         if(!image_file_iter)
-             image_file_iter = xfdesktop_settings_image_treeview_add(GTK_TREE_MODEL(ls), image_file);
--- 




More information about the arch-commits mailing list