Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 3 Aug 2019 20:55:15 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r507999 - in head/devel: . py-importlab
Message-ID:  <201908032055.x73KtFDr083874@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <sunpoet@FreeBSD.org>
+# $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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908032055.x73KtFDr083874>