Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 24 Sep 2020 13:13:28 +0000 (UTC)
From:      Mateusz Piotrowski <0mp@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r549919 - in head/devel: . py-cppheaderparser
Message-ID:  <202009241313.08ODDSF1013818@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: 0mp
Date: Thu Sep 24 13:13:27 2020
New Revision: 549919
URL: https://svnweb.freebsd.org/changeset/ports/549919

Log:
  Add devel/py-cppheaderparser
  
  CppHeaderParser can be used to parse C++ header files and generate a data
  structure representing the class.
  
  WWW: http://senexcanis.com/open-source/cppheaderparser/
  
  This is a dependency for future versions of security/py-angr.

Added:
  head/devel/py-cppheaderparser/
  head/devel/py-cppheaderparser/Makefile   (contents, props changed)
  head/devel/py-cppheaderparser/distinfo   (contents, props changed)
  head/devel/py-cppheaderparser/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu Sep 24 12:52:40 2020	(r549918)
+++ head/devel/Makefile	Thu Sep 24 13:13:27 2020	(r549919)
@@ -4273,6 +4273,7 @@
     SUBDIR += py-coverage
     SUBDIR += py-coverage_enable_subprocess
     SUBDIR += py-cppy
+    SUBDIR += py-cppheaderparser
     SUBDIR += py-crank
     SUBDIR += py-crashtest
     SUBDIR += py-crc32c

Added: head/devel/py-cppheaderparser/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-cppheaderparser/Makefile	Thu Sep 24 13:13:27 2020	(r549919)
@@ -0,0 +1,25 @@
+# $FreeBSD$
+
+PORTNAME=	${_PYPI_NAME:tl}
+PORTVERSION=	2.7.4
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+DISTNAME=	${_PYPI_NAME}-${PORTVERSION}
+
+MAINTAINER=	0mp@FreeBSD.org
+COMMENT=	Parse C++ header files and generate a data structure representing the class
+
+# There is no license file,
+# the license is specified directly in the source file.
+LICENSE=	BSD2CLAUSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}ply>=0:devel/py-ply@${PY_FLAVOR}
+
+USES=		python shebangfix
+USE_PYTHON=	autoplist distutils
+SHEBANG_GLOB=	*.py
+
+_PYPI_NAME=	CppHeaderParser
+
+.include <bsd.port.mk>

Added: head/devel/py-cppheaderparser/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-cppheaderparser/distinfo	Thu Sep 24 13:13:27 2020	(r549919)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1600951944
+SHA256 (CppHeaderParser-2.7.4.tar.gz) = 382b30416d95b0a5e8502b214810dcac2a56432917e2651447d3abe253e3cc42
+SIZE (CppHeaderParser-2.7.4.tar.gz) = 54445

Added: head/devel/py-cppheaderparser/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-cppheaderparser/pkg-descr	Thu Sep 24 13:13:27 2020	(r549919)
@@ -0,0 +1,4 @@
+CppHeaderParser can be used to parse C++ header files and generate a data
+structure representing the class.
+
+WWW: http://senexcanis.com/open-source/cppheaderparser/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009241313.08ODDSF1013818>