From owner-svn-ports-all@freebsd.org Sat Dec 22 21:15:54 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 CC810133C3C0; Sat, 22 Dec 2018 21:15:53 +0000 (UTC) (envelope-from dbaio@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) server-signature RSA-PSS (4096 bits) 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 7239072070; Sat, 22 Dec 2018 21:15:53 +0000 (UTC) (envelope-from dbaio@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 647C92A0C; Sat, 22 Dec 2018 21:15:53 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wBMLFrZP000271; Sat, 22 Dec 2018 21:15:53 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wBMLFq0L000266; Sat, 22 Dec 2018 21:15:52 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201812222115.wBMLFq0L000266@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Sat, 22 Dec 2018 21:15:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r488133 - in head/devel: . py-antlr4-python2-runtime py-antlr4-python3-runtime X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: in head/devel: . py-antlr4-python2-runtime py-antlr4-python3-runtime X-SVN-Commit-Revision: 488133 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7239072070 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.977,0]; NEURAL_HAM_LONG(-1.00)[-0.998,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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: Sat, 22 Dec 2018 21:15:54 -0000 Author: dbaio Date: Sat Dec 22 21:15:52 2018 New Revision: 488133 URL: https://svnweb.freebsd.org/changeset/ports/488133 Log: Add devel/py-antlr4-python2-runtime: ANother Tool for Language Recognition (python2 runtime) ANTLR (ANother Tool for Language Recognition) is a powerful parser generator for reading, processing, executing, or translating structured text or binary files. It's widely used to build languages, tools, and frameworks. From a grammar, ANTLR generates a parser that can build and walk parse trees. This port provides the python2 runtime. WWW: http://www.antlr.org/ Approved by: antoine Differential Revision: https://reviews.freebsd.org/D18631 Added: head/devel/py-antlr4-python2-runtime/ - copied from r488125, head/devel/py-antlr4-python3-runtime/ Modified: head/devel/Makefile head/devel/py-antlr4-python2-runtime/Makefile head/devel/py-antlr4-python2-runtime/distinfo head/devel/py-antlr4-python2-runtime/pkg-descr head/devel/py-antlr4-python3-runtime/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Dec 22 21:07:55 2018 (r488132) +++ head/devel/Makefile Sat Dec 22 21:15:52 2018 (r488133) @@ -4354,6 +4354,7 @@ SUBDIR += py-amalgamate SUBDIR += py-aniso8601 SUBDIR += py-anonfunc + SUBDIR += py-antlr4-python2-runtime SUBDIR += py-antlr4-python3-runtime SUBDIR += py-anyconfig SUBDIR += py-anyjson Modified: head/devel/py-antlr4-python2-runtime/Makefile ============================================================================== --- head/devel/py-antlr4-python3-runtime/Makefile Sat Dec 22 20:06:52 2018 (r488125) +++ head/devel/py-antlr4-python2-runtime/Makefile Sat Dec 22 21:15:52 2018 (r488133) @@ -1,18 +1,19 @@ # $FreeBSD$ -PORTNAME= antlr4-python3-runtime +PORTNAME= antlr4-python2-runtime PORTVERSION= 4.7.2 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= antoine@FreeBSD.org -COMMENT= ANother Tool for Language Recognition (python3 runtime) +COMMENT= ANother Tool for Language Recognition (python2 runtime) LICENSE= BSD3CLAUSE -NO_ARCH= yes -USES= python:3.4+ +USES= python:2.7 USE_PYTHON= distutils autoplist + +NO_ARCH= yes .include Modified: head/devel/py-antlr4-python2-runtime/distinfo ============================================================================== --- head/devel/py-antlr4-python3-runtime/distinfo Sat Dec 22 20:06:52 2018 (r488125) +++ head/devel/py-antlr4-python2-runtime/distinfo Sat Dec 22 21:15:52 2018 (r488133) @@ -1,3 +1,3 @@ -TIMESTAMP = 1545251219 -SHA256 (antlr4-python3-runtime-4.7.2.tar.gz) = 168cdcec8fb9152e84a87ca6fd261b3d54c8f6358f42ab3b813b14a7193bb50b -SIZE (antlr4-python3-runtime-4.7.2.tar.gz) = 112278 +TIMESTAMP = 1545512692 +SHA256 (antlr4-python2-runtime-4.7.2.tar.gz) = 580825bdd89ed6200170710cb26cc1e64f96f145870d8c2cfdf162cb0b8b9212 +SIZE (antlr4-python2-runtime-4.7.2.tar.gz) = 111795 Modified: head/devel/py-antlr4-python2-runtime/pkg-descr ============================================================================== --- head/devel/py-antlr4-python3-runtime/pkg-descr Sat Dec 22 20:06:52 2018 (r488125) +++ head/devel/py-antlr4-python2-runtime/pkg-descr Sat Dec 22 21:15:52 2018 (r488133) @@ -3,6 +3,6 @@ reading, processing, executing, or translating structu It's widely used to build languages, tools, and frameworks. From a grammar, ANTLR generates a parser that can build and walk parse trees. -This port provides the python3 runtime. +This port provides the python2 runtime. WWW: http://www.antlr.org/ Modified: head/devel/py-antlr4-python3-runtime/Makefile ============================================================================== --- head/devel/py-antlr4-python3-runtime/Makefile Sat Dec 22 21:07:55 2018 (r488132) +++ head/devel/py-antlr4-python3-runtime/Makefile Sat Dec 22 21:15:52 2018 (r488133) @@ -11,8 +11,9 @@ COMMENT= ANother Tool for Language Recognition (python LICENSE= BSD3CLAUSE -NO_ARCH= yes USES= python:3.4+ USE_PYTHON= distutils autoplist + +NO_ARCH= yes .include