From owner-dev-commits-ports-all@freebsd.org Wed Jul 14 03:36:55 2021 Return-Path: Delivered-To: dev-commits-ports-all@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 68B3D66B0C4; Wed, 14 Jul 2021 03:36:55 +0000 (UTC) (envelope-from git@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4GPjqC2B2Dz3n6N; Wed, 14 Jul 2021 03:36:55 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 296C36D45; Wed, 14 Jul 2021 03:36:55 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 16E3atMA086563; Wed, 14 Jul 2021 03:36:55 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 16E3atlp086562; Wed, 14 Jul 2021 03:36:55 GMT (envelope-from git) Date: Wed, 14 Jul 2021 03:36:55 GMT Message-Id: <202107140336.16E3atlp086562@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Neel Chauhan Subject: git: ec0263baf50f - main - math/py-pytorchvideo: New port: Video understanding deep learning library MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: nc X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: ec0263baf50f4a5c89eb57fae793488f9ef7e70c Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jul 2021 03:36:55 -0000 The branch main has been updated by nc: URL: https://cgit.FreeBSD.org/ports/commit/?id=ec0263baf50f4a5c89eb57fae793488f9ef7e70c commit ec0263baf50f4a5c89eb57fae793488f9ef7e70c Author: Neel Chauhan AuthorDate: 2021-07-14 03:36:03 +0000 Commit: Neel Chauhan CommitDate: 2021-07-14 03:36:48 +0000 math/py-pytorchvideo: New port: Video understanding deep learning library --- math/Makefile | 1 + math/py-pytorchvideo/Makefile | 22 ++++++++++++++++++++++ math/py-pytorchvideo/distinfo | 3 +++ math/py-pytorchvideo/pkg-descr | 7 +++++++ 4 files changed, 33 insertions(+) diff --git a/math/Makefile b/math/Makefile index 4410c257cb6d..480c044b041a 100644 --- a/math/Makefile +++ b/math/Makefile @@ -879,6 +879,7 @@ SUBDIR += py-python-igraph SUBDIR += py-python-louvain SUBDIR += py-python-picard + SUBDIR += py-pytorchvideo SUBDIR += py-pyvtk SUBDIR += py-qdldl SUBDIR += py-quadprog diff --git a/math/py-pytorchvideo/Makefile b/math/py-pytorchvideo/Makefile new file mode 100644 index 000000000000..6ddb8f56154d --- /dev/null +++ b/math/py-pytorchvideo/Makefile @@ -0,0 +1,22 @@ +PORTNAME= pytorchvideo +PORTVERSION= 0.1.2 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= nc@FreeBSD.org +COMMENT= Video understanding deep learning library + +LICENSE= APACHE20 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}av>0:multimedia/py-av@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}fvcore>0:math/py-fvcore@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}iopath>0:devel/py-iopath@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}parameterized>0:devel/py-parameterized@${PY_FLAVOR} + +USES= python:3.7+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include diff --git a/math/py-pytorchvideo/distinfo b/math/py-pytorchvideo/distinfo new file mode 100644 index 000000000000..5f1b1e6523a3 --- /dev/null +++ b/math/py-pytorchvideo/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1626233697 +SHA256 (pytorchvideo-0.1.2.tar.gz) = 441def1c771881220c693b8117dcfdc6c55b13ccf9ff691adfe2a50d3ef4da81 +SIZE (pytorchvideo-0.1.2.tar.gz) = 115424 diff --git a/math/py-pytorchvideo/pkg-descr b/math/py-pytorchvideo/pkg-descr new file mode 100644 index 000000000000..40515a2e55cc --- /dev/null +++ b/math/py-pytorchvideo/pkg-descr @@ -0,0 +1,7 @@ +PyTorchVideo is a deeplearning library with a focus on video understanding +work. PytorchVideo provides reusable, modular and efficient components needed +to accelerate the video understanding research. PyTorchVideo is developed using +PyTorch and supports different deeplearning video components like video models, +video datasets, and video-specific transforms. + +WWW: https://github.com/facebookresearch/pytorchvideo