From owner-svn-ports-head@freebsd.org Sun Sep 27 13:52:41 2020 Return-Path: Delivered-To: svn-ports-head@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 B3D5D3FC8A5; Sun, 27 Sep 2020 13:52:41 +0000 (UTC) (envelope-from nivit@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 4BznCY4HrWz3XtR; Sun, 27 Sep 2020 13:52:41 +0000 (UTC) (envelope-from nivit@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 4A82BDA42; Sun, 27 Sep 2020 13:52:41 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08RDqfaC029735; Sun, 27 Sep 2020 13:52:41 GMT (envelope-from nivit@FreeBSD.org) Received: (from nivit@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08RDqeJT029731; Sun, 27 Sep 2020 13:52:40 GMT (envelope-from nivit@FreeBSD.org) Message-Id: <202009271352.08RDqeJT029731@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nivit set sender to nivit@FreeBSD.org using -f From: Nicola Vitale Date: Sun, 27 Sep 2020 13:52:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r550277 - in head/devel: . py-cson X-SVN-Group: ports-head X-SVN-Commit-Author: nivit X-SVN-Commit-Paths: in head/devel: . py-cson X-SVN-Commit-Revision: 550277 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.33 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: Sun, 27 Sep 2020 13:52:41 -0000 Author: nivit Date: Sun Sep 27 13:52:40 2020 New Revision: 550277 URL: https://svnweb.freebsd.org/changeset/ports/550277 Log: A Python parser for the Coffeescript Object Notation (CSON). WWW: https://github.com/avakar/pycson Added: head/devel/py-cson/ head/devel/py-cson/Makefile (contents, props changed) head/devel/py-cson/distinfo (contents, props changed) head/devel/py-cson/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Sep 27 13:51:48 2020 (r550276) +++ head/devel/Makefile Sun Sep 27 13:52:40 2020 (r550277) @@ -4278,6 +4278,7 @@ SUBDIR += py-crashtest SUBDIR += py-crc32c SUBDIR += py-crcmod + SUBDIR += py-cson SUBDIR += py-csv23 SUBDIR += py-ctags SUBDIR += py-curio Added: head/devel/py-cson/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cson/Makefile Sun Sep 27 13:52:40 2020 (r550277) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= cson +DISTVERSION= 0.8 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= nivit@FreeBSD.org +COMMENT= Coffescript Object Notation (CSON) parser for Python 2 and Python 3 + +LICENSE= MIT + +RUN_DEPENDS= ${PKGNAMEPREFIX}speg>=0.3:devel/py-speg@${PY_FLAVOR} +TEST_DEPENDS= ${PKGNAMEPREFIX}pytest:devel/py-pytest@${PY_FLAVOR} \ + ${PKGNAMEPREFIX}speg>=0.3:devel/py-speg@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist distutils + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest test + +.include Added: head/devel/py-cson/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cson/distinfo Sun Sep 27 13:52:40 2020 (r550277) @@ -0,0 +1,3 @@ +TIMESTAMP = 1601137906 +SHA256 (cson-0.8.tar.gz) = ee8c0166fcd1f51789887197e3e8354ac7befa396fc29706bceb5af25edc9e01 +SIZE (cson-0.8.tar.gz) = 6346 Added: head/devel/py-cson/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cson/pkg-descr Sun Sep 27 13:52:40 2020 (r550277) @@ -0,0 +1,3 @@ +A Python parser for the Coffeescript Object Notation (CSON). + +WWW: https://github.com/avakar/pycson