svn commit: r550277 - in head/devel: . py-cson

Nicola Vitale nivit at FreeBSD.org
Sun Sep 27 13:52:41 UTC 2020


Author: nivit
Date: Sun Sep 27 13:52:40 2020
New Revision: 550277
URL: https://svnweb.freebsd.org/changeset/ports/550277

Log:
  A Python parser for the Coffeescript Object Notation (CSON).
  
  WWW: https://github.com/avakar/pycson

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Sep 27 13:51:48 2020	(r550276)
+++ head/devel/Makefile	Sun Sep 27 13:52:40 2020	(r550277)
@@ -4278,6 +4278,7 @@
     SUBDIR += py-crashtest
     SUBDIR += py-crc32c
     SUBDIR += py-crcmod
+    SUBDIR += py-cson
     SUBDIR += py-csv23
     SUBDIR += py-ctags
     SUBDIR += py-curio

Added: head/devel/py-cson/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-cson/Makefile	Sun Sep 27 13:52:40 2020	(r550277)
@@ -0,0 +1,24 @@
+# $FreeBSD$
+
+PORTNAME=	cson
+DISTVERSION=	0.8
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	nivit at FreeBSD.org
+COMMENT=	Coffescript Object Notation (CSON) parser for Python 2 and Python 3
+
+LICENSE=	MIT
+
+RUN_DEPENDS=	${PKGNAMEPREFIX}speg>=0.3:devel/py-speg@${PY_FLAVOR}
+TEST_DEPENDS=	${PKGNAMEPREFIX}pytest:devel/py-pytest@${PY_FLAVOR} \
+		${PKGNAMEPREFIX}speg>=0.3:devel/py-speg@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+do-test:
+	@cd ${WRKSRC} && ${PYTHON_CMD} -m pytest test
+
+.include <bsd.port.mk>

Added: head/devel/py-cson/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-cson/distinfo	Sun Sep 27 13:52:40 2020	(r550277)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1601137906
+SHA256 (cson-0.8.tar.gz) = ee8c0166fcd1f51789887197e3e8354ac7befa396fc29706bceb5af25edc9e01
+SIZE (cson-0.8.tar.gz) = 6346

Added: head/devel/py-cson/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-cson/pkg-descr	Sun Sep 27 13:52:40 2020	(r550277)
@@ -0,0 +1,3 @@
+A Python parser for the Coffeescript Object Notation (CSON).
+
+WWW: https://github.com/avakar/pycson


More information about the svn-ports-all mailing list