svn commit: r405047 - in head/misc: . py-spdx

Martin Wilke miwi at FreeBSD.org
Sat Jan 2 06:12:35 UTC 2016


Author: miwi
Date: Sat Jan  2 06:12:33 2016
New Revision: 405047
URL: https://svnweb.freebsd.org/changeset/ports/405047

Log:
  A Python module incorporating an interface to the SPDX license database.
  
  This library serves purely as a holder for the database that can be
  found on the SPDX website <https://spdx.org/licenses/>.
  
  WWW: https://github.com/bbqsrc/spdx-python
  
  PR:		205723
  Submitted by:	Brendan Molloy <brendan+freebsd at bbqsrc.net>

Added:
  head/misc/py-spdx/
  head/misc/py-spdx/Makefile   (contents, props changed)
  head/misc/py-spdx/distinfo   (contents, props changed)
  head/misc/py-spdx/pkg-descr   (contents, props changed)
Modified:
  head/misc/Makefile

Modified: head/misc/Makefile
==============================================================================
--- head/misc/Makefile	Sat Jan  2 05:24:02 2016	(r405046)
+++ head/misc/Makefile	Sat Jan  2 06:12:33 2016	(r405047)
@@ -370,6 +370,7 @@
     SUBDIR += posixtestsuite
     SUBDIR += proxyper
     SUBDIR += pspresent
+    SUBDIR += py-spdx
     SUBDIR += py-YABT
     SUBDIR += py-osd
     SUBDIR += py-pexpect

Added: head/misc/py-spdx/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/py-spdx/Makefile	Sat Jan  2 06:12:33 2016	(r405047)
@@ -0,0 +1,18 @@
+# Created by: Brendan Molloy <brendan+freebsd at bbqsrc.net>
+# $FreeBSD$
+
+PORTNAME=	spdx
+DISTVERSION=	2.3.0b1.post2
+CATEGORIES=	misc python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	brendan+freebsd at bbqsrc.net
+COMMENT=	SPDX license list database
+
+LICENSE=	CC0-1.0
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/misc/py-spdx/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/py-spdx/distinfo	Sat Jan  2 06:12:33 2016	(r405047)
@@ -0,0 +1,2 @@
+SHA256 (spdx-2.3.0b1.post2.tar.gz) = c1fff6408ee1a2b2a063c234c31dcd2b1d8b39915128152d61de2cefcf66aa98
+SIZE (spdx-2.3.0b1.post2.tar.gz) = 564691

Added: head/misc/py-spdx/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/py-spdx/pkg-descr	Sat Jan  2 06:12:33 2016	(r405047)
@@ -0,0 +1,6 @@
+A Python module incorporating an interface to the SPDX license database.
+
+This library serves purely as a holder for the database that can be
+found on the SPDX website <https://spdx.org/licenses/>.
+
+WWW: https://github.com/bbqsrc/spdx-python


More information about the svn-ports-all mailing list