diff options
author | CoprDistGit <infra@openeuler.org> | 2024-04-16 02:59:38 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2024-04-16 02:59:38 +0000 |
commit | d1d0ec00b3117c866720cf33c2f72eda9b51ce00 (patch) | |
tree | 7feaee8c81e9d31db01078f4fb7b543fa6b3cd1b | |
parent | 3985ff983152249995917f70be02b4db1741f4dc (diff) |
automatic import of pytorch-lightning
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | sources | 1 | ||||
-rw-r--r-- | torchlightning.spec | 53 |
3 files changed, 55 insertions, 0 deletions
@@ -0,0 +1 @@ +/pytorch-lightning-2.2.2.tar.gz @@ -0,0 +1 @@ +a34866a4fb9fb3a2dfd6f84605e03ccb pytorch-lightning-2.2.2.tar.gz diff --git a/torchlightning.spec b/torchlightning.spec new file mode 100644 index 0000000..8440017 --- /dev/null +++ b/torchlightning.spec @@ -0,0 +1,53 @@ +%global _empty_manifest_terminate_build 0
+%global _unpackaged_files_terminate_build 0
+
+Name: pytorch-lightning
+Version: 2.2.2
+Release: 1%{?dist}
+Summary: A Python 3 version of the deep learning library for video understanding research
+License: BSD
+URL: https://pypi.org/project/pytorch-lightning/
+Source0: pytorch-lightning-2.2.2.tar.gz
+
+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
+%{pkg_summary}
+
+%package -n python3-%{pkg_name}
+Summary: A Python 3 version of the deep learning library for video understanding research
+
+%description -n python3-%{pkg_name}
+%{pkg_desc}
+
+%prep
+%autosetup -p1 -n pytorch-lightning-%{version}
+
+%build
+%pyproject_build
+
+%install
+%pyproject_install
+
+%files -n python3-%{pkg_name}
+%doc *.md
+%license LICENSE*
+%{python3_sitelib}/pytorch_lightning/*
+%{python3_sitelib}/lightning_fabric/*
+
+
+%changelog
+* Mon Apr 15 2024 weilaijishu
+- Initial package |