From owner-svn-ports-head@freebsd.org Sun Nov 24 17:48:34 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 890F31B5BA0; Sun, 24 Nov 2019 17:48:34 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47Ld1t32s5z4GgS; Sun, 24 Nov 2019 17:48:34 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 47A3627B2F; Sun, 24 Nov 2019 17:48:34 +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 xAOHmYSF037294; Sun, 24 Nov 2019 17:48:34 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAOHmXe9037287; Sun, 24 Nov 2019 17:48:33 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201911241748.xAOHmXe9037287@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 24 Nov 2019 17:48:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r518341 - in head/misc: . py-tflite X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/misc: . py-tflite X-SVN-Commit-Revision: 518341 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Nov 2019 17:48:34 -0000 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 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/