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 To be used with math/py-kiwisolver Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D24369
18 lines
379 B
Makefile
18 lines
379 B
Makefile
# $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 <bsd.port.mk>
|