From 952e60eac0b4255fdeeeee6f668ccabb524eddcc Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Mon, 15 May 2023 05:19:53 +0000 Subject: automatic import of python-gevent-socketio-hartwork --- .gitignore | 1 + python-gevent-socketio-hartwork.spec | 129 +++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 131 insertions(+) create mode 100644 python-gevent-socketio-hartwork.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index e69de29..74ddb30 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/gevent-socketio-hartwork-0.3.6.post201803091952.tar.gz diff --git a/python-gevent-socketio-hartwork.spec b/python-gevent-socketio-hartwork.spec new file mode 100644 index 0000000..deebd1a --- /dev/null +++ b/python-gevent-socketio-hartwork.spec @@ -0,0 +1,129 @@ +%global _empty_manifest_terminate_build 0 +Name: python-gevent-socketio-hartwork +Version: 0.3.6.post201803091952 +Release: 1 +Summary: SocketIO server based on the Gevent pywsgi server, a Python network library +License: BSD +URL: https://github.com/hartwork/gevent-socketio +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/1a/27/6dfb5ab0ae4a47e032877ad32855164389c8ff8a065407f70bb5e93cd85c/gevent-socketio-hartwork-0.3.6.post201803091952.tar.gz +BuildArch: noarch + + +%description +What you see here is a post-0.3.6 Git version of ``gevent-socketio`` +maintained by `Sebastian Pipping `_ (``@hartwork``) +branded ``gevent-socketio-hartwork`` for distinction on PyPI. +The idea is to deviate from upstream ``gevent-socketio`` as little as possible +and mirror branch ``master`` unmodified. Maintenance is done on +`branch hartwork-master `_. +Over release 0.3.6, these notable commits are included, from most recent to oldest: +* `Add support for Django 1.10 `_ + by `Lucas Connors `_ (``@RevolutionTech``) +* `Drop support for Django 1.3 `_ + by `Lucas Connors `_ (``@RevolutionTech``) +* `Fixed import to support Django>=1.9 `_ + by `Chris Spencer `_ (``@chrisspen``) +* `Leadership note `_ + by `Alexandre Bourget `_ (``@abourget``) +* `Full Python 2+3 support `_ + by `Eugene Pankov `_ (``@Eugeny``) +The remainder of this document is the original documentation, except with +links adjusted. Enjoy. +Sebastian Pipping + +%package -n python3-gevent-socketio-hartwork +Summary: SocketIO server based on the Gevent pywsgi server, a Python network library +Provides: python-gevent-socketio-hartwork +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-gevent-socketio-hartwork +What you see here is a post-0.3.6 Git version of ``gevent-socketio`` +maintained by `Sebastian Pipping `_ (``@hartwork``) +branded ``gevent-socketio-hartwork`` for distinction on PyPI. +The idea is to deviate from upstream ``gevent-socketio`` as little as possible +and mirror branch ``master`` unmodified. Maintenance is done on +`branch hartwork-master `_. +Over release 0.3.6, these notable commits are included, from most recent to oldest: +* `Add support for Django 1.10 `_ + by `Lucas Connors `_ (``@RevolutionTech``) +* `Drop support for Django 1.3 `_ + by `Lucas Connors `_ (``@RevolutionTech``) +* `Fixed import to support Django>=1.9 `_ + by `Chris Spencer `_ (``@chrisspen``) +* `Leadership note `_ + by `Alexandre Bourget `_ (``@abourget``) +* `Full Python 2+3 support `_ + by `Eugene Pankov `_ (``@Eugeny``) +The remainder of this document is the original documentation, except with +links adjusted. Enjoy. +Sebastian Pipping + +%package help +Summary: Development documents and examples for gevent-socketio-hartwork +Provides: python3-gevent-socketio-hartwork-doc +%description help +What you see here is a post-0.3.6 Git version of ``gevent-socketio`` +maintained by `Sebastian Pipping `_ (``@hartwork``) +branded ``gevent-socketio-hartwork`` for distinction on PyPI. +The idea is to deviate from upstream ``gevent-socketio`` as little as possible +and mirror branch ``master`` unmodified. Maintenance is done on +`branch hartwork-master `_. +Over release 0.3.6, these notable commits are included, from most recent to oldest: +* `Add support for Django 1.10 `_ + by `Lucas Connors `_ (``@RevolutionTech``) +* `Drop support for Django 1.3 `_ + by `Lucas Connors `_ (``@RevolutionTech``) +* `Fixed import to support Django>=1.9 `_ + by `Chris Spencer `_ (``@chrisspen``) +* `Leadership note `_ + by `Alexandre Bourget `_ (``@abourget``) +* `Full Python 2+3 support `_ + by `Eugene Pankov `_ (``@Eugeny``) +The remainder of this document is the original documentation, except with +links adjusted. Enjoy. +Sebastian Pipping + +%prep +%autosetup -n gevent-socketio-hartwork-0.3.6.post201803091952 + +%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-gevent-socketio-hartwork -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon May 15 2023 Python_Bot - 0.3.6.post201803091952-1 +- Package Spec generated diff --git a/sources b/sources new file mode 100644 index 0000000..84956fd --- /dev/null +++ b/sources @@ -0,0 +1 @@ +48739b3fa9acbefc475ad67a95afd63d gevent-socketio-hartwork-0.3.6.post201803091952.tar.gz -- cgit v1.2.3