diff options
author | leot <leot@pkgsrc.org> | 2018-09-24 13:59:56 +0000 |
---|---|---|
committer | leot <leot@pkgsrc.org> | 2018-09-24 13:59:56 +0000 |
commit | 6346f636911a60f9c32b35d47b99812a2619eabd (patch) | |
tree | a8cf514e09cd3fa65c98f65d4534487964721f1c /misc/fzy | |
parent | 61ca6f88dbb8eb2fffc273d63909681bb062d323 (diff) | |
download | pkgsrc-6346f636911a60f9c32b35d47b99812a2619eabd.tar.gz |
fzy: Update misc/fzy to 1.0
Changes:
1.0 (2018-09-23)
----------------
Features:
- Support UTF-8
- Support readline-like editing
- Quit on Esc
- Redraw on terminal resize
- Bracketed paste escapes are ignored
Performance:
- Initialize tty interface before reading stdin
Diffstat (limited to 'misc/fzy')
-rw-r--r-- | misc/fzy/Makefile | 4 | ||||
-rw-r--r-- | misc/fzy/distinfo | 12 | ||||
-rw-r--r-- | misc/fzy/patches/patch-Makefile | 6 |
3 files changed, 11 insertions, 11 deletions
diff --git a/misc/fzy/Makefile b/misc/fzy/Makefile index debdc245163..15b54d02d81 100644 --- a/misc/fzy/Makefile +++ b/misc/fzy/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.3 2017/04/17 09:51:54 leot Exp $ +# $NetBSD: Makefile,v 1.4 2018/09/24 13:59:56 leot Exp $ -DISTNAME= fzy-0.9 +DISTNAME= fzy-1.0 CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_GITHUB:=jhawthorn/} diff --git a/misc/fzy/distinfo b/misc/fzy/distinfo index b2e7d4065cf..c456fd0125f 100644 --- a/misc/fzy/distinfo +++ b/misc/fzy/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.3 2017/04/17 09:51:54 leot Exp $ +$NetBSD: distinfo,v 1.4 2018/09/24 13:59:56 leot Exp $ -SHA1 (fzy-0.9.tar.gz) = 33a171617920aa685f26baf6b8af251e358c8d96 -RMD160 (fzy-0.9.tar.gz) = c64892e3c8fd59efece20131ce955f2aaf7a4e9d -SHA512 (fzy-0.9.tar.gz) = 71a44bc3bbef3a2d82476a69b5c9e28753e760bbb8d453a9e44b57f34a79dd8ebcd510a869dfeae95f522ba6ccb4b8f10f79c081ce6bc6cfae9a41f4071fefc0 -Size (fzy-0.9.tar.gz) = 42992 bytes -SHA1 (patch-Makefile) = 5fb4a687ef04a8e35239d50ea4585998708530b9 +SHA1 (fzy-1.0.tar.gz) = d5a7a25e61ab4fb33f2d176775ebf338c48ce61c +RMD160 (fzy-1.0.tar.gz) = 103c16326e8330d716cb0bd726937d8ef5268085 +SHA512 (fzy-1.0.tar.gz) = de5ed1af035260f4ae550c53b08c4ff302c978350784cbfd2981d1691f55d9c0f26b9333c74adea939b3f4578dd47e66ee99112e10afc5497c64011827d19dbc +Size (fzy-1.0.tar.gz) = 47432 bytes +SHA1 (patch-Makefile) = 954e36b9524aaefc3c1e940a0d96976a415c0cb5 diff --git a/misc/fzy/patches/patch-Makefile b/misc/fzy/patches/patch-Makefile index f26ef4a07f2..90c65770be3 100644 --- a/misc/fzy/patches/patch-Makefile +++ b/misc/fzy/patches/patch-Makefile @@ -1,11 +1,11 @@ -$NetBSD: patch-Makefile,v 1.3 2017/04/17 09:51:54 leot Exp $ +$NetBSD: patch-Makefile,v 1.4 2018/09/24 13:59:56 leot Exp $ Do not ignore CPPFLAGS and do not force optimization in CFLAGS ---- Makefile.orig 2017-04-17 07:55:42.000000000 +0000 +--- Makefile.orig 2018-09-23 22:05:55.000000000 +0000 +++ Makefile @@ -1,7 +1,7 @@ - VERSION=0.9 + VERSION=1.0 -CPPFLAGS=-DVERSION=\"${VERSION}\" -D_GNU_SOURCE -CFLAGS+=-Wall -Wextra -g -std=c99 -O3 -pedantic -Ideps |