From owner-svn-ports-all@freebsd.org Sun Aug 5 02:52:01 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 DC0B7105F9EC; Sun, 5 Aug 2018 02:52:00 +0000 (UTC) (envelope-from yuri@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 9249175494; Sun, 5 Aug 2018 02:52:00 +0000 (UTC) (envelope-from yuri@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 5AB13186BE; Sun, 5 Aug 2018 02:52:00 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w752q0hr005470; Sun, 5 Aug 2018 02:52:00 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w752pxxH005460; Sun, 5 Aug 2018 02:51:59 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201808050251.w752pxxH005460@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 5 Aug 2018 02:51:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r476386 - in head/textproc: . py-pygccxml X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/textproc: . py-pygccxml X-SVN-Commit-Revision: 476386 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: Sun, 05 Aug 2018 02:52:01 -0000 Author: yuri Date: Sun Aug 5 02:51:59 2018 New Revision: 476386 URL: https://svnweb.freebsd.org/changeset/ports/476386 Log: New port: textproc/py-pygccxml: Python package for easy C++ declarations navigation Added: head/textproc/py-pygccxml/ head/textproc/py-pygccxml/Makefile (contents, props changed) head/textproc/py-pygccxml/distinfo (contents, props changed) head/textproc/py-pygccxml/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sun Aug 5 02:26:26 2018 (r476385) +++ head/textproc/Makefile Sun Aug 5 02:51:59 2018 (r476386) @@ -1356,6 +1356,7 @@ SUBDIR += py-pyaml SUBDIR += py-pyctpp2 SUBDIR += py-pyes + SUBDIR += py-pygccxml SUBDIR += py-pygments SUBDIR += py-pygtail SUBDIR += py-pyhamcrest Added: head/textproc/py-pygccxml/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-pygccxml/Makefile Sun Aug 5 02:51:59 2018 (r476386) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= pygccxml +DISTVERSIONPREFIX= v +DISTVERSION= 1.9.1 +CATEGORIES= textproc python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Python package for easy C++ declarations navigation + +LICENSE= BSL +LICENSE_FILE= ${WRKSRC}/LICENSE.rst + +USES= python +USE_GITHUB= yes +GH_ACCOUNT= gccxml +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/textproc/py-pygccxml/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-pygccxml/distinfo Sun Aug 5 02:51:59 2018 (r476386) @@ -0,0 +1,3 @@ +TIMESTAMP = 1533437147 +SHA256 (gccxml-pygccxml-v1.9.1_GH0.tar.gz) = 2fb4e18f7a3ae039a05230ca58f11e1fc925c8643f926a1be481bb4338414a95 +SIZE (gccxml-pygccxml-v1.9.1_GH0.tar.gz) = 3169515 Added: head/textproc/py-pygccxml/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-pygccxml/pkg-descr Sun Aug 5 02:51:59 2018 (r476386) @@ -0,0 +1,5 @@ +pygccxml is a specialized XML reader that reads the output from CastXML or +GCCXML. It provides a simple framework to navigate C++ declarations, using +Python classes. + +WWW: https://github.com/gccxml/pygccxml