svn commit: r534322 - in head/devel: . py-cppy

Loïc Bartoletti lbartoletti at FreeBSD.org
Fri May 8 05:19:06 UTC 2020


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 at 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


More information about the svn-ports-head mailing list