From owner-svn-ports-all@freebsd.org Mon May 28 16:38:30 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C6075F6F97B; Mon, 28 May 2018 16:38:30 +0000 (UTC) (envelope-from dteske@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 78C8276A81; Mon, 28 May 2018 16:38:30 +0000 (UTC) (envelope-from dteske@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 59EAA7E07; Mon, 28 May 2018 16:38:30 +0000 (UTC) (envelope-from dteske@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w4SGcUDJ099412; Mon, 28 May 2018 16:38:30 GMT (envelope-from dteske@FreeBSD.org) Received: (from dteske@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4SGcT2Y099409; Mon, 28 May 2018 16:38:29 GMT (envelope-from dteske@FreeBSD.org) Message-Id: <201805281638.w4SGcT2Y099409@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dteske set sender to dteske@FreeBSD.org using -f From: Devin Teske Date: Mon, 28 May 2018 16:38:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r471054 - head/sysutils/dwatch-gource X-SVN-Group: ports-head X-SVN-Commit-Author: dteske X-SVN-Commit-Paths: head/sysutils/dwatch-gource X-SVN-Commit-Revision: 471054 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 May 2018 16:38:31 -0000 Author: dteske Date: Mon May 28 16:38:29 2018 New Revision: 471054 URL: https://svnweb.freebsd.org/changeset/ports/471054 Log: sysutils/dwatch-gource: Update to 0.7 + Network visualizer added (supports TCP4/6 and UDP4/6) + Process visualizer: + Add support for jails + Fix file descriptor flushing + Fix detection of process exit + Syscall visualizer: + Remove probemod from end of nodes + All visualizations (gwatch changes): + Allow override of GOURCE_OPTIONS (base gource flags) + This is separate from GOURCEOPT which is used for adding options to the base gource flags + Allow override of the profile-specific gource flags + Add DWATCHOPT as a variable to send custom flags to dwatch + RCS-style keywords updated to include git repository name Reviewed by: mat (mentor) Approved by: mat (mentor) Sponsored by: Smule, Inc. Differential Revision: https://reviews.freebsd.org/D15593 Modified: head/sysutils/dwatch-gource/Makefile head/sysutils/dwatch-gource/distinfo head/sysutils/dwatch-gource/pkg-plist Modified: head/sysutils/dwatch-gource/Makefile ============================================================================== --- head/sysutils/dwatch-gource/Makefile Mon May 28 16:05:52 2018 (r471053) +++ head/sysutils/dwatch-gource/Makefile Mon May 28 16:38:29 2018 (r471054) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= dwatch-gource -DISTVERSION= 0.4 +DISTVERSION= 0.7 CATEGORIES= sysutils MAINTAINER= dteske@FreeBSD.org @@ -18,6 +18,20 @@ NO_ARCH= yes PORTDOCS= README.md OPTIONS_DEFINE= DOCS + +.include + +SUPPORTED= no +.if ${OPSYS} == FreeBSD +.if ${OSVERSION} >= 1101516 && ${OSVERSION} < 1200000 +SUPPORTED= yes +.elif ${OSVERSION} >= 1200064 +SUPPORTED= yes +.endif +.endif +.if ${SUPPORTED} == no +IGNORE= Requires dwatch available in recent FreeBSD 11 or 12 +.endif do-install: ${INSTALL_SCRIPT} ${WRKSRC}/gwatch ${STAGEDIR}${PREFIX}/sbin Modified: head/sysutils/dwatch-gource/distinfo ============================================================================== --- head/sysutils/dwatch-gource/distinfo Mon May 28 16:05:52 2018 (r471053) +++ head/sysutils/dwatch-gource/distinfo Mon May 28 16:38:29 2018 (r471054) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526225519 -SHA256 (FrauBSD-dwatch-gource-0.4_GH0.tar.gz) = 519533cd1e886dc46c02dd6f46ac3a4107925bda5fc9f2b6903e9461786a047b -SIZE (FrauBSD-dwatch-gource-0.4_GH0.tar.gz) = 10482 +TIMESTAMP = 1527486735 +SHA256 (FrauBSD-dwatch-gource-0.7_GH0.tar.gz) = 73061a73c27694c6152f934b538e10fc5c638bfab43aa56f932ca494f12ce24e +SIZE (FrauBSD-dwatch-gource-0.7_GH0.tar.gz) = 12450 Modified: head/sysutils/dwatch-gource/pkg-plist ============================================================================== --- head/sysutils/dwatch-gource/pkg-plist Mon May 28 16:05:52 2018 (r471053) +++ head/sysutils/dwatch-gource/pkg-plist Mon May 28 16:38:29 2018 (r471054) @@ -1,4 +1,6 @@ sbin/gwatch +libexec/dwatch/gource-net +libexec/dwatch/gource-net-raw libexec/dwatch/gource-open libexec/dwatch/gource-open-raw libexec/dwatch/gource-proc