Date: Sat, 28 Jul 2018 12:08:13 +0000 (UTC) From: Martin Wilke <miwi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r475534 - in head/textproc: . py-license-expression Message-ID: <201807281208.w6SC8EsM067060@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: miwi Date: Sat Jul 28 12:08:13 2018 New Revision: 475534 URL: https://svnweb.freebsd.org/changeset/ports/475534 Log: Utility library to parse, normalize and compare License expressions for Python using a boolean logic engine. The intended use is for expressions using SPDX or any other license id scheme. WWW: https://github.com/nexB/license-expression PR: 229449 Submitted by: freebsd_ports@k-worx.org Sponsored by: iXsystems Inc. Added: head/textproc/py-license-expression/ head/textproc/py-license-expression/Makefile (contents, props changed) head/textproc/py-license-expression/distinfo (contents, props changed) head/textproc/py-license-expression/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sat Jul 28 12:07:22 2018 (r475533) +++ head/textproc/Makefile Sat Jul 28 12:08:13 2018 (r475534) @@ -1316,6 +1316,7 @@ SUBDIR += py-libtre SUBDIR += py-libxml2 SUBDIR += py-libxslt + SUBDIR += py-license-expression SUBDIR += py-ltxml SUBDIR += py-m2r SUBDIR += py-mako Added: head/textproc/py-license-expression/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-license-expression/Makefile Sat Jul 28 12:08:13 2018 (r475534) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= license-expression +DISTVERSIONPREFIX= v +DISTVERSION= 0.98 +CATEGORIES= textproc python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= freebsd_ports@k-worx.org +COMMENT= Parses, normalizes and compares license expressions + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/NOTICE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}boolean.py>=3.5:devel/py-boolean.py@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist +USE_GITHUB= yes +GH_ACCOUNT= nexB + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/textproc/py-license-expression/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-license-expression/distinfo Sat Jul 28 12:08:13 2018 (r475534) @@ -0,0 +1,3 @@ +TIMESTAMP = 1530192682 +SHA256 (nexB-license-expression-v0.98_GH0.tar.gz) = 65c9f3df7f5dbc294ca866b6fa4fda91d0f3b0e0cf57341b52cb239b0ff88e09 +SIZE (nexB-license-expression-v0.98_GH0.tar.gz) = 5172261 Added: head/textproc/py-license-expression/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-license-expression/pkg-descr Sat Jul 28 12:08:13 2018 (r475534) @@ -0,0 +1,5 @@ +Utility library to parse, normalize and compare License expressions for Python +using a boolean logic engine. The intended use is for expressions using SPDX or +any other license id scheme. + +WWW: https://github.com/nexB/license-expression
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201807281208.w6SC8EsM067060>