Date: Sun, 24 Nov 2019 17:48:33 +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: r518341 - in head/misc: . py-tflite Message-ID: <201911241748.xAOHmXe9037287@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Sun Nov 24 17:48:33 2019 New Revision: 518341 URL: https://svnweb.freebsd.org/changeset/ports/518341 Log: New port: misc/py-tflite: Parse TensorFlow Lite models in Python Added: head/misc/py-tflite/ head/misc/py-tflite/Makefile (contents, props changed) head/misc/py-tflite/distinfo (contents, props changed) head/misc/py-tflite/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Sun Nov 24 17:29:30 2019 (r518340) +++ head/misc/Makefile Sun Nov 24 17:48:33 2019 (r518341) @@ -411,6 +411,7 @@ SUBDIR += py-spdx-lookup SUBDIR += py-spdx-tools SUBDIR += py-tflearn + SUBDIR += py-tflite SUBDIR += py-toil SUBDIR += py-tqdm SUBDIR += py-tvm Added: head/misc/py-tflite/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-tflite/Makefile Sun Nov 24 17:48:33 2019 (r518341) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= tflite +DISTVERSION= g20191030 +CATEGORIES= misc python # machine-learning +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Parse TensorFlow Lite models in Python + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}flatbuffers>0:devel/py-flatbuffers@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist +USE_GITHUB= yes +GH_ACCOUNT= jackwish +GH_TAGNAME= 7814b03 + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/misc/py-tflite/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-tflite/distinfo Sun Nov 24 17:48:33 2019 (r518341) @@ -0,0 +1,3 @@ +TIMESTAMP = 1574616813 +SHA256 (jackwish-tflite-g20191030-7814b03_GH0.tar.gz) = cc8dd90d9b11d9a97945f8068ed6d1aab42473bf416e8b1f13415d5bcfad178f +SIZE (jackwish-tflite-g20191030-7814b03_GH0.tar.gz) = 3883211 Added: head/misc/py-tflite/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-tflite/pkg-descr Sun Nov 24 17:48:33 2019 (r518341) @@ -0,0 +1,6 @@ +Python package to parse TFLite models (*.tflite) easily. + +The tflite package is built to parse the TFLite models from the schema.fbs +file supplied in the TensorFlow project. + +WWW: https://jackwish.net/tflite/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201911241748.xAOHmXe9037287>