diff options
author | pawel <pawel@FreeBSD.org> | 2015-05-07 23:03:05 +0800 |
---|---|---|
committer | pawel <pawel@FreeBSD.org> | 2015-05-07 23:03:05 +0800 |
commit | 1e786b3a1c53ad5cce169ab361aa5f54f145b6ac (patch) | |
tree | b5f373da893d3291a7edafb967d34e6b23f9407c /sysutils | |
parent | 2a3f1f7238e382d9376ce3f7a579b9ee252be3ec (diff) | |
download | freebsd-ports-gnome-1e786b3a1c53ad5cce169ab361aa5f54f145b6ac.tar.gz freebsd-ports-gnome-1e786b3a1c53ad5cce169ab361aa5f54f145b6ac.tar.zst freebsd-ports-gnome-1e786b3a1c53ad5cce169ab361aa5f54f145b6ac.zip |
Update to version 1.11
Changelog:
- Added 'b' key to spawn shell in the current directory
- Support scanning (and refreshing) of empty directories
- Added --si flag for base 10 prefixes
- Fix toggle dirs before files
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/ncdu/Makefile | 2 | ||||
-rw-r--r-- | sysutils/ncdu/distinfo | 4 | ||||
-rw-r--r-- | sysutils/ncdu/files/patch-src_shell.c | 10 |
3 files changed, 13 insertions, 3 deletions
diff --git a/sysutils/ncdu/Makefile b/sysutils/ncdu/Makefile index 2eac7473e503..a1b9ca7c9e0c 100644 --- a/sysutils/ncdu/Makefile +++ b/sysutils/ncdu/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ncdu -PORTVERSION= 1.10 +PORTVERSION= 1.11 CATEGORIES= sysutils MASTER_SITES= http://dev.yorhel.nl/download/ diff --git a/sysutils/ncdu/distinfo b/sysutils/ncdu/distinfo index 5b8b65c016c7..f5bbf3017756 100644 --- a/sysutils/ncdu/distinfo +++ b/sysutils/ncdu/distinfo @@ -1,2 +1,2 @@ -SHA256 (ncdu-1.10.tar.gz) = f5994a4848dbbca480d39729b021f057700f14ef72c0d739bbd82d862f2f0c67 -SIZE (ncdu-1.10.tar.gz) = 131810 +SHA256 (ncdu-1.11.tar.gz) = d0aea772e47463c281007f279a9041252155a2b2349b18adb9055075e141bb7b +SIZE (ncdu-1.11.tar.gz) = 134093 diff --git a/sysutils/ncdu/files/patch-src_shell.c b/sysutils/ncdu/files/patch-src_shell.c new file mode 100644 index 000000000000..dc6a22a42017 --- /dev/null +++ b/sysutils/ncdu/files/patch-src_shell.c @@ -0,0 +1,10 @@ +--- src/shell.c.orig 2015-05-07 14:48:25 UTC ++++ src/shell.c +@@ -29,6 +29,7 @@ + #include "dirlist.h" + #include "util.h" + ++#include <sys/wait.h> + #include <ncurses.h> + #include <stdlib.h> + #include <unistd.h> |