Date: Mon, 3 Jun 2019 02:59:11 +0000 (UTC) From: Kubilay Kocak <koobs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r503342 - in head/devel: . py-flatbuffers Message-ID: <201906030259.x532xBu8074905@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: koobs Date: Mon Jun 3 02:59:10 2019 New Revision: 503342 URL: https://svnweb.freebsd.org/changeset/ports/503342 Log: [NEW] devel/py-flatbuffers: FlatBuffers serialization format for Python Python runtime library for use with the Flatbuffers serialization format: WWW: https://google.github.io/flatbuffers/ Added: head/devel/py-flatbuffers/ head/devel/py-flatbuffers/Makefile (contents, props changed) head/devel/py-flatbuffers/distinfo (contents, props changed) head/devel/py-flatbuffers/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Jun 3 02:40:54 2019 (r503341) +++ head/devel/Makefile Mon Jun 3 02:59:10 2019 (r503342) @@ -4368,6 +4368,7 @@ SUBDIR += py-flake8-polyfill SUBDIR += py-flake8-quotes SUBDIR += py-flask-babel + SUBDIR += py-flatbuffers SUBDIR += py-flex SUBDIR += py-flexmock SUBDIR += py-fluent-logger Added: head/devel/py-flatbuffers/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-flatbuffers/Makefile Mon Jun 3 02:59:10 2019 (r503342) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= flatbuffers +PORTVERSION= 1.11 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= koobs@FreeBSD.org +COMMENT= FlatBuffers serialization format for Python + +LICENSE= APACHE20 +#LICENSE_FILE= Not packaged in PyPI sdist + +USES= python +USE_PYTHON= autoplist distutils + +OPTIONS_DEFINE= NUMPY + +NUMPY_DESC= Support scalar vectors as numpy arrays + +NUMPY_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>0:math/py-numpy@${PY_FLAVOR} + +MAKE_ENV+= VERSION=${PORTVERSION} + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/devel/py-flatbuffers/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-flatbuffers/distinfo Mon Jun 3 02:59:10 2019 (r503342) @@ -0,0 +1,3 @@ +TIMESTAMP = 1559472952 +SHA256 (flatbuffers-1.11.tar.gz) = f24185db54193540e3d684dc98aa7c2d89882341641548ceb36fd2589fef6c4e +SIZE (flatbuffers-1.11.tar.gz) = 10711 Added: head/devel/py-flatbuffers/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-flatbuffers/pkg-descr Mon Jun 3 02:59:10 2019 (r503342) @@ -0,0 +1,3 @@ +Python runtime library for use with the Flatbuffers serialization format. + +WWW: https://google.github.io/flatbuffers/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906030259.x532xBu8074905>