summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-10 23:06:47 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-10 23:06:47 +0000
commit7ffe92c8d64078974edb3a187deb44a320afd463 (patch)
tree40ab145cdf4a43059e455afecdcb7e08d1b8464c
parent2808f32f9624ebd43dd3da276f67234f8288eea7 (diff)
automatic import of python-wsgiproxy2
-rw-r--r--.gitignore1
-rw-r--r--python-wsgiproxy2.spec82
-rw-r--r--sources1
3 files changed, 84 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..d1d1868 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/WSGIProxy2-0.5.1.tar.gz
diff --git a/python-wsgiproxy2.spec b/python-wsgiproxy2.spec
new file mode 100644
index 0000000..11c3b26
--- /dev/null
+++ b/python-wsgiproxy2.spec
@@ -0,0 +1,82 @@
+%global _empty_manifest_terminate_build 0
+Name: python-WSGIProxy2
+Version: 0.5.1
+Release: 1
+Summary: A WSGI Proxy with various http client backends
+License: MIT
+URL: https://github.com/gawel/WSGIProxy2/
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/f0/ae/cad3131f771a38b4cdad6ca82bfee1800afc69758c70d0e70483ed1f6b30/WSGIProxy2-0.5.1.tar.gz
+BuildArch: noarch
+
+Requires: python3-webob
+
+%description
+With pip::
+ $ pip install WSGIProxy2
+Install optionnal backends::
+ $ pip install requests urllib3
+
+%package -n python3-WSGIProxy2
+Summary: A WSGI Proxy with various http client backends
+Provides: python-WSGIProxy2
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-WSGIProxy2
+With pip::
+ $ pip install WSGIProxy2
+Install optionnal backends::
+ $ pip install requests urllib3
+
+%package help
+Summary: Development documents and examples for WSGIProxy2
+Provides: python3-WSGIProxy2-doc
+%description help
+With pip::
+ $ pip install WSGIProxy2
+Install optionnal backends::
+ $ pip install requests urllib3
+
+%prep
+%autosetup -n WSGIProxy2-0.5.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-WSGIProxy2 -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 0.5.1-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..223e097
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+398ceb52cfd9add0c9a48e5ec7a7399b WSGIProxy2-0.5.1.tar.gz