diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-05-17 04:16:11 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-05-17 04:16:11 +0000 |
| commit | 44f3536e218730d318c32af67fc99ac565c2413f (patch) | |
| tree | 898fba4f8c34c925fc675c0e80d214300814d6c7 | |
| parent | 1ef206515b67022fdda44e1190ae0fa2b5a43277 (diff) | |
automatic import of python-faas-supervisor
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-faas-supervisor.spec | 118 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 120 insertions, 0 deletions
@@ -0,0 +1 @@ +/faas-supervisor-1.5.8.tar.gz diff --git a/python-faas-supervisor.spec b/python-faas-supervisor.spec new file mode 100644 index 0000000..65f2bf9 --- /dev/null +++ b/python-faas-supervisor.spec @@ -0,0 +1,118 @@ +%global _empty_manifest_terminate_build 0 +Name: python-faas-supervisor +Version: 1.5.8 +Release: 1 +Summary: Input/Output data manager for FaaS +License: Apache 2.0 +URL: https://github.com/grycap/faas-supervisor +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/56/ac/51cedb7e1491cb8dbcb436f567f91f07bdea6f96412dec7084cff1082b2a/faas-supervisor-1.5.8.tar.gz +BuildArch: noarch + +Requires: python3-webdavclient3 +Requires: python3-boto3 +Requires: python3-setuptools +Requires: python3-pyyaml + +%description +# Faas Supervisor + +[](https://github.com/grycap/faas-supervisor/actions?query=workflow%3A%22Test%2C+build+and+deploy%22) +[](https://pypi.org/project/faas-supervisor/) +[](https://www.apache.org/licenses/LICENSE-2.0) +[](https://www.codacy.com/gh/grycap/faas-supervisor/dashboard?utm_source=github.com&utm_medium=referral&utm_content=grycap/faas-supervisor&utm_campaign=Badge_Grade) +[](https://www.codacy.com/gh/grycap/faas-supervisor/dashboard?utm_source=github.com&utm_medium=referral&utm_content=grycap/faas-supervisor&utm_campaign=Badge_Coverage) + +Input / Output data manager for FaaS functions. +Works in different cloud environments and allows different data providers. + +Python package available at Pypi with the name **faas-supervisor**. + + + + +%package -n python3-faas-supervisor +Summary: Input/Output data manager for FaaS +Provides: python-faas-supervisor +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-faas-supervisor +# Faas Supervisor + +[](https://github.com/grycap/faas-supervisor/actions?query=workflow%3A%22Test%2C+build+and+deploy%22) +[](https://pypi.org/project/faas-supervisor/) +[](https://www.apache.org/licenses/LICENSE-2.0) +[](https://www.codacy.com/gh/grycap/faas-supervisor/dashboard?utm_source=github.com&utm_medium=referral&utm_content=grycap/faas-supervisor&utm_campaign=Badge_Grade) +[](https://www.codacy.com/gh/grycap/faas-supervisor/dashboard?utm_source=github.com&utm_medium=referral&utm_content=grycap/faas-supervisor&utm_campaign=Badge_Coverage) + +Input / Output data manager for FaaS functions. +Works in different cloud environments and allows different data providers. + +Python package available at Pypi with the name **faas-supervisor**. + + + + +%package help +Summary: Development documents and examples for faas-supervisor +Provides: python3-faas-supervisor-doc +%description help +# Faas Supervisor + +[](https://github.com/grycap/faas-supervisor/actions?query=workflow%3A%22Test%2C+build+and+deploy%22) +[](https://pypi.org/project/faas-supervisor/) +[](https://www.apache.org/licenses/LICENSE-2.0) +[](https://www.codacy.com/gh/grycap/faas-supervisor/dashboard?utm_source=github.com&utm_medium=referral&utm_content=grycap/faas-supervisor&utm_campaign=Badge_Grade) +[](https://www.codacy.com/gh/grycap/faas-supervisor/dashboard?utm_source=github.com&utm_medium=referral&utm_content=grycap/faas-supervisor&utm_campaign=Badge_Coverage) + +Input / Output data manager for FaaS functions. +Works in different cloud environments and allows different data providers. + +Python package available at Pypi with the name **faas-supervisor**. + + + + +%prep +%autosetup -n faas-supervisor-1.5.8 + +%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-faas-supervisor -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 17 2023 Python_Bot <Python_Bot@openeuler.org> - 1.5.8-1 +- Package Spec generated @@ -0,0 +1 @@ +97d88c11c3b2fcae1cc8bcc7ccc9e900 faas-supervisor-1.5.8.tar.gz |
