summaryrefslogtreecommitdiff
path: root/python-eventlet.spec
diff options
context:
space:
mode:
Diffstat (limited to 'python-eventlet.spec')
-rw-r--r--python-eventlet.spec97
1 files changed, 97 insertions, 0 deletions
diff --git a/python-eventlet.spec b/python-eventlet.spec
new file mode 100644
index 0000000..ad6011f
--- /dev/null
+++ b/python-eventlet.spec
@@ -0,0 +1,97 @@
+%global _empty_manifest_terminate_build 0
+Name: python-eventlet
+Version: 0.33.3
+Release: 1
+Summary: Highly concurrent networking library
+License: MIT License
+URL: http://eventlet.net
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/81/0c/5e0bcf715a2bae9169c77bfdcbc460a4aeeb0bb1067cf8071cf14d7d1b39/eventlet-0.33.3.tar.gz
+BuildArch: noarch
+
+Requires: python3-dnspython
+Requires: python3-greenlet
+Requires: python3-six
+Requires: python3-monotonic
+
+%description
+Here's something you can try right on the command line::
+ % python3
+ >>> import eventlet
+ >>> from eventlet.green.urllib.request import urlopen
+ >>> gt = eventlet.spawn(urlopen, 'http://eventlet.net')
+ >>> gt2 = eventlet.spawn(urlopen, 'http://secondlife.com')
+ >>> gt2.wait()
+ >>> gt.wait()
+
+%package -n python3-eventlet
+Summary: Highly concurrent networking library
+Provides: python-eventlet
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-eventlet
+Here's something you can try right on the command line::
+ % python3
+ >>> import eventlet
+ >>> from eventlet.green.urllib.request import urlopen
+ >>> gt = eventlet.spawn(urlopen, 'http://eventlet.net')
+ >>> gt2 = eventlet.spawn(urlopen, 'http://secondlife.com')
+ >>> gt2.wait()
+ >>> gt.wait()
+
+%package help
+Summary: Development documents and examples for eventlet
+Provides: python3-eventlet-doc
+%description help
+Here's something you can try right on the command line::
+ % python3
+ >>> import eventlet
+ >>> from eventlet.green.urllib.request import urlopen
+ >>> gt = eventlet.spawn(urlopen, 'http://eventlet.net')
+ >>> gt2 = eventlet.spawn(urlopen, 'http://secondlife.com')
+ >>> gt2.wait()
+ >>> gt.wait()
+
+%prep
+%autosetup -n eventlet-0.33.3
+
+%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-eventlet -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Thu Mar 09 2023 Python_Bot <Python_Bot@openeuler.org> - 0.33.3-1
+- Package Spec generated