From owner-svn-ports-head@freebsd.org Sun Jun 24 19:26:17 2018 Return-Path: Delivered-To: svn-ports-head@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 3DCFC100A4AF; Sun, 24 Jun 2018 19:26:17 +0000 (UTC) (envelope-from riggs@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 E062473B3D; Sun, 24 Jun 2018 19:26:16 +0000 (UTC) (envelope-from riggs@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 A2E2422E3E; Sun, 24 Jun 2018 19:26:16 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5OJQG7D022012; Sun, 24 Jun 2018 19:26:16 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5OJQGI6022010; Sun, 24 Jun 2018 19:26:16 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201806241926.w5OJQGI6022010@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sun, 24 Jun 2018 19:26:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473212 - head/ports-mgmt/porttree X-SVN-Group: ports-head X-SVN-Commit-Author: riggs X-SVN-Commit-Paths: head/ports-mgmt/porttree X-SVN-Commit-Revision: 473212 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Jun 2018 19:26:17 -0000 Author: riggs Date: Sun Jun 24 19:26:15 2018 New Revision: 473212 URL: https://svnweb.freebsd.org/changeset/ports/473212 Log: Update to upstream version 0.4.r65 Detailed maintainer log: - Add TEST-DEPENDS. - Add indication of the type of dependence by the first characters in parentheses: (BR) for BUILD_DEPENDS and RUN_DEPENDS together. - Make it ready for Python 3. - Fix transition of svn sources from Google Code to SF for gen-dist. PR: 228361 Submitted by: vladimir.chukharev@gmail.com (maintainer) Modified: head/ports-mgmt/porttree/Makefile head/ports-mgmt/porttree/distinfo head/ports-mgmt/porttree/pkg-descr Modified: head/ports-mgmt/porttree/Makefile ============================================================================== --- head/ports-mgmt/porttree/Makefile Sun Jun 24 19:22:02 2018 (r473211) +++ head/ports-mgmt/porttree/Makefile Sun Jun 24 19:26:15 2018 (r473212) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= porttree -PORTVERSION= 0.3.r${SVN_REV} -PORTREVISION= 2 +PORTVERSION= 0.4.r${SVN_REV} CATEGORIES= ports-mgmt python MASTER_SITES= SF/${PORTNAME} @@ -12,7 +11,7 @@ COMMENT= Show dependences of FreeBSD port as pseudo gr LICENSE= MIT -USES= python:2.7 tar:bzip2 shebangfix +USES= python tar:bzip2 shebangfix RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}networkx>=1.5:math/py-networkx@${PY_FLAVOR} @@ -20,8 +19,8 @@ RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}networkx>=1.5:mat FETCH_DEPENDS+= svn:devel/subversion .endif -SVNROOT?= http://porttree.googlecode.com/svn/trunk/ -SVN_REV= 52 +SVNROOT?= https://svn.code.sf.net/p/porttree/code/trunk +SVN_REV= 65 NO_BUILD= yes PLIST_FILES= bin/porttree man/man1/porttree.1.gz NO_ARCH= yes Modified: head/ports-mgmt/porttree/distinfo ============================================================================== --- head/ports-mgmt/porttree/distinfo Sun Jun 24 19:22:02 2018 (r473211) +++ head/ports-mgmt/porttree/distinfo Sun Jun 24 19:26:15 2018 (r473212) @@ -1,3 +1,3 @@ -TIMESTAMP = 1474982854 -SHA256 (porttree-0.3.r52.tar.bz2) = d67ae79e93c1e66db4f325b426a2a17ae991941cecb967e3691d88516bd8dbe9 -SIZE (porttree-0.3.r52.tar.bz2) = 9965 +TIMESTAMP = 1526675079 +SHA256 (porttree-0.4.r65.tar.bz2) = 2565e164b1395b10a7b880f3df38fb8af475d238ae3f7188ce2bd017e65a6ebd +SIZE (porttree-0.4.r65.tar.bz2) = 10509 Modified: head/ports-mgmt/porttree/pkg-descr ============================================================================== --- head/ports-mgmt/porttree/pkg-descr Sun Jun 24 19:22:02 2018 (r473211) +++ head/ports-mgmt/porttree/pkg-descr Sun Jun 24 19:26:15 2018 (r473212) @@ -5,8 +5,9 @@ For a given port determine its dependencies using any - LIB_DEPENDS - BUILD_DEPENDS - RUN_DEPENDS + - TEST_DEPENDS -and show them as a pseudo graphical tree. +and show them as a pseudo graphical tree with indication of the depends type. Use back references for cross-connections. WWW: https://sourceforge.net/projects/porttree/