From owner-svn-ports-head@freebsd.org Sat Aug 3 20:55:16 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 28336BAE5C; Sat, 3 Aug 2019 20:55:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 461GWS0Jmqz3BpS; Sat, 3 Aug 2019 20:55:16 +0000 (UTC) (envelope-from sunpoet@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 E188220BD2; Sat, 3 Aug 2019 20:55:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x73KtFk4083878; Sat, 3 Aug 2019 20:55:15 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x73KtFDr083874; Sat, 3 Aug 2019 20:55:15 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201908032055.x73KtFDr083874@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 3 Aug 2019 20:55:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r507999 - in head/devel: . py-importlab X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-importlab X-SVN-Commit-Revision: 507999 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.29 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: Sat, 03 Aug 2019 20:55:16 -0000 X-List-Received-Date: Sat, 03 Aug 2019 20:55:16 -0000 X-List-Received-Date: Sat, 03 Aug 2019 20:55:16 -0000 X-List-Received-Date: Sat, 03 Aug 2019 20:55:16 -0000 X-List-Received-Date: Sat, 03 Aug 2019 20:55:16 -0000 Author: sunpoet Date: Sat Aug 3 20:55:14 2019 New Revision: 507999 URL: https://svnweb.freebsd.org/changeset/ports/507999 Log: Add py-importlab 0.5.1 Importlab is a library for Python that automatically infers dependencies and calculates a dependency graph. It can perform dependency ordering of a set of files, including cycle detection. Importlab's main use case is to work with static analysis tools that process one file at a time, ensuring that a file's dependencies are analysed before it is. Importlab is primarily intended to be used as a library. It takes one or more python files as arguments, and generates an import graph, typically used to process files in dependency order. This is not an official Google product. WWW: https://github.com/google/importlab Added: head/devel/py-importlab/ head/devel/py-importlab/Makefile (contents, props changed) head/devel/py-importlab/distinfo (contents, props changed) head/devel/py-importlab/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Aug 3 20:55:09 2019 (r507998) +++ head/devel/Makefile Sat Aug 3 20:55:14 2019 (r507999) @@ -4489,6 +4489,7 @@ SUBDIR += py-identify SUBDIR += py-ijson SUBDIR += py-imgkit + SUBDIR += py-importlab SUBDIR += py-importlib-metadata SUBDIR += py-importlib-resources SUBDIR += py-incremental Added: head/devel/py-importlab/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-importlab/Makefile Sat Aug 3 20:55:14 2019 (r507999) @@ -0,0 +1,24 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= importlab +PORTVERSION= 0.5.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Calculate python dependency graphs + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}networkx>=0:math/py-networkx@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/devel/py-importlab/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-importlab/distinfo Sat Aug 3 20:55:14 2019 (r507999) @@ -0,0 +1,3 @@ +TIMESTAMP = 1564769327 +SHA256 (importlab-0.5.1.tar.gz) = d855350d19dc10a17aabd2fe6f4b428ff1a936071f692fbf686a73694d26a51c +SIZE (importlab-0.5.1.tar.gz) = 19067 Added: head/devel/py-importlab/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-importlab/pkg-descr Sat Aug 3 20:55:14 2019 (r507999) @@ -0,0 +1,14 @@ +Importlab is a library for Python that automatically infers dependencies and +calculates a dependency graph. It can perform dependency ordering of a set of +files, including cycle detection. + +Importlab's main use case is to work with static analysis tools that process one +file at a time, ensuring that a file's dependencies are analysed before it is. + +Importlab is primarily intended to be used as a library. It takes one or more +python files as arguments, and generates an import graph, typically used to +process files in dependency order. + +This is not an official Google product. + +WWW: https://github.com/google/importlab