Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 29 Jun 2020 15:38:32 +0000 (UTC)
From:      "Jason W. Bacon" <jwb@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r540781 - in head/devel: . py-srsly
Message-ID:  <202006291538.05TFcWWt007888@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jwb
Date: Mon Jun 29 15:38:32 2020
New Revision: 540781
URL: https://svnweb.freebsd.org/changeset/ports/540781

Log:
  devel/py-srsly: Modern high-performance serialization utilities for Python
  
  This package bundles some of the best Python serialization libraries into one
  standalone package, with a high-level API that makes it easy to write code
  that's correct across platforms and Pythons. This allows us to provide all the
  serialization utilities we need in a single binary wheel. Currently supports
  JSON, JSONL, MessagePack, Pickle and YAML.

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Jun 29 15:33:40 2020	(r540780)
+++ head/devel/Makefile	Mon Jun 29 15:38:32 2020	(r540781)
@@ -5077,6 +5077,7 @@
     SUBDIR += py-speaklater
     SUBDIR += py-spyder
     SUBDIR += py-sqlcc
+    SUBDIR += py-srsly
     SUBDIR += py-stackexchange
     SUBDIR += py-statgrab
     SUBDIR += py-statsd

Added: head/devel/py-srsly/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-srsly/Makefile	Mon Jun 29 15:38:32 2020	(r540781)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	srsly
+DISTVERSION=	2.1.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	jwb@FreeBSD.org
+COMMENT=	Modern high-performance serialization utilities for Python
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist cython distutils
+
+post-install:
+	@${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/srsly/*/*.so
+
+.include <bsd.port.mk>

Added: head/devel/py-srsly/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-srsly/distinfo	Mon Jun 29 15:38:32 2020	(r540781)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1593369374
+SHA256 (srsly-2.1.0.tar.gz) = 6310c5dac1c9121b6d919507ced0871c44690cb93c8d5b979db5b455cbc087eb
+SIZE (srsly-2.1.0.tar.gz) = 316014

Added: head/devel/py-srsly/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-srsly/pkg-descr	Mon Jun 29 15:38:32 2020	(r540781)
@@ -0,0 +1,7 @@
+This package bundles some of the best Python serialization libraries into one
+standalone package, with a high-level API that makes it easy to write code
+that's correct across platforms and Pythons. This allows us to provide all the
+serialization utilities we need in a single binary wheel. Currently supports
+JSON, JSONL, MessagePack, Pickle and YAML.
+
+WWW: https://github.com/explosion/srsly



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