diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-rohrpost.spec | 82 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 84 insertions, 0 deletions
@@ -0,0 +1 @@ +/rohrpost-3.1.0.tar.gz diff --git a/python-rohrpost.spec b/python-rohrpost.spec new file mode 100644 index 0000000..7f03465 --- /dev/null +++ b/python-rohrpost.spec @@ -0,0 +1,82 @@ +%global _empty_manifest_terminate_build 0 +Name: python-rohrpost +Version: 3.1.0 +Release: 1 +Summary: rohrpost WebSocket protocol for ASGI +License: MIT +URL: https://github.com/axsemantics/rohrpost +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/d6/69/900ba6963410bb28c484ea0789f560724921b80eaae7abb2c6811f4efb02/rohrpost-3.1.0.tar.gz +BuildArch: noarch + +Requires: python3-channels + +%description +`rohrpost` is a simple WebSocket protocol that works well with Django_ using +Channels_. It will interface with every service implementing the ASGI_ +specification (which, at the moment, is primarily Channels_ with Daphne_). +The client implementation is rohrpost-js_. + +%package -n python3-rohrpost +Summary: rohrpost WebSocket protocol for ASGI +Provides: python-rohrpost +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-rohrpost +`rohrpost` is a simple WebSocket protocol that works well with Django_ using +Channels_. It will interface with every service implementing the ASGI_ +specification (which, at the moment, is primarily Channels_ with Daphne_). +The client implementation is rohrpost-js_. + +%package help +Summary: Development documents and examples for rohrpost +Provides: python3-rohrpost-doc +%description help +`rohrpost` is a simple WebSocket protocol that works well with Django_ using +Channels_. It will interface with every service implementing the ASGI_ +specification (which, at the moment, is primarily Channels_ with Daphne_). +The client implementation is rohrpost-js_. + +%prep +%autosetup -n rohrpost-3.1.0 + +%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-rohrpost -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon May 15 2023 Python_Bot <Python_Bot@openeuler.org> - 3.1.0-1 +- Package Spec generated @@ -0,0 +1 @@ +5c12707d60e91d210e4e77513f1e1a4d rohrpost-3.1.0.tar.gz |