summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2024-04-15 16:54:56 +0000
committerCoprDistGit <infra@openeuler.org>2024-04-15 16:54:56 +0000
commit088fdd462771d0cf70fcb414af28bb641aefb00d (patch)
tree8c93747f35586225457ef86c112a699d38b10e18
parent7c21b83dd5cd5b64a1e8d3606feea47b72e54964 (diff)
automatic import of torchvideo
-rw-r--r--.gitignore1
-rw-r--r--sources1
-rw-r--r--torchvideo.spec61
3 files changed, 63 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..9036196 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/pytorchvideo-v0.1.3.tar.gz
diff --git a/sources b/sources
new file mode 100644
index 0000000..94d0c5c
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+996ee59f9df16ef87c4e8781f0c5858c pytorchvideo-v0.1.3.tar.gz
diff --git a/torchvideo.spec b/torchvideo.spec
new file mode 100644
index 0000000..c5ed2b4
--- /dev/null
+++ b/torchvideo.spec
@@ -0,0 +1,61 @@
+%global _empty_manifest_terminate_build 0
+%global _unpackaged_files_terminate_build 0
+
+Name: torchvideo
+Version: 0.16.2
+Release: 1%{?dist}
+Summary: A deep learning library for video understanding research
+License: BSD
+URL: https://github.com/pytorch/vision
+Source0: pytorchvideo-v0.1.3.tar.gz
+
+
+%description
+PyTorchVideo is a deep learning library with a focus on video understanding work. PytorchVideo provides reusable, modular and efficient components needed to accelerate the video understanding research.
+
+%package -n python3-pytorchvideo
+Summary: PyTorchVideo is a deep learning library with a focus on video understanding work. PytorchVideo provides reusable, modular and efficient components needed to accelerate the video understanding research.
+Provides: python-pytorchvideo
+BuildRequires: g++
+Requires: python3-pytorch
+Requires: python3-fvcore
+Requires: python3-iopath
+Requires: python3-pyav
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-setuptools_scm
+BuildRequires: python3-rpm-macros
+BuildRequires: python3-pip
+BuildRequires: python3-wheel
+BuildRequires: python3-hatchling
+
+%description -n python3-pytorchvideo
+PyTorchVideo is a deep learning library with a focus on video understanding work. PytorchVideo provides reusable, modular and efficient components needed to accelerate the video understanding research.
+
+%prep
+%autosetup -p1 -n %{name}-%{version}
+
+%build
+%pyproject_build
+
+%install
+%py3_install
+install -d -m755 %{buildroot}/%{_pkgdocdir}
+if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
+if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
+pushd %{buildroot}
+touch doclist.lst
+if [ -d usr/share/man ]; then
+ find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
+fi
+popd
+mv %{buildroot}/doclist.lst .
+
+%files -n python3-pytorchvideo
+%doc *.md
+%license LICENSE
+%{python3_sitelib}/*
+
+%changelog
+* Mon Apr 15 2024 weilaijishu
+- Initial package