diff options
author | CoprDistGit <infra@openeuler.org> | 2023-05-10 05:23:29 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-05-10 05:23:29 +0000 |
commit | 0a2403bd527abb9173dc440e8e19a92062de4a83 (patch) | |
tree | 3d08e34407478cc1bf7b20a8029178bfa03d3bff | |
parent | f41f14ebe95fa91a5b68e98088ad30aa9487672d (diff) |
automatic import of python-webservicesopeneuler20.03
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-webservices.spec | 72 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 74 insertions, 0 deletions
@@ -0,0 +1 @@ +/webservices-0.7.tar.gz diff --git a/python-webservices.spec b/python-webservices.spec new file mode 100644 index 0000000..8256b40 --- /dev/null +++ b/python-webservices.spec @@ -0,0 +1,72 @@ +%global _empty_manifest_terminate_build 0 +Name: python-webservices +Version: 0.7 +Release: 1 +Summary: UNKNOWN +License: BSD License +URL: UNKNOWN +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/88/97/6034701ee2c62b6b8857e62a1dc3cd0329e65f3dd798c09b1ecb1ddd92a2/webservices-0.7.tar.gz +BuildArch: noarch + + +%description +``pip install webservices[django]`` + +%package -n python3-webservices +Summary: UNKNOWN +Provides: python-webservices +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-webservices +``pip install webservices[django]`` + +%package help +Summary: Development documents and examples for webservices +Provides: python3-webservices-doc +%description help +``pip install webservices[django]`` + +%prep +%autosetup -n webservices-0.7 + +%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-webservices -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 10 2023 Python_Bot <Python_Bot@openeuler.org> - 0.7-1 +- Package Spec generated @@ -0,0 +1 @@ +7b0a4cbb8361f9b9368a0ead3104a635 webservices-0.7.tar.gz |