Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 Apr 2020 20:23:46 +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: r532231 - in head/misc: . py-tflite-support
Message-ID:  <202004202023.03KKNkbt029790@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Mon Apr 20 20:23:46 2020
New Revision: 532231
URL: https://svnweb.freebsd.org/changeset/ports/532231

Log:
  New port: misc/py-tflite-support: Toolkit for developing/deploying ML/TFLite models

Added:
  head/misc/py-tflite-support/
  head/misc/py-tflite-support/Makefile   (contents, props changed)
  head/misc/py-tflite-support/distinfo   (contents, props changed)
  head/misc/py-tflite-support/pkg-descr   (contents, props changed)
Modified:
  head/misc/Makefile

Modified: head/misc/Makefile
==============================================================================
--- head/misc/Makefile	Mon Apr 20 20:21:24 2020	(r532230)
+++ head/misc/Makefile	Mon Apr 20 20:23:46 2020	(r532231)
@@ -415,6 +415,7 @@
     SUBDIR += py-spdx-tools
     SUBDIR += py-tflearn
     SUBDIR += py-tflite
+    SUBDIR += py-tflite-support
     SUBDIR += py-toil
     SUBDIR += py-tqdm
     SUBDIR += py-tvm

Added: head/misc/py-tflite-support/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/py-tflite-support/Makefile	Mon Apr 20 20:23:46 2020	(r532231)
@@ -0,0 +1,25 @@
+# $FreeBSD$
+
+PORTNAME=	tflite-support
+DISTVERSION=	0.1.0a1
+CATEGORIES=	misc # machine-learning
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	Toolkit for developing/deploying ML/TFLite models
+
+LICENSE=	APACHE20
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pybind11>=2.4:devel/py-pybind11@${PY_FLAVOR}
+RUN_DEPENDS=	${PYNUMPY} \
+		${PYTHON_PKGNAMEPREFIX}absl>=0.7.0:devel/py-absl@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}pybind11>=2.4:devel/py-pybind11@${PY_FLAVOR}
+
+USES=		compiler:c++14-lang python
+USE_PYTHON=	distutils concurrent autoplist
+
+post-install:
+	@${FIND} ${STAGEDIR}${PREFIX} -name "*.so" | ${XARGS} ${STRIP_CMD}
+
+.include <bsd.port.mk>

Added: head/misc/py-tflite-support/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/py-tflite-support/distinfo	Mon Apr 20 20:23:46 2020	(r532231)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1587411910
+SHA256 (tflite-support-0.1.0a1.tar.gz) = 4632e1e4e07b313c0b0c2433459b7154c5570de6268f3bf0b23a50b875a0466e
+SIZE (tflite-support-0.1.0a1.tar.gz) = 390298

Added: head/misc/py-tflite-support/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/py-tflite-support/pkg-descr	Mon Apr 20 20:23:46 2020	(r532231)
@@ -0,0 +1,4 @@
+TFLite Support is a toolkit that helps users to develop ML and deploy TFLite
+models onto mobile devices.
+
+WWW: https://www.tensorflow.org/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004202023.03KKNkbt029790>