From owner-svn-ports-all@freebsd.org Sun Apr 29 11:51:07 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 089CCFAA685; Sun, 29 Apr 2018 11:51:07 +0000 (UTC) (envelope-from olivier@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 B0E057B9AF; Sun, 29 Apr 2018 11:51:06 +0000 (UTC) (envelope-from olivier@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 ABD0123E7E; Sun, 29 Apr 2018 11:51:06 +0000 (UTC) (envelope-from olivier@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3TBp6gX022500; Sun, 29 Apr 2018 11:51:06 GMT (envelope-from olivier@FreeBSD.org) Received: (from olivier@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3TBp6pw022495; Sun, 29 Apr 2018 11:51:06 GMT (envelope-from olivier@FreeBSD.org) Message-Id: <201804291151.w3TBp6pw022495@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivier set sender to olivier@FreeBSD.org using -f From: Olivier Cochard Date: Sun, 29 Apr 2018 11:51:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r468621 - in head/net: . graphpath X-SVN-Group: ports-head X-SVN-Commit-Author: olivier X-SVN-Commit-Paths: in head/net: . graphpath X-SVN-Commit-Revision: 468621 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.25 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: Sun, 29 Apr 2018 11:51:07 -0000 Author: olivier Date: Sun Apr 29 11:51:06 2018 New Revision: 468621 URL: https://svnweb.freebsd.org/changeset/ports/468621 Log: Add new port: net/graphpath Graphpath generates an ASCII network diagram from the route table of a FreeBSD router. Added: head/net/graphpath/ head/net/graphpath/Makefile (contents, props changed) head/net/graphpath/distinfo (contents, props changed) head/net/graphpath/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sun Apr 29 11:41:07 2018 (r468620) +++ head/net/Makefile Sun Apr 29 11:51:06 2018 (r468621) @@ -206,6 +206,7 @@ SUBDIR += goreplay SUBDIR += gotthard SUBDIR += gq + SUBDIR += graphpath SUBDIR += grdesktop SUBDIR += grilo SUBDIR += grilo-plugins Added: head/net/graphpath/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/graphpath/Makefile Sun Apr 29 11:51:06 2018 (r468621) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= graphpath +PORTVERSION= 1.0 +DISTVERSIONPREFIX= v +CATEGORIES= net + +MAINTAINER= olivier@FreeBSD.org +COMMENT= Generates an ASCII network diagram from the route table + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_GITHUB= yes +GH_ACCOUNT= ocochard + +NO_BUILD= yes + +PLIST_FILES= bin/${PORTNAME} + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/ + +.include Added: head/net/graphpath/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/graphpath/distinfo Sun Apr 29 11:51:06 2018 (r468621) @@ -0,0 +1,3 @@ +TIMESTAMP = 1525000172 +SHA256 (ocochard-graphpath-v1.0_GH0.tar.gz) = 9e018bbb44f748595d4eb030896ccc195a9a75db773160da480743f31b5b8272 +SIZE (ocochard-graphpath-v1.0_GH0.tar.gz) = 5445 Added: head/net/graphpath/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/graphpath/pkg-descr Sun Apr 29 11:51:06 2018 (r468621) @@ -0,0 +1,4 @@ +Graphpath generates an ASCII network diagram from the route table of a +Unix/Linux router. + +WWW: https://github.com/ocochard/graphpath