Date: Sun, 5 Aug 2018 03:06:08 +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: r476387 - in head/devel: . py-pyplusplus Message-ID: <201808050306.w75368hY011595@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Sun Aug 5 03:06:07 2018 New Revision: 476387 URL: https://svnweb.freebsd.org/changeset/ports/476387 Log: New port: devel/py-pyplusplus: Framework of components for creating a C++ code generator Added: head/devel/py-pyplusplus/ head/devel/py-pyplusplus/Makefile (contents, props changed) head/devel/py-pyplusplus/distinfo (contents, props changed) head/devel/py-pyplusplus/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Aug 5 02:51:59 2018 (r476386) +++ head/devel/Makefile Sun Aug 5 03:06:07 2018 (r476387) @@ -4903,6 +4903,7 @@ SUBDIR += py-pyopencl SUBDIR += py-pyparsing SUBDIR += py-pyperclip + SUBDIR += py-pyplusplus SUBDIR += py-pypugjs SUBDIR += py-pyqi SUBDIR += py-pyqtree Added: head/devel/py-pyplusplus/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pyplusplus/Makefile Sun Aug 5 03:06:07 2018 (r476387) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= pyplusplus +DISTVERSION= 1.8.1 +CATEGORIES= devel +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Framework of components for creating a C++ code generator + +LICENSE= BSL + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pygccxml>0:textproc/py-pygccxml@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pygccxml>0:textproc/py-pygccxml@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/devel/py-pyplusplus/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pyplusplus/distinfo Sun Aug 5 03:06:07 2018 (r476387) @@ -0,0 +1,3 @@ +TIMESTAMP = 1533437866 +SHA256 (pyplusplus-1.8.1.tar.gz) = bc2b6ebe6ab4503e92cec6c79e7991462e93768968f633e03dc31130a332c654 +SIZE (pyplusplus-1.8.1.tar.gz) = 164540 Added: head/devel/py-pyplusplus/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pyplusplus/pkg-descr Sun Aug 5 03:06:07 2018 (r476387) @@ -0,0 +1,11 @@ +Py++ is an object-oriented framework for creating a code generator for +Boost.Python library and ctypes package. + +Py++ uses few different programming paradigms to help you to expose C++ +declarations to Python. This code generator will not stand on your way. +It will guide you through the whole process. It will raise warnings in the case +you are doing something wrong with a link to the explanation. And the most +important it will save your time - you will not have to update code generator +script every time source code is changed. + +WWW: https://bitbucket.org/ompl/pyplusplus/src
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808050306.w75368hY011595>