From owner-svn-ports-head@freebsd.org Sat Jan 18 18:22:18 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 7BAC31FCD3E; Sat, 18 Jan 2020 18:22:18 +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.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 480R9Q2YDPz4CRM; Sat, 18 Jan 2020 18:22:18 +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 52D622614E; Sat, 18 Jan 2020 18:22:18 +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 00IIMIN5080680; Sat, 18 Jan 2020 18:22:18 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 00IIMHpd080677; Sat, 18 Jan 2020 18:22:17 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202001181822.00IIMHpd080677@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 18 Jan 2020 18:22:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r523431 - in head/devel: . pecl-ast X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . pecl-ast X-SVN-Commit-Revision: 523431 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.29 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, 18 Jan 2020 18:22:18 -0000 Author: sunpoet Date: Sat Jan 18 18:22:17 2020 New Revision: 523431 URL: https://svnweb.freebsd.org/changeset/ports/523431 Log: Add pecl-ast 1.0.5 This extension exposes the abstract syntax tree generated by PHP 7. WWW: http://pecl.php.net/package/ast WWW: https://github.com/nikic/php-ast Added: head/devel/pecl-ast/ head/devel/pecl-ast/Makefile (contents, props changed) head/devel/pecl-ast/distinfo (contents, props changed) head/devel/pecl-ast/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Jan 18 17:42:03 2020 (r523430) +++ head/devel/Makefile Sat Jan 18 18:22:17 2020 (r523431) @@ -3845,6 +3845,7 @@ SUBDIR += pear-pdepend-staticReflection SUBDIR += pear-phing SUBDIR += pecl-APCu + SUBDIR += pecl-ast SUBDIR += pecl-dio SUBDIR += pecl-ds SUBDIR += pecl-eio Added: head/devel/pecl-ast/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-ast/Makefile Sat Jan 18 18:22:17 2020 (r523431) @@ -0,0 +1,16 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= ast +PORTVERSION= 1.0.5 +CATEGORIES= devel + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Extension exposing PHP 7 abstract syntax tree + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= php:pecl + +.include Added: head/devel/pecl-ast/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-ast/distinfo Sat Jan 18 18:22:17 2020 (r523431) @@ -0,0 +1,3 @@ +TIMESTAMP = 1579339389 +SHA256 (PECL/ast-1.0.5.tgz) = 97abc8f650b79fa18a33dc5cdd3511703f986b151387bfd9929a91daa88e8599 +SIZE (PECL/ast-1.0.5.tgz) = 40582 Added: head/devel/pecl-ast/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-ast/pkg-descr Sat Jan 18 18:22:17 2020 (r523431) @@ -0,0 +1,4 @@ +This extension exposes the abstract syntax tree generated by PHP 7. + +WWW: http://pecl.php.net/package/ast +WWW: https://github.com/nikic/php-ast