Date: Sat, 6 May 2017 07:28:37 +0000 (UTC) From: Martin Wilke <miwi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r440236 - in head/devel: . py-pybind11 Message-ID: <201705060728.v467Sbc7016278@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: miwi Date: Sat May 6 07:28:37 2017 New Revision: 440236 URL: https://svnweb.freebsd.org/changeset/ports/440236 Log: A lightweight header-only library to create Python bindings of existing C++ code. Its goals and syntax are similar to the excellent Boost.Python library by David Abrahams: to minimize boilerplate code in traditional extension modules by inferring type information using compile-time introspection. WWW: https://github.com/wjakob/pybind11 PR: 214685 Submitted by: Yuri Victorovich <yuri@rawbw.com> Added: head/devel/py-pybind11/ head/devel/py-pybind11/Makefile (contents, props changed) head/devel/py-pybind11/distinfo (contents, props changed) head/devel/py-pybind11/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat May 6 06:41:14 2017 (r440235) +++ head/devel/Makefile Sat May 6 07:28:37 2017 (r440236) @@ -4541,6 +4541,7 @@ SUBDIR += py-py SUBDIR += py-pyasn1 SUBDIR += py-pyasn1-modules + SUBDIR += py-pybind11 SUBDIR += py-pycadf SUBDIR += py-pycalendar SUBDIR += py-pycallgraph Added: head/devel/py-pybind11/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pybind11/Makefile Sat May 6 07:28:37 2017 (r440236) @@ -0,0 +1,19 @@ +# Created by: Yuri Victorovich <yuri@rawbw.com> +# $FreeBSD$ + +PORTNAME= pybind11 +PORTVERSION= 1.8.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@rawbw.com +COMMENT= Seamless interoperability between C++11 and Python + +LICENSE= BSD3CLAUSE + +USES= python:2 +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/devel/py-pybind11/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pybind11/distinfo Sat May 6 07:28:37 2017 (r440236) @@ -0,0 +1,3 @@ +TIMESTAMP = 1479626622 +SHA256 (pybind11-1.8.1.tar.gz) = 358d4b7d8c38cd1dde66064178c6bbaaa2c479a44e67e642820fe0f329a4fff8 +SIZE (pybind11-1.8.1.tar.gz) = 45860 Added: head/devel/py-pybind11/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pybind11/pkg-descr Sat May 6 07:28:37 2017 (r440236) @@ -0,0 +1,7 @@ +A lightweight header-only library to create Python bindings of existing +C++ code. Its goals and syntax are similar to the excellent Boost.Python +library by David Abrahams: to minimize boilerplate code in traditional +extension modules by inferring type information using compile-time +introspection. + +WWW: https://github.com/wjakob/pybind11
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201705060728.v467Sbc7016278>