svn commit: r510132 - in head/sysutils/byobu: . files

Jason Helfman jgh at FreeBSD.org
Thu Aug 29 01:56:51 UTC 2019


Author: jgh
Date: Thu Aug 29 01:56:50 2019
New Revision: 510132
URL: https://svnweb.freebsd.org/changeset/ports/510132

Log:
  - update to 5.129
  - address negative memory consumption bug
  - update maintainer contact address
  
  PR:		239935
  Submitted by:	jcoffman at xsecure.io (maintainer)

Added:
  head/sysutils/byobu/files/patch-usr_lib_byobu_memory   (contents, props changed)
Modified:
  head/sysutils/byobu/Makefile
  head/sysutils/byobu/distinfo

Modified: head/sysutils/byobu/Makefile
==============================================================================
--- head/sysutils/byobu/Makefile	Wed Aug 28 23:53:52 2019	(r510131)
+++ head/sysutils/byobu/Makefile	Thu Aug 29 01:56:50 2019	(r510132)
@@ -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 at ipsecure.io
+MAINTAINER=	jcoffman at 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

Modified: head/sysutils/byobu/distinfo
==============================================================================
--- head/sysutils/byobu/distinfo	Wed Aug 28 23:53:52 2019	(r510131)
+++ head/sysutils/byobu/distinfo	Thu Aug 29 01:56:50 2019	(r510132)
@@ -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

Added: head/sysutils/byobu/files/patch-usr_lib_byobu_memory
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/byobu/files/patch-usr_lib_byobu_memory	Thu Aug 29 01:56:50 2019	(r510132)
@@ -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


More information about the svn-ports-all mailing list