From owner-svn-ports-all@freebsd.org Fri Nov 10 18:57:09 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 14FDBE030A1; Fri, 10 Nov 2017 18:57:09 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E35C67E2FF; Fri, 10 Nov 2017 18:57:08 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAAIv8g8044083; Fri, 10 Nov 2017 18:57:08 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAAIv7aD044078; Fri, 10 Nov 2017 18:57:07 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201711101857.vAAIv7aD044078@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 10 Nov 2017 18:57:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r453910 - in head/devel: . pybind11 X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . pybind11 X-SVN-Commit-Revision: 453910 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Nov 2017 18:57:09 -0000 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 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