diff options
author | CoprDistGit <infra@openeuler.org> | 2023-04-11 22:20:20 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-04-11 22:20:20 +0000 |
commit | 0f689148dc38cb94842d435f17ce35ee392b4ed3 (patch) | |
tree | e866edb6986034bf45efc317183b11b64e58926e /python-django-channels-graphql-ws.spec | |
parent | ca6e1684a5ca89c88965de833c9e39f89a32f21a (diff) |
automatic import of python-django-channels-graphql-ws
Diffstat (limited to 'python-django-channels-graphql-ws.spec')
-rw-r--r-- | python-django-channels-graphql-ws.spec | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/python-django-channels-graphql-ws.spec b/python-django-channels-graphql-ws.spec new file mode 100644 index 0000000..c8b1244 --- /dev/null +++ b/python-django-channels-graphql-ws.spec @@ -0,0 +1,81 @@ +%global _empty_manifest_terminate_build 0 +Name: python-django-channels-graphql-ws +Version: 0.9.1 +Release: 1 +Summary: Django Channels based WebSocket GraphQL server with Graphene-like subscriptions +License: MIT +URL: https://github.com/datadvance/DjangoChannelsGraphqlWs +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/1c/3d/d07bb3116899b1be43f7a622a81e0b0fc0e95f0f8374ec09382785778062/django-channels-graphql-ws-0.9.1.tar.gz +BuildArch: noarch + +Requires: python3-aiohttp +Requires: python3-asgiref +Requires: python3-backports-datetime-fromisoformat +Requires: python3-channels +Requires: python3-dataclasses +Requires: python3-Django +Requires: python3-graphene +Requires: python3-graphql-core +Requires: python3-msgpack + +%description + + +%package -n python3-django-channels-graphql-ws +Summary: Django Channels based WebSocket GraphQL server with Graphene-like subscriptions +Provides: python-django-channels-graphql-ws +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-django-channels-graphql-ws + + +%package help +Summary: Development documents and examples for django-channels-graphql-ws +Provides: python3-django-channels-graphql-ws-doc +%description help + + +%prep +%autosetup -n django-channels-graphql-ws-0.9.1 + +%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-django-channels-graphql-ws -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 0.9.1-1 +- Package Spec generated |