[arch-commits] Commit in exo/repos/extra-x86_64 (3 files)

Evangelos Foutras foutrelis at archlinux.org
Wed Jul 8 18:08:43 UTC 2020


    Date: Wednesday, July 8, 2020 @ 18:08:43
  Author: foutrelis
Revision: 391025

archrelease: copy trunk to extra-x86_64

Added:
  exo/repos/extra-x86_64/PKGBUILD
    (from rev 391024, exo/trunk/PKGBUILD)
  exo/repos/extra-x86_64/fix-xfce4-settings-manager-resizing.patch
    (from rev 391024, exo/trunk/fix-xfce4-settings-manager-resizing.patch)
Deleted:
  exo/repos/extra-x86_64/PKGBUILD

-------------------------------------------+
 PKGBUILD                                  |   79 ++++++++++++++--------------
 fix-xfce4-settings-manager-resizing.patch |   38 +++++++++++++
 2 files changed, 80 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2020-07-08 18:08:38 UTC (rev 391024)
+++ PKGBUILD	2020-07-08 18:08:43 UTC (rev 391025)
@@ -1,37 +0,0 @@
-# Maintainer: Evangelos Foutras <evangelos at foutrelis.com>
-# Contributor: tobias <tobias funnychar archlinux.org>
-# Contributor: Aurelien Foret <orelien at chez.com>
-
-pkgname=exo
-pkgver=0.12.11
-pkgrel=4
-pkgdesc="Application library for Xfce"
-arch=('x86_64')
-url="https://www.xfce.org/"
-license=('GPL2' 'LGPL')
-groups=('xfce4')
-depends=('libxfce4ui' 'perl-uri' 'hicolor-icon-theme')
-makedepends=('intltool')
-source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('ec892519c08a67f3e0a1f0f8d43446e26871183e5aa6be7f82e214f388d1e5b6')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
-    --prefix=/usr \
-    --sysconfdir=/etc \
-    --disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: exo/repos/extra-x86_64/PKGBUILD (from rev 391024, exo/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2020-07-08 18:08:43 UTC (rev 391025)
@@ -0,0 +1,42 @@
+# Maintainer: Evangelos Foutras <evangelos at foutrelis.com>
+# Contributor: tobias <tobias funnychar archlinux.org>
+# Contributor: Aurelien Foret <orelien at chez.com>
+
+pkgname=exo
+pkgver=0.12.11
+pkgrel=5
+pkgdesc="Application library for Xfce"
+arch=('x86_64')
+url="https://www.xfce.org/"
+license=('GPL2' 'LGPL')
+groups=('xfce4')
+depends=('libxfce4ui' 'perl-uri' 'hicolor-icon-theme')
+makedepends=('intltool')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2
+        fix-xfce4-settings-manager-resizing.patch)
+sha256sums=('ec892519c08a67f3e0a1f0f8d43446e26871183e5aa6be7f82e214f388d1e5b6'
+            '0bb6896fae60b06ba4accd15cd334da88f874849f6fabd39ef5831f977c8a181')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # https://gitlab.xfce.org/xfce/exo/-/issues/19
+  patch -Np1 -i ../fix-xfce4-settings-manager-resizing.patch
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+    --prefix=/usr \
+    --sysconfdir=/etc \
+    --disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: exo/repos/extra-x86_64/fix-xfce4-settings-manager-resizing.patch (from rev 391024, exo/trunk/fix-xfce4-settings-manager-resizing.patch)
===================================================================
--- fix-xfce4-settings-manager-resizing.patch	                        (rev 0)
+++ fix-xfce4-settings-manager-resizing.patch	2020-07-08 18:08:43 UTC (rev 391025)
@@ -0,0 +1,38 @@
+From b41b65612085a145622d23207b810e9cbb40e3cb Mon Sep 17 00:00:00 2001
+From: Theo Linkspfeifer <lastonestanding at tutanota.com>
+Date: Thu, 11 Jun 2020 06:02:02 -0400
+Subject: [PATCH] Allow resizing the xfce4-settings window smaller (fixes #19)
+
+Signed-off-by: Sean Davis <smd.seandavis at gmail.com>
+---
+ exo/exo-icon-view.c | 7 +++++--
+ 1 file changed, 5 insertions(+), 2 deletions(-)
+
+diff --git a/exo/exo-icon-view.c b/exo/exo-icon-view.c
+index 939658fb..deba7f5d 100644
+--- a/exo/exo-icon-view.c
++++ b/exo/exo-icon-view.c
+@@ -1669,7 +1669,9 @@ exo_icon_view_get_preferred_width (GtkWidget *widget,
+   GList                    *lp;
+ 
+   /* well, this is easy */
+-  *minimal_width = *natural_width = priv->width;
++  if (priv->item_width < 0)
++    *minimal_width = priv->width;
++  *natural_width = priv->width;
+ 
+   /* handle the child widgets */
+   for (lp = priv->children; lp != NULL; lp = lp->next)
+@@ -1691,7 +1693,8 @@ exo_icon_view_get_preferred_height (GtkWidget *widget,
+   GList                    *lp;
+ 
+   /* well, this is easy */
+-  *natural_height = *minimal_height = priv->height;
++  *minimal_height = priv->height;
++  *natural_height = priv->height;
+ 
+   /* handle the child widgets */
+   for (lp = priv->children; lp != NULL; lp = lp->next)
+-- 
+2.26.2
+



More information about the arch-commits mailing list