diff options
author | CoprDistGit <infra@openeuler.org> | 2023-04-10 08:04:01 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-04-10 08:04:01 +0000 |
commit | bd0b6cd1857b55b5e511e00ff172d560adb6fb39 (patch) | |
tree | 5ba8e987a90fc1ec813bb3cb69d4208cfa7f3e9d | |
parent | 30aaef61a0be6da1b3cdc1726951f1d7827e0811 (diff) |
automatic import of python-plotly
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-plotly.spec | 89 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 91 insertions, 0 deletions
@@ -0,0 +1 @@ +/plotly-5.14.1.tar.gz diff --git a/python-plotly.spec b/python-plotly.spec new file mode 100644 index 0000000..91f2507 --- /dev/null +++ b/python-plotly.spec @@ -0,0 +1,89 @@ +%global _empty_manifest_terminate_build 0 +Name: python-plotly +Version: 5.14.1 +Release: 1 +Summary: An open-source, interactive data visualization library for Python +License: MIT +URL: https://plotly.com/python/ +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/dd/24/4f307b6e54892a4b91c58a1ee5826325529231d885df8aaa0f1863191f8d/plotly-5.14.1.tar.gz +BuildArch: noarch + +Requires: python3-tenacity +Requires: python3-packaging + +%description +- [Online Documentation](https://plotly.com/python/) +- [Contributing to plotly](https://github.com/plotly/plotly.py/blob/master/contributing.md) +- [Changelog](https://github.com/plotly/plotly.py/blob/master/CHANGELOG.md) +- [Code of Conduct](https://github.com/plotly/plotly.py/blob/master/CODE_OF_CONDUCT.md) +- [Version 4 Migration Guide](https://plotly.com/python/v4-migration/) +- [New! Announcing Dash 1.0](https://medium.com/plotly/welcoming-dash-1-0-0-f3af4b84bae) + +%package -n python3-plotly +Summary: An open-source, interactive data visualization library for Python +Provides: python-plotly +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-plotly +- [Online Documentation](https://plotly.com/python/) +- [Contributing to plotly](https://github.com/plotly/plotly.py/blob/master/contributing.md) +- [Changelog](https://github.com/plotly/plotly.py/blob/master/CHANGELOG.md) +- [Code of Conduct](https://github.com/plotly/plotly.py/blob/master/CODE_OF_CONDUCT.md) +- [Version 4 Migration Guide](https://plotly.com/python/v4-migration/) +- [New! Announcing Dash 1.0](https://medium.com/plotly/welcoming-dash-1-0-0-f3af4b84bae) + +%package help +Summary: Development documents and examples for plotly +Provides: python3-plotly-doc +%description help +- [Online Documentation](https://plotly.com/python/) +- [Contributing to plotly](https://github.com/plotly/plotly.py/blob/master/contributing.md) +- [Changelog](https://github.com/plotly/plotly.py/blob/master/CHANGELOG.md) +- [Code of Conduct](https://github.com/plotly/plotly.py/blob/master/CODE_OF_CONDUCT.md) +- [Version 4 Migration Guide](https://plotly.com/python/v4-migration/) +- [New! Announcing Dash 1.0](https://medium.com/plotly/welcoming-dash-1-0-0-f3af4b84bae) + +%prep +%autosetup -n plotly-5.14.1 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +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}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-plotly -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 5.14.1-1 +- Package Spec generated @@ -0,0 +1 @@ +c5cf0a76eb5f029392abc39caa8a12ad plotly-5.14.1.tar.gz |