Index: head/devel/Makefile =================================================================== --- head/devel/Makefile +++ head/devel/Makefile @@ -4280,6 +4280,7 @@ SUBDIR += py-country SUBDIR += py-cov-core SUBDIR += py-coverage + SUBDIR += py-cppy SUBDIR += py-crank SUBDIR += py-crashtest SUBDIR += py-crc32c Index: head/devel/py-cppy/Makefile =================================================================== --- head/devel/py-cppy/Makefile +++ head/devel/py-cppy/Makefile @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= cppy +DISTVERSION= 1.1.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= lbartoletti@FreeBSD.org +COMMENT= Collection of C++ headers to write Python C extension modules + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python +USE_PYTHON= autoplist concurrent distutils + +.include Index: head/devel/py-cppy/distinfo =================================================================== --- head/devel/py-cppy/distinfo +++ head/devel/py-cppy/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1586582962 +SHA256 (cppy-1.1.0.tar.gz) = 4eda6f1952054a270f32dc11df7c5e24b259a09fddf7bfaa5f33df9fb4a29642 +SIZE (cppy-1.1.0.tar.gz) = 11777 Index: head/devel/py-cppy/pkg-descr =================================================================== --- head/devel/py-cppy/pkg-descr +++ head/devel/py-cppy/pkg-descr @@ -0,0 +1,6 @@ +A small C++ header library which makes it easier to write Python extension +modules. The primary feature is a PyObject smart pointer which automatically +handles reference counting and provides convenience methods for performing +common object operations. + +WWW: https://pypi.python.org/pypi/cppy