From owner-svn-ports-head@freebsd.org Mon Feb 26 22:29:51 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 6D5F0F285B3; Mon, 26 Feb 2018 22:29:51 +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 22D496DC27; Mon, 26 Feb 2018 22:29:51 +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 0056C21807; Mon, 26 Feb 2018 22:29:50 +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 w1QMTofM020861; Mon, 26 Feb 2018 22:29:50 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1QMToRD020857; Mon, 26 Feb 2018 22:29:50 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201802262229.w1QMToRD020857@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 26 Feb 2018 22:29:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r463054 - in head/devel: . py-jsonlines X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-jsonlines X-SVN-Commit-Revision: 463054 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: Mon, 26 Feb 2018 22:29:51 -0000 Author: sunpoet Date: Mon Feb 26 22:29:50 2018 New Revision: 463054 URL: https://svnweb.freebsd.org/changeset/ports/463054 Log: Add py-jsonlines 1.2.0 jsonlines is a Python library to simplify working with jsonlines and ndjson data. WWW: https://pypi.python.org/pypi/jsonlines WWW: https://github.com/wbolster/jsonlines Added: head/devel/py-jsonlines/ head/devel/py-jsonlines/Makefile (contents, props changed) head/devel/py-jsonlines/distinfo (contents, props changed) head/devel/py-jsonlines/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Feb 26 22:14:40 2018 (r463053) +++ head/devel/Makefile Mon Feb 26 22:29:50 2018 (r463054) @@ -4546,6 +4546,7 @@ SUBDIR += py-json-sempai SUBDIR += py-jsonlib SUBDIR += py-jsonlib2 + SUBDIR += py-jsonlines SUBDIR += py-jsonpatch SUBDIR += py-jsonpointer SUBDIR += py-jsonref Added: head/devel/py-jsonlines/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jsonlines/Makefile Mon Feb 26 22:29:50 2018 (r463054) @@ -0,0 +1,22 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= jsonlines +PORTVERSION= 1.2.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Library with helpers for the jsonlines file format + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.rst + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${FLAVOR} + +NO_ARCH= yes +USE_PYTHON= autoplist concurrent distutils +USES= python + +.include Added: head/devel/py-jsonlines/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jsonlines/distinfo Mon Feb 26 22:29:50 2018 (r463054) @@ -0,0 +1,3 @@ +TIMESTAMP = 1519647064 +SHA256 (jsonlines-1.2.0.tar.gz) = 43b8d5588a9d4862c8a4a49580e38e20ec595aee7ad6fe469b10fb83fbefde88 +SIZE (jsonlines-1.2.0.tar.gz) = 6075 Added: head/devel/py-jsonlines/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jsonlines/pkg-descr Mon Feb 26 22:29:50 2018 (r463054) @@ -0,0 +1,5 @@ +jsonlines is a Python library to simplify working with jsonlines and ndjson +data. + +WWW: https://pypi.python.org/pypi/jsonlines +WWW: https://github.com/wbolster/jsonlines