svn commit: r500168 - in head/devel: . py-sexpdata

Dmitry Marakasov amdmi3 at FreeBSD.org
Fri Apr 26 20:57:59 UTC 2019


Author: amdmi3
Date: Fri Apr 26 20:57:57 2019
New Revision: 500168
URL: https://svnweb.freebsd.org/changeset/ports/500168

Log:
  sexpdata is a simple S-expression parser/serializer. It has simple
  load and dump functions like pickle, json or PyYAML module.
  
  WWW: https://github.com/jd-boyd/sexpdata

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri Apr 26 20:54:35 2019	(r500167)
+++ head/devel/Makefile	Fri Apr 26 20:57:57 2019	(r500168)
@@ -5147,6 +5147,7 @@
     SUBDIR += py-setuptools_hg
     SUBDIR += py-setuptools_scm
     SUBDIR += py-setuptools_scm_git_archive
+    SUBDIR += py-sexpdata
     SUBDIR += py-sh
     SUBDIR += py-shapely
     SUBDIR += py-shellingham

Added: head/devel/py-sexpdata/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-sexpdata/Makefile	Fri Apr 26 20:57:57 2019	(r500168)
@@ -0,0 +1,19 @@
+# Created by: Dmitry Marakasov <amdmi3 at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	sexpdata
+PORTVERSION=	0.0.3
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	amdmi3 at FreeBSD.org
+COMMENT=	S-expression parser for Python
+
+LICENSE=	BSD2CLAUSE
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-sexpdata/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-sexpdata/distinfo	Fri Apr 26 20:57:57 2019	(r500168)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1554920367
+SHA256 (sexpdata-0.0.3.tar.gz) = 1ac827a616c5e87ebb60fd6686fb86f8a166938c645f4089d92de3ffbdd494e0
+SIZE (sexpdata-0.0.3.tar.gz) = 6280

Added: head/devel/py-sexpdata/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-sexpdata/pkg-descr	Fri Apr 26 20:57:57 2019	(r500168)
@@ -0,0 +1,4 @@
+sexpdata is a simple S-expression parser/serializer. It has simple
+load and dump functions like pickle, json or PyYAML module.
+
+WWW: https://github.com/jd-boyd/sexpdata


More information about the svn-ports-all mailing list