svn commit: r442558 - in head/net/bmon: . files

Jochen Neumeister joneum at FreeBSD.org
Sun Jun 4 12:32:01 UTC 2017


Author: joneum
Date: Sun Jun  4 12:31:59 2017
New Revision: 442558
URL: https://svnweb.freebsd.org/changeset/ports/442558

Log:
  - net/bmon: Update from 3.3 to 4.0
  - Changelog: https://github.com/tgraf/bmon/blob/master/NEWS
  
  PR:			219392
  Reported by:	Eric Camachat
  Approved by:	michelle at sorbs.net (maintainer timeout, 2 weeks), miwi (mentor)
  Differential Revision:	https://reviews.freebsd.org/D11038

Added:
  head/net/bmon/files/patch-src_in_sysctl.c   (contents, props changed)
Modified:
  head/net/bmon/Makefile
  head/net/bmon/distinfo

Modified: head/net/bmon/Makefile
==============================================================================
--- head/net/bmon/Makefile	Sun Jun  4 12:22:44 2017	(r442557)
+++ head/net/bmon/Makefile	Sun Jun  4 12:31:59 2017	(r442558)
@@ -2,9 +2,8 @@
 # $FreeBSD$
 
 PORTNAME=	bmon
-PORTVERSION=	3.3
+PORTVERSION=	4.0
 DISTVERSIONPREFIX=	v
-PORTREVISION=	1
 CATEGORIES=	net
 
 MAINTAINER=	michelle at sorbs.net

Modified: head/net/bmon/distinfo
==============================================================================
--- head/net/bmon/distinfo	Sun Jun  4 12:22:44 2017	(r442557)
+++ head/net/bmon/distinfo	Sun Jun  4 12:31:59 2017	(r442558)
@@ -1,2 +1,3 @@
-SHA256 (tgraf-bmon-v3.3_GH0.tar.gz) = 1d62451178d3d682a6cf2778ebade7e63f2a9bebe3d35aef20cf94b51679dcca
-SIZE (tgraf-bmon-v3.3_GH0.tar.gz) = 57331
+TIMESTAMP = 1495133346
+SHA256 (tgraf-bmon-v4.0_GH0.tar.gz) = d5e503ff6b116c681ebf4d10e238604dde836dceb9c0008eb92416a96c87ca40
+SIZE (tgraf-bmon-v4.0_GH0.tar.gz) = 61843

Added: head/net/bmon/files/patch-src_in_sysctl.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/bmon/files/patch-src_in_sysctl.c	Sun Jun  4 12:31:59 2017	(r442558)
@@ -0,0 +1,11 @@
+--- src/in_sysctl.c.orig	2017-05-18 12:03:29.320093000 -0700
++++ src/in_sysctl.c	2017-05-18 12:17:31.135080000 -0700
+@@ -232,7 +232,7 @@ sysctl_read(void)
+ 		snprintf(info_buf, sizeof(info_buf), "%ju", (uintmax_t)ifm->ifm_data.ifi_metric);
+ 		element_update_info(e, "Metric", info_buf);
+ 
+-#ifndef __NetBSD__
++#if !(defined(__NetBSD__) || defined(__FreeBSD__))
+ 		snprintf(info_buf, sizeof(info_buf), "%u", ifm->ifm_data.ifi_recvquota);
+ 		element_update_info(e, "RX-Quota", info_buf);
+ 


More information about the svn-ports-head mailing list