From owner-svn-ports-head@freebsd.org Sat Mar 24 05:57:44 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 7EA4DF6F7BE; Sat, 24 Mar 2018 05:57:44 +0000 (UTC) (envelope-from yuri@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 31E6B7AA13; Sat, 24 Mar 2018 05:57:44 +0000 (UTC) (envelope-from yuri@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 2CC952CBA; Sat, 24 Mar 2018 05:57:44 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2O5viNd008933; Sat, 24 Mar 2018 05:57:44 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2O5vhCM008929; Sat, 24 Mar 2018 05:57:43 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201803240557.w2O5vhCM008929@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 24 Mar 2018 05:57:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r465426 - in head/devel: . py-json_tricks X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . py-json_tricks X-SVN-Commit-Revision: 465426 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: Sat, 24 Mar 2018 05:57:44 -0000 Author: yuri Date: Sat Mar 24 05:57:43 2018 New Revision: 465426 URL: https://svnweb.freebsd.org/changeset/ports/465426 Log: New port: devel/py-json_tricks: Extra features for Python's JSON: comments, order, datetimes, etc While here, fixed a minor prdering problem in devel/Makefile Added: head/devel/py-json_tricks/ head/devel/py-json_tricks/Makefile (contents, props changed) head/devel/py-json_tricks/distinfo (contents, props changed) head/devel/py-json_tricks/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Mar 24 03:49:04 2018 (r465425) +++ head/devel/Makefile Sat Mar 24 05:57:43 2018 (r465426) @@ -4550,6 +4550,7 @@ SUBDIR += py-jsmin SUBDIR += py-json-py SUBDIR += py-json-sempai + SUBDIR += py-json_tricks SUBDIR += py-jsonlib SUBDIR += py-jsonlib2 SUBDIR += py-jsonlines @@ -5285,6 +5286,7 @@ SUBDIR += rubygem-activesupport4 SUBDIR += rubygem-activesupport5 SUBDIR += rubygem-activesupport50 + SUBDIR += rubygem-airborne SUBDIR += rubygem-akismet SUBDIR += rubygem-algebrick SUBDIR += rubygem-algorithms @@ -5292,7 +5294,6 @@ SUBDIR += rubygem-analogger SUBDIR += rubygem-annoy SUBDIR += rubygem-ansi - SUBDIR += rubygem-airborne SUBDIR += rubygem-apipie-bindings SUBDIR += rubygem-apipie-params SUBDIR += rubygem-app_config Added: head/devel/py-json_tricks/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-json_tricks/Makefile Sat Mar 24 05:57:43 2018 (r465426) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= json_tricks +DISTVERSION= 3.11.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Extra features for Python's JSON: comments, order, datetimes, etc + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/devel/py-json_tricks/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-json_tricks/distinfo Sat Mar 24 05:57:43 2018 (r465426) @@ -0,0 +1,3 @@ +TIMESTAMP = 1521870225 +SHA256 (json_tricks-3.11.3.tar.gz) = dda43dcc3c683972922bbb2d5a79861c8f1a8cee5f28f94d3eb96f28bdd9d4a6 +SIZE (json_tricks-3.11.3.tar.gz) = 33380 Added: head/devel/py-json_tricks/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-json_tricks/pkg-descr Sat Mar 24 05:57:43 2018 (r465426) @@ -0,0 +1,12 @@ +The pyjson-tricks package brings several pieces of functionality to python +handling of json files: + +* Store and load numpy arrays in human-readable format. +* Store and load class instances both generic and customized. +* Store and load date/times as a dictionary (including timezone). +* Preserve map order {} using OrderedDict. +* Allow for comments in json files by starting lines with #. +* Sets, complex numbers, Decimal, Fraction, enums, compression, + duplicate keys, etc. + +WWW: https://github.com/mverleg/pyjson_tricks