%{!?python2_sitelib: %define python2_sitelib %(python2 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
%{!?python3_sitelib: %define python3_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
Summary: WebOb provides objects for HTTP requests and responses..
Name: python-webob
Version: 1.7.1
Release: 1%{?dist}
License: MIT
Group: Development/Languages/Python
Vendor: VMware, Inc.
Distribution: Photon
Url: https://pypi.python.org/pypi/WebOb
Source0: WebOb-%{version}.tar.gz
%define sha1 WebOb=4aa2b23c530a1217de1d51fdddde9ef17a829d7d
BuildArch: noarch
BuildRequires: python2
BuildRequires: python2-libs
BuildRequires: python-setuptools
Requires: python2
Requires: python2-libs
%description
WebOb provides objects for HTTP requests and responses. Specifically it does this by wrapping the WSGI request environment and response status/headers/app_iter(body).
The request and response objects provide many conveniences for parsing HTTP request and forming HTTP responses. Both objects are read/write: as a result, WebOb is also a nice way to create HTTP requests and parse HTTP responses.
%package -n python3-webob
Summary: python-webob
BuildRequires: python3
BuildRequires: python3-devel
BuildRequires: python3-libs
Requires: python3
Requires: python3-libs
%description -n python3-webob
Python 3 version.
%prep
%setup -q -n WebOb-%{version}
%{__rm} -f tests/performance_test.py
%build
python2 setup.py build
python3 setup.py build
%install
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
python2 setup.py install --prefix=%{_prefix} --root=%{buildroot}
%check
easy_install py
python2 setup.py test
python3 setup.py test
%files
%defattr(-,root,root,-)
%{python2_sitelib}/*
%files -n python3-webob
%defattr(-,root,root,-)
%{python3_sitelib}/*
%changelog
* Thu Mar 02 2017 Xiaolin Li <xiaolinl@vmware.com> 1.7.1-1
- Initial packaging for Photon