Date: Sat, 29 Jun 2019 09:28:25 +0000 (UTC) From: Steve Wills <swills@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r505338 - in head/devel: . py-pipdeptree Message-ID: <201906290928.x5T9SPM0010303@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: swills Date: Sat Jun 29 09:28:24 2019 New Revision: 505338 URL: https://svnweb.freebsd.org/changeset/ports/505338 Log: devel/py-pipdeptree: create port pipdeptree is a command line utility for displaying the installed python packages in form of a dependency tree. It works for packages installed globally on a machine as well as in a virtualenv. WWW: https://github.com/naiquevin/pipdeptree Added: head/devel/py-pipdeptree/ head/devel/py-pipdeptree/Makefile (contents, props changed) head/devel/py-pipdeptree/distinfo (contents, props changed) head/devel/py-pipdeptree/pkg-descr (contents, props changed) Modified: head/devel/Makefile (contents, props changed) Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Jun 29 09:27:57 2019 (r505337) +++ head/devel/Makefile Sat Jun 29 09:28:24 2019 (r505338) @@ -4722,6 +4722,7 @@ SUBDIR += py-pip-api SUBDIR += py-pip-tools SUBDIR += py-pip-tools2 + SUBDIR += py-pipdeptree SUBDIR += py-pipenv SUBDIR += py-pkgconfig SUBDIR += py-plac Added: head/devel/py-pipdeptree/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pipdeptree/Makefile Sat Jun 29 09:28:24 2019 (r505338) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= pipdeptree +PORTVERSION= 0.13.2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= swills@FreeBSD.org +COMMENT= Command line utility to show dependency tree of packages + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pip>=6.0.0:devel/py-pip@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +.include <bsd.port.mk> Added: head/devel/py-pipdeptree/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pipdeptree/distinfo Sat Jun 29 09:28:24 2019 (r505338) @@ -0,0 +1,3 @@ +TIMESTAMP = 1559622386 +SHA256 (pipdeptree-0.13.2.tar.gz) = f54a2388cfe3cbaa08f4702ee8957f0f3f0d6ff65899833ea57f12f2fc4ae0c1 +SIZE (pipdeptree-0.13.2.tar.gz) = 17490 Added: head/devel/py-pipdeptree/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pipdeptree/pkg-descr Sat Jun 29 09:28:24 2019 (r505338) @@ -0,0 +1,5 @@ +pipdeptree is a command line utility for displaying the installed python +packages in form of a dependency tree. It works for packages installed globally +on a machine as well as in a virtualenv. + +WWW: https://github.com/naiquevin/pipdeptree
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906290928.x5T9SPM0010303>