diff options
Diffstat (limited to 'python-sweat.spec')
-rw-r--r-- | python-sweat.spec | 124 |
1 files changed, 124 insertions, 0 deletions
diff --git a/python-sweat.spec b/python-sweat.spec new file mode 100644 index 0000000..37a1e34 --- /dev/null +++ b/python-sweat.spec @@ -0,0 +1,124 @@ +%global _empty_manifest_terminate_build 0 +Name: python-sweat +Version: 0.25.0 +Release: 1 +Summary: Workout analysis +License: MIT +URL: https://github.com/goldencheetah/sweatpy +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/9e/69/3026cabd11c11e9b490023b0011637440af869218c3b82dfe6c93b2e8b8b/sweat-0.25.0.tar.gz +BuildArch: noarch + +Requires: python3-fitparse +Requires: python3-lmfit +Requires: python3-scipy +Requires: python3-pandas +Requires: python3-requests +Requires: python3-pydantic +Requires: python3-pyyaml +Requires: python3-scikit-learn +Requires: python3-stravalib +Requires: python3-matplotlib + +%description +# Sweatpy + +[](https://pepy.tech/project/sweat) + +> :warning: **Sweatpy is currently undergoing major revisions which will result in deprecations and backwards incompatible changes. We recommend pinning your sweatpy dependency in your requirements.txt file (e.g. `sweat==0.19.0`).** + +Documentation can be found [here](https://sweatpy.gssns.io). + +## Contributors +[Maksym Sladkov](https://github.com/sladkovm) +[Aart Goossens](https://github.com/AartGoossens) + +## License +See [LICENSE](LICENSE) file. + + +%package -n python3-sweat +Summary: Workout analysis +Provides: python-sweat +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-sweat +# Sweatpy + +[](https://pepy.tech/project/sweat) + +> :warning: **Sweatpy is currently undergoing major revisions which will result in deprecations and backwards incompatible changes. We recommend pinning your sweatpy dependency in your requirements.txt file (e.g. `sweat==0.19.0`).** + +Documentation can be found [here](https://sweatpy.gssns.io). + +## Contributors +[Maksym Sladkov](https://github.com/sladkovm) +[Aart Goossens](https://github.com/AartGoossens) + +## License +See [LICENSE](LICENSE) file. + + +%package help +Summary: Development documents and examples for sweat +Provides: python3-sweat-doc +%description help +# Sweatpy + +[](https://pepy.tech/project/sweat) + +> :warning: **Sweatpy is currently undergoing major revisions which will result in deprecations and backwards incompatible changes. We recommend pinning your sweatpy dependency in your requirements.txt file (e.g. `sweat==0.19.0`).** + +Documentation can be found [here](https://sweatpy.gssns.io). + +## Contributors +[Maksym Sladkov](https://github.com/sladkovm) +[Aart Goossens](https://github.com/AartGoossens) + +## License +See [LICENSE](LICENSE) file. + + +%prep +%autosetup -n sweat-0.25.0 + +%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-sweat -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 17 2023 Python_Bot <Python_Bot@openeuler.org> - 0.25.0-1 +- Package Spec generated |