Date: Fri, 10 Nov 2017 18:57:07 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r453910 - in head/devel: . pybind11 Message-ID: <201711101857.vAAIv7aD044078@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Fri Nov 10 18:57:07 2017 New Revision: 453910 URL: https://svnweb.freebsd.org/changeset/ports/453910 Log: New port: devel/pybind11: Seamless operability between C++11 and Python (cmake part) Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D13025 Added: head/devel/pybind11/ head/devel/pybind11/Makefile (contents, props changed) head/devel/pybind11/distinfo (contents, props changed) head/devel/pybind11/pkg-descr (contents, props changed) head/devel/pybind11/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Nov 10 18:45:40 2017 (r453909) +++ head/devel/Makefile Fri Nov 10 18:57:07 2017 (r453910) @@ -5142,6 +5142,7 @@ SUBDIR += py35-setuptools SUBDIR += py36-setuptools SUBDIR += py_static_check + SUBDIR += pybind11 SUBDIR += pybugz SUBDIR += pycharm-ce SUBDIR += pychecker Added: head/devel/pybind11/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pybind11/Makefile Fri Nov 10 18:57:07 2017 (r453910) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= pybind11 +DISTVERSIONPREFIX= v +DISTVERSION= 2.2.1 +CATEGORIES= devel python + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Seamless interoperability between C++11 and Python (cmake part) + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cmake:outsource +USE_GITHUB= yes +GH_ACCOUNT= pybind +NO_ARCH= yes +CMAKE_ARGS= -DPYBIND11_TEST:BOOL="OFF" + +.include <bsd.port.mk> Added: head/devel/pybind11/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pybind11/distinfo Fri Nov 10 18:57:07 2017 (r453910) @@ -0,0 +1,3 @@ +TIMESTAMP = 1510299608 +SHA256 (pybind-pybind11-v2.2.1_GH0.tar.gz) = f8bd1509578b2a1e7407d52e6ee8afe64268909a1bbda620ca407318598927e7 +SIZE (pybind-pybind11-v2.2.1_GH0.tar.gz) = 540643 Added: head/devel/pybind11/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pybind11/pkg-descr Fri Nov 10 18:57:07 2017 (r453910) @@ -0,0 +1,9 @@ +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. + +This is the cmake part of pybind11. + +WWW: https://github.com/wjakob/pybind11 Added: head/devel/pybind11/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pybind11/pkg-plist Fri Nov 10 18:57:07 2017 (r453910) @@ -0,0 +1,29 @@ +include/pybind11/attr.h +include/pybind11/buffer_info.h +include/pybind11/cast.h +include/pybind11/chrono.h +include/pybind11/common.h +include/pybind11/complex.h +include/pybind11/detail/class.h +include/pybind11/detail/common.h +include/pybind11/detail/descr.h +include/pybind11/detail/init.h +include/pybind11/detail/internals.h +include/pybind11/detail/typeid.h +include/pybind11/eigen.h +include/pybind11/embed.h +include/pybind11/eval.h +include/pybind11/functional.h +include/pybind11/iostream.h +include/pybind11/numpy.h +include/pybind11/operators.h +include/pybind11/options.h +include/pybind11/pybind11.h +include/pybind11/pytypes.h +include/pybind11/stl.h +include/pybind11/stl_bind.h +share/cmake/pybind11/FindPythonLibsNew.cmake +share/cmake/pybind11/pybind11Config.cmake +share/cmake/pybind11/pybind11ConfigVersion.cmake +share/cmake/pybind11/pybind11Targets.cmake +share/cmake/pybind11/pybind11Tools.cmake
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201711101857.vAAIv7aD044078>