diff options
author | jgh <jgh@FreeBSD.org> | 2019-08-29 09:56:50 +0800 |
---|---|---|
committer | jgh <jgh@FreeBSD.org> | 2019-08-29 09:56:50 +0800 |
commit | 3a5f46bca2bcfedac13b322e7aeb2f6e2e32ca1a (patch) | |
tree | 50064c689461dc80fb5fdb0a318a11809b836a96 /sysutils | |
parent | 26501e10b93b33a6ccdf7589c6c3d577731e8b2a (diff) | |
download | freebsd-ports-gnome-3a5f46bca2bcfedac13b322e7aeb2f6e2e32ca1a.tar.gz freebsd-ports-gnome-3a5f46bca2bcfedac13b322e7aeb2f6e2e32ca1a.tar.zst freebsd-ports-gnome-3a5f46bca2bcfedac13b322e7aeb2f6e2e32ca1a.zip |
- update to 5.129
- address negative memory consumption bug
- update maintainer contact address
PR: 239935
Submitted by: jcoffman@xsecure.io (maintainer)
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/byobu/Makefile | 6 | ||||
-rw-r--r-- | sysutils/byobu/distinfo | 6 | ||||
-rw-r--r-- | sysutils/byobu/files/patch-usr_lib_byobu_memory | 11 |
3 files changed, 17 insertions, 6 deletions
diff --git a/sysutils/byobu/Makefile b/sysutils/byobu/Makefile index 2864b63860f1..2477dd1b49e3 100644 --- a/sysutils/byobu/Makefile +++ b/sysutils/byobu/Makefile @@ -2,18 +2,18 @@ # $FreeBSD$ PORTNAME= byobu -PORTVERSION= 5.127 -PORTREVISION= 1 +PORTVERSION= 5.129 CATEGORIES= sysutils MASTER_SITES= http://launchpad.net/${PORTNAME}/trunk/${PORTVERSION}/+download/ DISTNAME= ${PORTNAME}_${PORTVERSION}.orig -MAINTAINER= jcoffman@ipsecure.io +MAINTAINER= jcoffman@xsecure.io COMMENT= Profile and configuration utilities for GNU Screen and/or tmux LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING +FETCH_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss RUN_DEPENDS= bash:shells/bash USES= autoreconf python shebangfix diff --git a/sysutils/byobu/distinfo b/sysutils/byobu/distinfo index aff9bb3783b7..bbd16ebfd47f 100644 --- a/sysutils/byobu/distinfo +++ b/sysutils/byobu/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1542171398 -SHA256 (byobu_5.127.orig.tar.gz) = 4bafc7cb69ff5b0ab6998816d58cd1ef7175e5de75abc1dd7ffd6d5288a4f63b -SIZE (byobu_5.127.orig.tar.gz) = 755529 +TIMESTAMP = 1566517721 +SHA256 (byobu_5.129.orig.tar.gz) = e5135f20750c359b6371ee87cf2729c6038fbf3a6e66680e67f6a2125b07c2b9 +SIZE (byobu_5.129.orig.tar.gz) = 758633 diff --git a/sysutils/byobu/files/patch-usr_lib_byobu_memory b/sysutils/byobu/files/patch-usr_lib_byobu_memory new file mode 100644 index 000000000000..b4952a8fbfae --- /dev/null +++ b/sysutils/byobu/files/patch-usr_lib_byobu_memory @@ -0,0 +1,11 @@ +--- usr/lib/byobu/memory.orig 2019-08-23 17:23:09 UTC ++++ usr/lib/byobu/memory +@@ -52,7 +52,7 @@ __memory() { + buffers_plus_cached=$(($buffers+$cached)) + # "free output" buffers and cache (output from 'free') + fo_buffers=$(($kb_main_used - $buffers_plus_cached)) +- fpdiv $((100*${fo_buffers})) "${total}" 0; ++ fpdiv $((100*${kb_main_used})) "${total}" 0; + usage=${_RET} + if [ $total -ge 1048576 ]; then + fpdiv "$total" 1048567 1 |