From owner-svn-ports-head@freebsd.org Tue May 8 19:35:04 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 97CDAFC77B1; Tue, 8 May 2018 19:35:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4A46482A86; Tue, 8 May 2018 19:35:04 +0000 (UTC) (envelope-from sunpoet@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 2CC462EA4A; Tue, 8 May 2018 19:35:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w48JZ4lw007432; Tue, 8 May 2018 19:35:04 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w48JZ3qO007428; Tue, 8 May 2018 19:35:03 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201805081935.w48JZ3qO007428@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 8 May 2018 19:35:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r469391 - in head/devel: . py-cbor X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-cbor X-SVN-Commit-Revision: 469391 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 May 2018 19:35:04 -0000 Author: sunpoet Date: Tue May 8 19:35:03 2018 New Revision: 469391 URL: https://svnweb.freebsd.org/changeset/ports/469391 Log: Add py-cbor 1.0.0 An implementation of RFC 7049 - Concise Binary Object Representation (CBOR). CBOR is comparable to JSON, has a superset of JSON's ability, but serializes to a binary format which is smaller and faster to generate and parse. The two primary functions are cbor.loads() and cbor.dumps(). This library includes a C implementation which runs 3-5 times faster than the Python standard library's C-accelerated implementanion of JSON. This is also includes a 100% Python implementation. WWW: https://pypi.org/project/cbor/ WWW: https://bitbucket.org/bodhisnarkva/cbor Added: head/devel/py-cbor/ head/devel/py-cbor/Makefile (contents, props changed) head/devel/py-cbor/distinfo (contents, props changed) head/devel/py-cbor/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue May 8 19:14:50 2018 (r469390) +++ head/devel/Makefile Tue May 8 19:35:03 2018 (r469391) @@ -4357,6 +4357,7 @@ SUBDIR += py-canonicaljson SUBDIR += py-capstone SUBDIR += py-castellan + SUBDIR += py-cbor SUBDIR += py-cclib SUBDIR += py-cdg SUBDIR += py-celery Added: head/devel/py-cbor/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cbor/Makefile Tue May 8 19:35:03 2018 (r469391) @@ -0,0 +1,21 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= cbor +PORTVERSION= 1.0.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= RFC 7049 - Concise Binary Object Representation + +LICENSE= APACHE20 + +USE_PYTHON= autoplist concurrent distutils +USES= python + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/cbor/_cbor.so + +.include Added: head/devel/py-cbor/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cbor/distinfo Tue May 8 19:35:03 2018 (r469391) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523535472 +SHA256 (cbor-1.0.0.tar.gz) = 13225a262ddf5615cbd9fd55a76a0d53069d18b07d2e9f19c39e6acb8609bbb6 +SIZE (cbor-1.0.0.tar.gz) = 20096 Added: head/devel/py-cbor/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cbor/pkg-descr Tue May 8 19:35:03 2018 (r469391) @@ -0,0 +1,13 @@ +An implementation of RFC 7049 - Concise Binary Object Representation (CBOR). + +CBOR is comparable to JSON, has a superset of JSON's ability, but serializes to +a binary format which is smaller and faster to generate and parse. + +The two primary functions are cbor.loads() and cbor.dumps(). + +This library includes a C implementation which runs 3-5 times faster than the +Python standard library's C-accelerated implementanion of JSON. This is also +includes a 100% Python implementation. + +WWW: https://pypi.org/project/cbor/ +WWW: https://bitbucket.org/bodhisnarkva/cbor