diff options
author | leot <leot@pkgsrc.org> | 2017-04-17 09:51:54 +0000 |
---|---|---|
committer | leot <leot@pkgsrc.org> | 2017-04-17 09:51:54 +0000 |
commit | 560fb591d74589ea5bb3d16eccd0ac131cc7e5b4 (patch) | |
tree | 85d539348fa87db1024e32603c909b16aef44044 /misc/fzy | |
parent | b86064a2ec18d92701362a95e0c45c30f4d1b0bf (diff) | |
download | pkgsrc-560fb591d74589ea5bb3d16eccd0ac131cc7e5b4.tar.gz |
Update misc/fzy to 0.9.
Changes:
## 0.9 (2017-04-17)
Features:
- Support Ctrl-k and Ctrl-j for movement
Performance:
- Use threads to parallelize sorting
- Improve parallelism of searching and scoring
Internal:
- Fix test suite on i386
- Replace test suite with greatest
- Add property tests
- Add acceptance tests
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 | 10 |
3 files changed, 13 insertions, 13 deletions
diff --git a/misc/fzy/Makefile b/misc/fzy/Makefile index 09c9b5b847a..debdc245163 100644 --- a/misc/fzy/Makefile +++ b/misc/fzy/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.2 2017/01/01 16:03:37 leot Exp $ +# $NetBSD: Makefile,v 1.3 2017/04/17 09:51:54 leot Exp $ -DISTNAME= fzy-0.8 +DISTNAME= fzy-0.9 CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_GITHUB:=jhawthorn/} diff --git a/misc/fzy/distinfo b/misc/fzy/distinfo index 394e367e67b..b2e7d4065cf 100644 --- a/misc/fzy/distinfo +++ b/misc/fzy/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.2 2017/01/01 16:03:37 leot Exp $ +$NetBSD: distinfo,v 1.3 2017/04/17 09:51:54 leot Exp $ -SHA1 (fzy-0.8.tar.gz) = 96340f6ed0025c2ca22762822791b9a087797d34 -RMD160 (fzy-0.8.tar.gz) = dfcf0cc2944cba4ca0471ddfb9c834b4b6bb9c70 -SHA512 (fzy-0.8.tar.gz) = c4713ec1b23ec6be403f1092823f9f3e9618bc04237eead980e2a76eb7a1d97127e7fc467a73479515dff86014278c4352c5644669633e18a80ae11b05269d68 -Size (fzy-0.8.tar.gz) = 18777 bytes -SHA1 (patch-Makefile) = a0a8dc3f490240911a084cec7e9615dca4309e47 +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 diff --git a/misc/fzy/patches/patch-Makefile b/misc/fzy/patches/patch-Makefile index 80de7254efd..f26ef4a07f2 100644 --- a/misc/fzy/patches/patch-Makefile +++ b/misc/fzy/patches/patch-Makefile @@ -1,16 +1,16 @@ -$NetBSD: patch-Makefile,v 1.2 2017/01/01 16:03:38 leot Exp $ +$NetBSD: patch-Makefile,v 1.3 2017/04/17 09:51:54 leot Exp $ Do not ignore CPPFLAGS and do not force optimization in CFLAGS ---- Makefile.orig 2017-01-01 12:33:41.000000000 +0000 +--- Makefile.orig 2017-04-17 07:55:42.000000000 +0000 +++ Makefile @@ -1,7 +1,7 @@ - VERSION=0.8 + VERSION=0.9 -CPPFLAGS=-DVERSION=\"${VERSION}\" -D_GNU_SOURCE --CFLAGS+=-Wall -Wextra -g -std=c99 -O3 -pedantic +-CFLAGS+=-Wall -Wextra -g -std=c99 -O3 -pedantic -Ideps +CPPFLAGS+=-DVERSION=\"${VERSION}\" -D_GNU_SOURCE -+CFLAGS+=-Wall -Wextra -g -std=c99 -pedantic ++CFLAGS+=-Wall -Wextra -g -std=c99 -pedantic -Ideps PREFIX?=/usr/local MANDIR?=$(PREFIX)/share/man BINDIR?=$(PREFIX)/bin |