[packages/python-urllib3] - new, version 1.6

kiesiu kiesiu at pld-linux.org
Wed Jun 26 22:32:21 CEST 2013


commit f980972e8d43d33b9c7fc23059376908b3dedd64
Author: Łukasz Kieś <kiesiu at pld-linux.org>
Date:   Wed Jun 26 22:31:27 2013 +0200

    - new, version 1.6

 python-urllib3.spec | 111 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 111 insertions(+)
---
diff --git a/python-urllib3.spec b/python-urllib3.spec
new file mode 100644
index 0000000..511da76
--- /dev/null
+++ b/python-urllib3.spec
@@ -0,0 +1,111 @@
+# Conditional build:
+%bcond_without  python2         # build python 2 module
+%bcond_without  python3         # build python 3 module
+#
+%define 	module	urllib3
+Summary:	HTTP library with thread-safe connection pooling, file post, and more
+Name:		python-%{module}
+Version:	1.6
+Release:	1
+License:	MIT
+Group:		Development/Languages/Python
+Source0:	https://pypi.python.org/packages/source/u/urllib3/%{module}-%{version}.tar.gz
+# Source0-md5:	8ee95b963e151aba80de90ad1cc55487
+URL:		http://urllib3.readthedocs.org/
+%if %{with python2}
+BuildRequires:	python-modules >= 1:2.7
+%endif
+%if %{with python3}
+BuildRequires:	python3-modules >= 3.2
+%endif
+BuildRequires:	rpm-pythonprov
+BuildRequires:	rpmbuild(macros) >= 1.219
+Requires:	python-modules >= 1:2.7
+BuildArch:	noarch
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Python HTTP module with connection pooling and file POST abilities.
+Features are:
+- Re-use the same socket connection for multiple requests (with
+  optional client-side certificate verification).
+- File posting (encode_multipart_formdata).
+- Built-in redirection and retries (optional).
+- Supports gzip and deflate decoding.
+- Thread-safe and sanity-safe.
+
+%package -n python3-urllib3
+Summary:	HTTP library with thread-safe connection pooling, file post, and more
+Group:		Development/Languages/Python
+Requires:	python3-modules >= 3.2
+
+%description -n python3-urllib3
+Python HTTP module with connection pooling and file POST abilities.
+Features are:
+- Re-use the same socket connection for multiple requests (with
+  optional client-side certificate verification).
+- File posting (encode_multipart_formdata).
+- Built-in redirection and retries (optional).
+- Supports gzip and deflate decoding.
+- Thread-safe and sanity-safe.
+
+%prep
+%setup -q -n %{module}-%{version}
+
+%build
+%if %{with python2}
+%{__python} setup.py build -b py2
+%endif
+
+%if %{with python3}
+%{__python3} setup.py build -b py3
+%endif
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%if %{with python2}
+%{__python} setup.py \
+	build -b py2 \
+	install \
+	--skip-build \
+	--optimize=2 \
+	--root=$RPM_BUILD_ROOT
+%py_ocomp $RPM_BUILD_ROOT%{py_sitescriptdir}
+%py_comp $RPM_BUILD_ROOT%{py_sitescriptdir}
+%py_postclean
+%endif
+
+%if %{with python3}
+%{__python3} setup.py  \
+	build -b py3 \
+	install \
+	--skip-build \
+	--optimize=2 \
+	--root=$RPM_BUILD_ROOT
+%endif
+
+# dummyserver is a part of unitstests
+%{__rm} -rf $RPM_BUILD_ROOT%{py_sitescriptdir}/dummyserver \
+	$RPM_BUILD_ROOT%{py3_sitescriptdir}/dummyserver
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%if %{with python2}
+%files
+%defattr(644,root,root,755)
+%doc CHANGES.rst CONTRIBUTORS.txt README.rst
+%{py_sitescriptdir}/%{module}
+%if "%{py_ver}" > "2.4"
+%{py_sitescriptdir}/%{module}-%{version}-py*.egg-info
+%endif
+%endif
+
+%if %{with python3}
+%files -n python3-urllib3
+%defattr(644,root,root,755)
+%doc CHANGES.rst CONTRIBUTORS.txt README.rst
+%{py3_sitescriptdir}/%{module}
+%{py3_sitescriptdir}/%{module}-%{version}-py*.egg-info
+%endif
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/python-urllib3.git/commitdiff/f980972e8d43d33b9c7fc23059376908b3dedd64



More information about the pld-cvs-commit mailing list