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

Evangelos Foutras foutrelis at archlinux.org
Sun Feb 25 20:33:58 UTC 2018


    Date: Sunday, February 25, 2018 @ 20:33:57
  Author: foutrelis
Revision: 317512

archrelease: copy trunk to extra-x86_64

Added:
  xfce4-terminal/repos/extra-x86_64/0001-Revert-Allow-underscores-that-are-part-of-tab-titles.patch
    (from rev 317511, xfce4-terminal/trunk/0001-Revert-Allow-underscores-that-are-part-of-tab-titles.patch)
  xfce4-terminal/repos/extra-x86_64/PKGBUILD
    (from rev 317511, xfce4-terminal/trunk/PKGBUILD)
Deleted:
  xfce4-terminal/repos/extra-x86_64/PKGBUILD

-----------------------------------------------------------------+
 0001-Revert-Allow-underscores-that-are-part-of-tab-titles.patch |   58 ++++++
 PKGBUILD                                                        |   87 +++++-----
 2 files changed, 106 insertions(+), 39 deletions(-)

Copied: xfce4-terminal/repos/extra-x86_64/0001-Revert-Allow-underscores-that-are-part-of-tab-titles.patch (from rev 317511, xfce4-terminal/trunk/0001-Revert-Allow-underscores-that-are-part-of-tab-titles.patch)
===================================================================
--- 0001-Revert-Allow-underscores-that-are-part-of-tab-titles.patch	                        (rev 0)
+++ 0001-Revert-Allow-underscores-that-are-part-of-tab-titles.patch	2018-02-25 20:33:57 UTC (rev 317512)
@@ -0,0 +1,58 @@
+From 609c53f974caee6b75c6ffa259cf6fcda671e39b Mon Sep 17 00:00:00 2001
+From: Evangelos Foutras <evangelos at foutrelis.com>
+Date: Sun, 25 Feb 2018 22:25:17 +0200
+Subject: [PATCH] Revert "Allow underscores that are part of tab titles to be
+ shown in the tabs menu"
+
+This reverts commit 300d136e1c9ab2c2a687c11a8ccd7b470816ee36.
+---
+ terminal/terminal-window.c | 14 +++++---------
+ 1 file changed, 5 insertions(+), 9 deletions(-)
+
+diff --git a/terminal/terminal-window.c b/terminal/terminal-window.c
+index e678c8f7..4af3bc64 100644
+--- a/terminal/terminal-window.c
++++ b/terminal/terminal-window.c
+@@ -2956,7 +2956,7 @@ terminal_window_rebuild_tabs_menu (TerminalWindow *window)
+   GtkWidget      *page;
+   GSList         *group = NULL;
+   GtkRadioAction *radio_action;
+-  gchar           name[50], menu_item_name[100];
++  gchar           name[50];
+   GSList         *lp;
+   GtkAccelKey     key = {0};
+ 
+@@ -3011,26 +3011,22 @@ G_GNUC_END_IGNORE_DEPRECATIONS
+       g_object_set_qdata_full (G_OBJECT (page), tabs_menu_action_quark,
+                                radio_action, g_object_unref);
+ 
+-G_GNUC_BEGIN_IGNORE_DEPRECATIONS
+       /* add action in the menu */
++G_GNUC_BEGIN_IGNORE_DEPRECATIONS
+       gtk_ui_manager_add_ui (window->priv->ui_manager, window->priv->tabs_menu_merge_id,
+                              "/main-menu/tabs-menu/placeholder-tab-items",
+                              name, name, GTK_UI_MANAGER_MENUITEM, FALSE);
+-      /* allow underscore to be shown */
+-      g_snprintf (menu_item_name, sizeof (menu_item_name), "/main-menu/tabs-menu/placeholder-tab-items/%s", name);
+-      gtk_menu_item_set_use_underline (GTK_MENU_ITEM (gtk_ui_manager_get_widget (window->priv->ui_manager, menu_item_name)), FALSE);
++G_GNUC_END_IGNORE_DEPRECATIONS
+ 
+       if (npages > 1)
+         {
+           /* add to right-click tab menu */
++G_GNUC_BEGIN_IGNORE_DEPRECATIONS
+           gtk_ui_manager_add_ui (window->priv->ui_manager, window->priv->tabs_menu_merge_id,
+                                  "/tab-menu/tabs-menu/placeholder-tab-items",
+                                  name, name, GTK_UI_MANAGER_MENUITEM, FALSE);
+-          /* allow underscore to be shown */
+-          g_snprintf (menu_item_name, sizeof (menu_item_name), "/tab-menu/tabs-menu/placeholder-tab-items/%s", name);
+-          gtk_menu_item_set_use_underline (GTK_MENU_ITEM (gtk_ui_manager_get_widget (window->priv->ui_manager, menu_item_name)), FALSE);
+-        }
+ G_GNUC_END_IGNORE_DEPRECATIONS
++        }
+ 
+       /* set an accelerator path */
+       g_snprintf (name, sizeof (name), "<Actions>/terminal-window/goto-tab-%d", n + 1);
+-- 
+2.16.2
+

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2018-02-25 20:33:50 UTC (rev 317511)
+++ PKGBUILD	2018-02-25 20:33:57 UTC (rev 317512)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras <evangelos at foutrelis.com>
-# Contributor: tobias <tobias funnychar archlinux.org>
-# Contributor: Aurelien Foret <orelien at chez.com>
-
-pkgname=xfce4-terminal
-pkgver=0.8.7
-pkgrel=1
-pkgdesc="A modern terminal emulator primarily for the Xfce desktop environment"
-arch=('x86_64')
-url="http://www.xfce.org/"
-license=('GPL2')
-groups=('xfce4')
-depends=('libxfce4ui' 'vte3' 'hicolor-icon-theme')
-makedepends=('intltool')
-conflicts=('terminal')
-replaces=('terminal')
-source=(https://archive.xfce.org/src/apps/$pkgname/0.8/$pkgname-$pkgver.tar.bz2)
-sha256sums=('0ced5ff686f839acb6a89a9fd48af7ab04d17a56346e31d1a5063cfa36734540')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
-    --prefix=/usr \
-    --sysconfdir=/etc \
-    --libexecdir=/usr/lib/xfce4 \
-    --localstatedir=/var \
-    --disable-static \
-    --disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-terminal/repos/extra-x86_64/PKGBUILD (from rev 317511, xfce4-terminal/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2018-02-25 20:33:57 UTC (rev 317512)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Evangelos Foutras <evangelos at foutrelis.com>
+# Contributor: tobias <tobias funnychar archlinux.org>
+# Contributor: Aurelien Foret <orelien at chez.com>
+
+pkgname=xfce4-terminal
+pkgver=0.8.7
+pkgrel=2
+pkgdesc="A modern terminal emulator primarily for the Xfce desktop environment"
+arch=('x86_64')
+url="http://www.xfce.org/"
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4ui' 'vte3' 'hicolor-icon-theme')
+makedepends=('intltool')
+conflicts=('terminal')
+replaces=('terminal')
+source=(https://archive.xfce.org/src/apps/$pkgname/0.8/$pkgname-$pkgver.tar.bz2
+        0001-Revert-Allow-underscores-that-are-part-of-tab-titles.patch)
+sha256sums=('0ced5ff686f839acb6a89a9fd48af7ab04d17a56346e31d1a5063cfa36734540'
+            '174d569305310c321387d73c0b55cbafc589cc4db1618c3771ee98c158589c20')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # https://bugzilla.xfce.org/show_bug.cgi?id=14247
+  patch -Np1 -i ../0001-Revert-Allow-underscores-that-are-part-of-tab-titles.patch
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+    --prefix=/usr \
+    --sysconfdir=/etc \
+    --libexecdir=/usr/lib/xfce4 \
+    --localstatedir=/var \
+    --disable-static \
+    --disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list