pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/x11/vte



Module Name:    pkgsrc
Committed By:   jperkin
Date:           Thu Oct 19 13:59:01 UTC 2017

Modified Files:
        pkgsrc/x11/vte: distinfo
Added Files:
        pkgsrc/x11/vte/patches: patch-src_keymap.c patch-src_keymap.h
Removed Files:
        pkgsrc/x11/vte/patches: patch-altmeta

Log Message:
vte: Split non-standard multi-file patch into separate files.

Avoids issues when developing with mkpatches from pkgtools/pkgdiff.


To generate a diff of this commit:
cvs rdiff -u -r1.55 -r1.56 pkgsrc/x11/vte/distinfo
cvs rdiff -u -r1.2 -r0 pkgsrc/x11/vte/patches/patch-altmeta
cvs rdiff -u -r0 -r1.1 pkgsrc/x11/vte/patches/patch-src_keymap.c \
    pkgsrc/x11/vte/patches/patch-src_keymap.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/x11/vte/distinfo
diff -u pkgsrc/x11/vte/distinfo:1.55 pkgsrc/x11/vte/distinfo:1.56
--- pkgsrc/x11/vte/distinfo:1.55        Thu Oct 19 13:51:34 2017
+++ pkgsrc/x11/vte/distinfo     Thu Oct 19 13:59:01 2017
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.55 2017/10/19 13:51:34 jperkin Exp $
+$NetBSD: distinfo,v 1.56 2017/10/19 13:59:01 jperkin Exp $
 
 SHA1 (vte-0.28.1.tar.bz2) = 9867f84c6be65ff485d8a1a3c41a359709b6f84c
 RMD160 (vte-0.28.1.tar.bz2) = e0748777f5a57266762b3dd88f7a10b143e412d9
@@ -10,7 +10,8 @@ SHA1 (patch-ac) = 3b357bf9d1bca93c24f5b0
 SHA1 (patch-af) = 69ea7e022f6c495c3c9af681d05644b9d70e7bdc
 SHA1 (patch-ah) = 28cee2661439d7d6f1959ebf3c7d1b7b3fe0a764
 SHA1 (patch-ai) = 4c365d1d05faa2d9bd0f8f21d500a72605f092d9
-SHA1 (patch-altmeta) = 1fc77f879dfb76220ebe6a6e5769c2662fec58a9
 SHA1 (patch-config.h.in) = 1d80496a6f4299adc0749cf65339ee8407309a17
 SHA1 (patch-configure) = dc8dd91cfee84eaf62c6813defcbf311ebdcfedc
 SHA1 (patch-gnome-pty-helper_config.h.in) = bee681f4e5102213eeeee6a825d02d31b3d0c63d
+SHA1 (patch-src_keymap.c) = 165ef9ec2a46eb78ade34b5651dcd97bf6e5c96e
+SHA1 (patch-src_keymap.h) = de51c3182a4ce3adabc3c2ab6180202b47b282fd

Added files:

Index: pkgsrc/x11/vte/patches/patch-src_keymap.c
diff -u /dev/null pkgsrc/x11/vte/patches/patch-src_keymap.c:1.1
--- /dev/null   Thu Oct 19 13:59:01 2017
+++ pkgsrc/x11/vte/patches/patch-src_keymap.c   Thu Oct 19 13:59:01 2017
@@ -0,0 +1,54 @@
+$NetBSD: patch-src_keymap.c,v 1.1 2017/10/19 13:59:01 jperkin Exp $
+
+From 180dcc578e13c6096e277fb853e7162db640f207 Mon Sep 17 00:00:00 2001
+From: Alexandre Rostovtsev <tetromino%gentoo.org@localhost>
+Date: Tue, 15 Nov 2011 03:06:40 -0500
+Subject: [PATCH] Map both gdk's Meta and Alt to vte's Meta for >=gtk+-3.2.2
+ compatibility
+
+Also, since VTE_META_MASK is now a mask with multiple bits set, code that
+compares gdk key modifiers to VTE_META_MASK by numerical equality is no
+longer guaranteed to work. Therefore, for such comparisons a new function,
+vte_keymap_fixup_modifiers, is introduced; it ensures that if any bits
+matching matching VTE_META_MASK are set, then all are set.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=663779
+
+--- src/keymap.c.orig  2011-06-14 21:29:20.000000000 +0000
++++ src/keymap.c
+@@ -990,6 +990,17 @@ static const struct _vte_keymap_group {
+       {GDK_KEY (F35),         _vte_keymap_GDK_F35},
+ };
+ 
++/* Restrict modifiers to the specified mask and ensure that VTE_META_MASK,
++ * despite being a compound mask, is treated as indivisible. */
++GdkModifierType
++_vte_keymap_fixup_modifiers(GdkModifierType modifiers,
++              GdkModifierType mask)
++{
++      if (modifiers & VTE_META_MASK)
++              modifiers |= VTE_META_MASK;
++      return modifiers & mask;
++}
++
+ /* Map the specified keyval/modifier setup, dependent on the mode, to either
+  * a literal string or a capability name. */
+ void
+@@ -1104,7 +1115,7 @@ _vte_keymap_map(guint keyval,
+       } else {
+               fkey_mode = fkey_default;
+       }
+-      modifiers &= (GDK_SHIFT_MASK | GDK_CONTROL_MASK | VTE_META_MASK | VTE_NUMLOCK_MASK);
++      modifiers = _vte_keymap_fixup_modifiers(modifiers, GDK_SHIFT_MASK | GDK_CONTROL_MASK | VTE_META_MASK | VTE_NUMLOCK_MASK);
+ 
+       /* Search for the conditions. */
+       for (i = 0; entries[i].normal_length || entries[i].special[0]; i++)
+@@ -1375,7 +1386,7 @@ _vte_keymap_key_add_key_modifiers(guint 
+               return;
+       }
+ 
+-      switch (modifiers & significant_modifiers) {
++      switch (_vte_keymap_fixup_modifiers(modifiers, significant_modifiers)) {
+       case 0:
+               modifier = 0;
+               break;
Index: pkgsrc/x11/vte/patches/patch-src_keymap.h
diff -u /dev/null pkgsrc/x11/vte/patches/patch-src_keymap.h:1.1
--- /dev/null   Thu Oct 19 13:59:01 2017
+++ pkgsrc/x11/vte/patches/patch-src_keymap.h   Thu Oct 19 13:59:01 2017
@@ -0,0 +1,27 @@
+$NetBSD: patch-src_keymap.h,v 1.1 2017/10/19 13:59:01 jperkin Exp $
+
+From 180dcc578e13c6096e277fb853e7162db640f207 Mon Sep 17 00:00:00 2001
+From: Alexandre Rostovtsev <tetromino%gentoo.org@localhost>
+Date: Tue, 15 Nov 2011 03:06:40 -0500
+Subject: [PATCH] Map both gdk's Meta and Alt to vte's Meta for >=gtk+-3.2.2
+ compatibility
+
+Also, since VTE_META_MASK is now a mask with multiple bits set, code that
+compares gdk key modifiers to VTE_META_MASK by numerical equality is no
+longer guaranteed to work. Therefore, for such comparisons a new function,
+vte_keymap_fixup_modifiers, is introduced; it ensures that if any bits
+matching matching VTE_META_MASK are set, then all are set.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=663779
+
+--- src/keymap.h.orig  2011-06-07 17:01:32.000000000 +0000
++++ src/keymap.h
+@@ -27,7 +27,7 @@
+ 
+ G_BEGIN_DECLS
+ 
+-#define VTE_META_MASK         GDK_META_MASK
++#define VTE_META_MASK         (GDK_META_MASK | GDK_MOD1_MASK)
+ #define VTE_NUMLOCK_MASK      GDK_MOD2_MASK
+ 
+ /* Map the specified keyval/modifier setup, dependent on the mode, to either



Home | Main Index | Thread Index | Old Index