From owner-svn-ports-all@freebsd.org Mon Aug 27 19:42:42 2018 Return-Path: Delivered-To: svn-ports-all@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 94E7C1094678; Mon, 27 Aug 2018 19:42:42 +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 40B0180A14; Mon, 27 Aug 2018 19:42:42 +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 1E66622324; Mon, 27 Aug 2018 19:42:42 +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 w7RJgf25092498; Mon, 27 Aug 2018 19:42:41 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7RJgfT1092494; Mon, 27 Aug 2018 19:42:41 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201808271942.w7RJgfT1092494@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, 27 Aug 2018 19:42:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r478246 - in head/devel: . py-arpeggio X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-arpeggio X-SVN-Commit-Revision: 478246 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.27 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, 27 Aug 2018 19:42:42 -0000 Author: sunpoet Date: Mon Aug 27 19:42:40 2018 New Revision: 478246 URL: https://svnweb.freebsd.org/changeset/ports/478246 Log: Add py-arpeggio 1.9.0 Arpeggio is a recursive descent parser with memoization based on PEG grammars (aka Packrat parser). WWW: https://github.com/igordejanovic/Arpeggio Added: head/devel/py-arpeggio/ head/devel/py-arpeggio/Makefile (contents, props changed) head/devel/py-arpeggio/distinfo (contents, props changed) head/devel/py-arpeggio/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Aug 27 19:39:45 2018 (r478245) +++ head/devel/Makefile Mon Aug 27 19:42:40 2018 (r478246) @@ -4346,6 +4346,7 @@ SUBDIR += py-argh SUBDIR += py-argparse SUBDIR += py-args + SUBDIR += py-arpeggio SUBDIR += py-arrow SUBDIR += py-asn1crypto SUBDIR += py-aspects Added: head/devel/py-arpeggio/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-arpeggio/Makefile Mon Aug 27 19:42:40 2018 (r478246) @@ -0,0 +1,21 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= arpeggio +PORTVERSION= 1.9.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= Arpeggio-${PORTVERSION} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Parser interpreter based on PEG grammars + +LICENSE= MIT + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/devel/py-arpeggio/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-arpeggio/distinfo Mon Aug 27 19:42:40 2018 (r478246) @@ -0,0 +1,3 @@ +TIMESTAMP = 1535392758 +SHA256 (Arpeggio-1.9.0.tar.gz) = a5258b84f76661d558492fa87e42db634df143685a0e51802d59cae7daad8732 +SIZE (Arpeggio-1.9.0.tar.gz) = 20548 Added: head/devel/py-arpeggio/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-arpeggio/pkg-descr Mon Aug 27 19:42:40 2018 (r478246) @@ -0,0 +1,4 @@ +Arpeggio is a recursive descent parser with memoization based on PEG grammars +(aka Packrat parser). + +WWW: https://github.com/igordejanovic/Arpeggio