diff options
author | CoprDistGit <infra@openeuler.org> | 2023-06-20 05:32:53 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-06-20 05:32:53 +0000 |
commit | be5bcb66b2ffaa1fd8741b33f8b37aa5c7650544 (patch) | |
tree | 56ddba48ac8819b690f5312120b9466cefaae8ae | |
parent | e9ffd5932b9406db5fdbed16127e7d100449f2ad (diff) |
automatic import of python-clife-svcopeneuler20.03
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-clife-svc.spec | 92 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 94 insertions, 0 deletions
@@ -0,0 +1 @@ +/clife_svc-1.14.tar.gz diff --git a/python-clife-svc.spec b/python-clife-svc.spec new file mode 100644 index 0000000..dfe8fc6 --- /dev/null +++ b/python-clife-svc.spec @@ -0,0 +1,92 @@ +%global _empty_manifest_terminate_build 0 +Name: python-clife-svc +Version: 1.14 +Release: 1 +Summary: A module for service +License: MIT License +URL: https://pypi.org/project/clife-svc/ +Source0: https://mirrors.aliyun.com/pypi/web/packages/93/d3/52232d5bc7703dfdb6b35ae3d9340c1cefbe0cd6481138f75a6189135c00/clife_svc-1.14.tar.gz +BuildArch: noarch + +Requires: python3-loguru +Requires: python3-aiohttp +Requires: python3-requests +Requires: python3-fastapi +Requires: python3-uvicorn +Requires: python3-cos-python-sdk-v5 +Requires: python3-orjson +Requires: python3-contextvars +Requires: python3-boto3 +Requires: python3-rocketmq +Requires: python3-gunicorn + +%description +#clife_svc + + + + +%package -n python3-clife-svc +Summary: A module for service +Provides: python-clife-svc +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-clife-svc +#clife_svc + + + + +%package help +Summary: Development documents and examples for clife-svc +Provides: python3-clife-svc-doc +%description help +#clife_svc + + + + +%prep +%autosetup -n clife_svc-1.14 + +%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-clife-svc -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Jun 20 2023 Python_Bot <Python_Bot@openeuler.org> - 1.14-1 +- Package Spec generated @@ -0,0 +1 @@ +9f4e62e84c4ab31920d93a908ef5e47e clife_svc-1.14.tar.gz |