pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/x11/xf86-input-keyboard Update to 1.8.0:
details: https://anonhg.NetBSD.org/pkgsrc/rev/fec15d947d8d
branches: trunk
changeset: 626086:fec15d947d8d
user: wiz <wiz%pkgsrc.org@localhost>
date: Fri Nov 01 01:22:48 2013 +0000
description:
Update to 1.8.0:
1.8.0:
Consider this the NetBSD release, bringing the driver closer to sync with
the NetBSD source directory. Non-BSD platforms should not be affected by
these changes.
Peter Hutterer (1):
keyboard 1.8.0
Thomas Klausner (25):
Added some missing keysyms to the ADB keymap.
Map the Sun keyboard "help" key.
Added keysym for Power keys.
Added keysyms for extra keys on Sun Type 6 USB keyboard.
Fixes for the ADB map.
More ADB fixes.
Add translation table for AT/PS2 pseudo XT scancodes.
Use existing wscons USB keymap for WSKBD_TYPE_MAPLE on dreamcast.
Add a couple mappings for keys found on Sun keyboards.
Fix scan code 50 key on non-US-USB keyboards.
Add a basic map for an LK201 keyboard.
Set the version for the keyboard.
Fix a shadowing warning, and add const.
Recognize WSKBD_TYPE_MAPLE for dreamcast.
Add default device for Protocol "wskbd".
Add WSKBD_TYPE_LK201.
Make OpenKeyboard() warn instead of error out.
Fix wskbd handling when VT switching.
Improve auto-detection.
Move WSCONS case inside switch statement.
Add some NetBSD feature detection code.
Do not assume type in WS_*_MAP_SIZE macros.
Factor out common code.
Check open() return value.
Whitespace fixes.
1.7.0:
No big changes, but since we removed AM_MAINTAINER_MODE might as well bump
the minor release number.
Adam Jackson (1):
configure: Drop AM_MAINTAINER_MODE
Colin Walters (1):
autogen.sh: Implement GNOME Build API
Peter Hutterer (2):
Use sigsafe logging for keyboard debug messages
keyboard 1.7.0
diffstat:
x11/xf86-input-keyboard/Makefile | 4 ++--
x11/xf86-input-keyboard/distinfo | 9 ++++-----
x11/xf86-input-keyboard/patches/patch-ac | 27 ---------------------------
3 files changed, 6 insertions(+), 34 deletions(-)
diffs (57 lines):
diff -r f049c29fbb57 -r fec15d947d8d x11/xf86-input-keyboard/Makefile
--- a/x11/xf86-input-keyboard/Makefile Thu Oct 31 23:39:18 2013 +0000
+++ b/x11/xf86-input-keyboard/Makefile Fri Nov 01 01:22:48 2013 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.15 2013/05/16 05:51:53 richard Exp $
+# $NetBSD: Makefile,v 1.16 2013/11/01 01:22:48 wiz Exp $
-DISTNAME= xf86-input-keyboard-1.6.2
+DISTNAME= xf86-input-keyboard-1.8.0
CATEGORIES= x11
MASTER_SITES= ${MASTER_SITE_XORG:=driver/}
EXTRACT_SUFX= .tar.bz2
diff -r f049c29fbb57 -r fec15d947d8d x11/xf86-input-keyboard/distinfo
--- a/x11/xf86-input-keyboard/distinfo Thu Oct 31 23:39:18 2013 +0000
+++ b/x11/xf86-input-keyboard/distinfo Fri Nov 01 01:22:48 2013 +0000
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.8 2013/05/16 05:51:53 richard Exp $
+$NetBSD: distinfo,v 1.9 2013/11/01 01:22:48 wiz Exp $
-SHA1 (xf86-input-keyboard-1.6.2.tar.bz2) = 8a4f75076231b941011b7c129bd66afe8f261b9a
-RMD160 (xf86-input-keyboard-1.6.2.tar.bz2) = cf48f0d2fb4416ef56cbc3f4f3876d6c4de35181
-Size (xf86-input-keyboard-1.6.2.tar.bz2) = 322733 bytes
-SHA1 (patch-ac) = c72e321e49200f467996399a0c43c020a9fe8c47
+SHA1 (xf86-input-keyboard-1.8.0.tar.bz2) = 7728d733ef16d664a201868ecae5db3705cf8ef1
+RMD160 (xf86-input-keyboard-1.8.0.tar.bz2) = 19ce2bf7a0c7c245afce557990dc762d66575b3d
+Size (xf86-input-keyboard-1.8.0.tar.bz2) = 323838 bytes
diff -r f049c29fbb57 -r fec15d947d8d x11/xf86-input-keyboard/patches/patch-ac
--- a/x11/xf86-input-keyboard/patches/patch-ac Thu Oct 31 23:39:18 2013 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,27 +0,0 @@
-$NetBSD: patch-ac,v 1.1 2009/03/14 11:12:32 apb Exp $
-
-Changes from NetBSD xsrc/external/mit/xf86-input-keyboard/dist/\
-src/bsd_kbd.c
-
-----------------------------
-revision 1.4
-date: 2009/02/07 17:33:28; author: christos; state: Exp; lines: +7 -0
-Set the version for the keyboard too. From Patrick Welche
-----------------------------
-
---- src/bsd_kbd.c.orig 2008-12-04 00:01:46.000000000 +0200
-+++ src/bsd_kbd.c
-@@ -454,6 +454,13 @@ OpenKeyboard(InputInfoPtr pInfo)
- #ifdef WSCONS_SUPPORT
- if( prot == PROT_WSCONS) {
- pKbd->consType = WSCONS;
-+#ifdef WSKBDIO_SETVERSION
-+ int version = WSKBDIO_EVENT_VERSION;
-+ if (ioctl(pInfo->fd, WSKBDIO_SETVERSION, &version) == -1) {
-+ xf86Msg(X_WARNING, "%s: cannot set version\n", pInfo->name);
-+ return FALSE;
-+ }
-+#endif
- /* Find out keyboard type */
- if (ioctl(pInfo->fd, WSKBDIO_GTYPE, &(pKbd->wsKbdType)) == -1) {
- xf86Msg(X_ERROR, "%s: cannot get keyboard type", pInfo->name);
Home |
Main Index |
Thread Index |
Old Index