Date: Fri, 8 May 2020 05:19:05 +0000 (UTC) From: =?UTF-8?Q?Lo=c3=afc_Bartoletti?= <lbartoletti@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r534322 - in head/devel: . py-cppy Message-ID: <202005080519.0485J5WC001932@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: lbartoletti Date: Fri May 8 05:19:05 2020 New Revision: 534322 URL: https://svnweb.freebsd.org/changeset/ports/534322 Log: [NEW PORT] devel/py-cppy: Fast implementation of the Cassowary constraint solver 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 Added: head/devel/py-cppy/ head/devel/py-cppy/Makefile (contents, props changed) head/devel/py-cppy/distinfo (contents, props changed) head/devel/py-cppy/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri May 8 04:47:21 2020 (r534321) +++ head/devel/Makefile Fri May 8 05:19:05 2020 (r534322) @@ -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 Added: head/devel/py-cppy/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cppy/Makefile Fri May 8 05:19:05 2020 (r534322) @@ -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 <bsd.port.mk> Added: head/devel/py-cppy/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cppy/distinfo Fri May 8 05:19:05 2020 (r534322) @@ -0,0 +1,3 @@ +TIMESTAMP = 1586582962 +SHA256 (cppy-1.1.0.tar.gz) = 4eda6f1952054a270f32dc11df7c5e24b259a09fddf7bfaa5f33df9fb4a29642 +SIZE (cppy-1.1.0.tar.gz) = 11777 Added: head/devel/py-cppy/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cppy/pkg-descr Fri May 8 05:19:05 2020 (r534322) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005080519.0485J5WC001932>