Date: Mon, 28 May 2018 16:38:29 +0000 (UTC) From: Devin Teske <dteske@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r471054 - head/sysutils/dwatch-gource Message-ID: <201805281638.w4SGcT2Y099409@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.options.mk> + +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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805281638.w4SGcT2Y099409>