diff options
author | CoprDistGit <infra@openeuler.org> | 2023-05-15 03:28:36 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-05-15 03:28:36 +0000 |
commit | 1d6ca90cc3170cdc5bb056d82a5fa517d28da5c8 (patch) | |
tree | 6feb02d21218150977e6fb63d6e5296f98ff048f | |
parent | fe5fdd57f5e7299330fe7430c146f951a5afe8aa (diff) |
automatic import of python-jsonapi-client
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-jsonapi-client.spec | 75 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 77 insertions, 0 deletions
@@ -0,0 +1 @@ +/jsonapi_client-0.9.9.tar.gz diff --git a/python-jsonapi-client.spec b/python-jsonapi-client.spec new file mode 100644 index 0000000..7272727 --- /dev/null +++ b/python-jsonapi-client.spec @@ -0,0 +1,75 @@ +%global _empty_manifest_terminate_build 0 +Name: python-jsonapi-client +Version: 0.9.9 +Release: 1 +Summary: Comprehensive, yet easy-to-use, pythonic, ORM-like access to JSON API services +License: BSD-3 +URL: https://github.com/qvantel/jsonapi-client +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/8e/b0/c0ff1c3c9716c84bdf32e676ea836e8db9a3c137fbefb2cf228fb7c4de1c/jsonapi_client-0.9.9.tar.gz +BuildArch: noarch + +Requires: python3-requests +Requires: python3-jsonschema +Requires: python3-aiohttp + +%description + + +%package -n python3-jsonapi-client +Summary: Comprehensive, yet easy-to-use, pythonic, ORM-like access to JSON API services +Provides: python-jsonapi-client +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-jsonapi-client + + +%package help +Summary: Development documents and examples for jsonapi-client +Provides: python3-jsonapi-client-doc +%description help + + +%prep +%autosetup -n jsonapi-client-0.9.9 + +%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-jsonapi-client -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon May 15 2023 Python_Bot <Python_Bot@openeuler.org> - 0.9.9-1 +- Package Spec generated @@ -0,0 +1 @@ +be0a4f1b400a403b037146a304b291c5 jsonapi_client-0.9.9.tar.gz |