pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel



Module Name:    pkgsrc
Committed By:   nia
Date:           Wed Apr 20 17:41:08 UTC 2022

Modified Files:
        pkgsrc/devel: Makefile
Added Files:
        pkgsrc/devel/libtermkey: DESCR Makefile PLIST buildlink3.mk distinfo

Log Message:
devel: add libtermkey. Needed by neovim.

libtermkey allows easy processing of keyboard entry from terminal-based
programs. It handles all the necessary logic to recognise special keys,
UTF-8 combining, and so on, with a simple interface.

Note: Use of this library for new programs is discouraged. It is being
maintained for legacy purposes only.


To generate a diff of this commit:
cvs rdiff -u -r1.3716 -r1.3717 pkgsrc/devel/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/libtermkey/DESCR \
    pkgsrc/devel/libtermkey/Makefile pkgsrc/devel/libtermkey/PLIST \
    pkgsrc/devel/libtermkey/buildlink3.mk pkgsrc/devel/libtermkey/distinfo

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

Modified files:

Index: pkgsrc/devel/Makefile
diff -u pkgsrc/devel/Makefile:1.3716 pkgsrc/devel/Makefile:1.3717
--- pkgsrc/devel/Makefile:1.3716        Wed Apr 20 17:33:05 2022
+++ pkgsrc/devel/Makefile       Wed Apr 20 17:41:08 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3716 2022/04/20 17:33:05 nia Exp $
+# $NetBSD: Makefile,v 1.3717 2022/04/20 17:41:08 nia Exp $
 #
 
 COMMENT=       Development utilities
@@ -932,6 +932,7 @@ SUBDIR+=    libstubborn
 SUBDIR+=       libtai
 SUBDIR+=       libtar
 SUBDIR+=       libtecla
+SUBDIR+=       libtermkey
 SUBDIR+=       libthai
 SUBDIR+=       libthrift
 SUBDIR+=       libthrift_c_glib

Added files:

Index: pkgsrc/devel/libtermkey/DESCR
diff -u /dev/null pkgsrc/devel/libtermkey/DESCR:1.1
--- /dev/null   Wed Apr 20 17:41:08 2022
+++ pkgsrc/devel/libtermkey/DESCR       Wed Apr 20 17:41:08 2022
@@ -0,0 +1,6 @@
+libtermkey allows easy processing of keyboard entry from terminal-based
+programs. It handles all the necessary logic to recognise special keys,
+UTF-8 combining, and so on, with a simple interface.
+
+Note: Use of this library for new programs is discouraged. It is being
+maintained for legacy purposes only.
Index: pkgsrc/devel/libtermkey/Makefile
diff -u /dev/null pkgsrc/devel/libtermkey/Makefile:1.1
--- /dev/null   Wed Apr 20 17:41:08 2022
+++ pkgsrc/devel/libtermkey/Makefile    Wed Apr 20 17:41:08 2022
@@ -0,0 +1,22 @@
+# $NetBSD: Makefile,v 1.1 2022/04/20 17:41:08 nia Exp $
+
+DISTNAME=      libtermkey-0.22
+CATEGORIES=    devel
+MASTER_SITES=  https://www.leonerd.org.uk/code/libtermkey/
+
+HOMEPAGE=      https://www.leonerd.org.uk/code/libtermkey/
+COMMENT=       Library to process keyboard entry from terminal-based programs
+LICENSE=       mit
+
+USE_TOOLS+=    pkg-config gmake gzip
+USE_LIBTOOL=   yes
+
+MAKE_FLAGS+=   PREFIX=${PREFIX}
+MAKE_FLAGS+=   MANDIR=${PREFIX}/${PKGMANDIR}
+
+MANCOMPRESSED= yes
+
+PKGCONFIG_OVERRIDE+=   termkey.pc.in
+
+.include "../../devel/unibilium/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/devel/libtermkey/PLIST
diff -u /dev/null pkgsrc/devel/libtermkey/PLIST:1.1
--- /dev/null   Wed Apr 20 17:41:08 2022
+++ pkgsrc/devel/libtermkey/PLIST       Wed Apr 20 17:41:08 2022
@@ -0,0 +1,29 @@
+@comment $NetBSD: PLIST,v 1.1 2022/04/20 17:41:08 nia Exp $
+include/termkey.h
+lib/libtermkey.la
+lib/pkgconfig/termkey.pc
+man/man3/termkey_advisereadable.3
+man/man3/termkey_canonicalise.3
+man/man3/termkey_get_buffer_remaining.3
+man/man3/termkey_get_fd.3
+man/man3/termkey_get_keyname.3
+man/man3/termkey_getkey.3
+man/man3/termkey_interpret_csi.3
+man/man3/termkey_interpret_modereport.3
+man/man3/termkey_interpret_mouse.3
+man/man3/termkey_interpret_position.3
+man/man3/termkey_interpret_string.3
+man/man3/termkey_keycmp.3
+man/man3/termkey_keyname2sym.3
+man/man3/termkey_lookup_keyname.3
+man/man3/termkey_new.3
+man/man3/termkey_push_bytes.3
+man/man3/termkey_set_buffer_size.3
+man/man3/termkey_set_canonflags.3
+man/man3/termkey_set_flags.3
+man/man3/termkey_set_waittime.3
+man/man3/termkey_start.3
+man/man3/termkey_strfkey.3
+man/man3/termkey_strpkey.3
+man/man3/termkey_waitkey.3
+man/man7/termkey.7
Index: pkgsrc/devel/libtermkey/buildlink3.mk
diff -u /dev/null pkgsrc/devel/libtermkey/buildlink3.mk:1.1
--- /dev/null   Wed Apr 20 17:41:08 2022
+++ pkgsrc/devel/libtermkey/buildlink3.mk       Wed Apr 20 17:41:08 2022
@@ -0,0 +1,14 @@
+# $NetBSD: buildlink3.mk,v 1.1 2022/04/20 17:41:08 nia Exp $
+
+BUILDLINK_TREE+=       libtermkey
+
+.if !defined(LIBTERMKEY_BUILDLINK3_MK)
+LIBTERMKEY_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.libtermkey+=     libtermkey>=0.17
+BUILDLINK_PKGSRCDIR.libtermkey?=       ../../devel/libtermkey
+
+.include "../../devel/unibilium/buildlink3.mk"
+.endif # LIBTERMKEY_BUILDLINK3_MK
+
+BUILDLINK_TREE+=       -libtermkey
Index: pkgsrc/devel/libtermkey/distinfo
diff -u /dev/null pkgsrc/devel/libtermkey/distinfo:1.1
--- /dev/null   Wed Apr 20 17:41:08 2022
+++ pkgsrc/devel/libtermkey/distinfo    Wed Apr 20 17:41:08 2022
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1 2022/04/20 17:41:08 nia Exp $
+
+RMD160 (libtermkey-0.22.tar.gz) = 553e744534a5318e75f5a696481efe941b7f6ead
+SHA512 (libtermkey-0.22.tar.gz) = 2e8242cd1e6acb8900125dcee9fd47f7554c359363f760b88858c82667e1f3871bdd87358b14c8a133ef3cd2699947a5045477e64cdf7f96d4ead1723e73a219
+Size (libtermkey-0.22.tar.gz) = 46147 bytes



Home | Main Index | Thread Index | Old Index