From owner-svn-ports-all@freebsd.org Mon Jun 29 15:38:33 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id C1B5834C447; Mon, 29 Jun 2020 15:38:33 +0000 (UTC) (envelope-from jwb@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49wWqF4lLvz3g57; Mon, 29 Jun 2020 15:38:33 +0000 (UTC) (envelope-from jwb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6C2ED9652; Mon, 29 Jun 2020 15:38:33 +0000 (UTC) (envelope-from jwb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 05TFcXJf007895; Mon, 29 Jun 2020 15:38:33 GMT (envelope-from jwb@FreeBSD.org) Received: (from jwb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 05TFcWWt007888; Mon, 29 Jun 2020 15:38:32 GMT (envelope-from jwb@FreeBSD.org) Message-Id: <202006291538.05TFcWWt007888@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jwb set sender to jwb@FreeBSD.org using -f From: "Jason W. Bacon" Date: Mon, 29 Jun 2020 15:38:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r540781 - in head/devel: . py-srsly X-SVN-Group: ports-head X-SVN-Commit-Author: jwb X-SVN-Commit-Paths: in head/devel: . py-srsly X-SVN-Commit-Revision: 540781 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Jun 2020 15:38:33 -0000 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 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