4631f27
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
f920ac3
f920ac3
Name:           python-webtest
5bbb088
Version:        1.1
4631f27
Release:        3%{?dist}
f920ac3
Summary:        Helper to test WSGI applications
f920ac3
f920ac3
Group:          Development/Languages
f920ac3
License:        MIT
f920ac3
URL:            http://pythonpaste.org/webtest/
5bbb088
Source0:        http://pypi.python.org/packages/source/W/WebTest/WebTest-%{version}.tar.gz
f920ac3
BuildRoot:      %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
f920ac3
f920ac3
BuildArch:      noarch
f920ac3
BuildRequires:  python-setuptools-devel
f920ac3
BuildRequires:  python-nose
f920ac3
BuildRequires:  python-webob
f920ac3
Requires:       python-webob
f920ac3
f920ac3
%description
f920ac3
WebTest wraps any WSGI application and makes it easy to send test
f920ac3
requests to that application, without starting up an HTTP server.
f920ac3
f920ac3
This provides convenient full-stack testing of applications written
f920ac3
with any WSGI-compatible framework.
f920ac3
f920ac3
%prep
f920ac3
%setup -q -n WebTest-%{version}
f920ac3
f920ac3
f920ac3
%build
f920ac3
%{__python} setup.py build
f920ac3
f920ac3
f920ac3
%install
f920ac3
%{__rm} -rf %{buildroot}
f920ac3
%{__python} setup.py install --skip-build --root %{buildroot}
f920ac3
f920ac3
 
f920ac3
%clean
f920ac3
%{__rm} -rf %{buildroot}
f920ac3
f920ac3
f920ac3
%check
f920ac3
./test
f920ac3
f920ac3
f920ac3
%files
f920ac3
%defattr(-,root,root,-)
f920ac3
%doc docs/*
f920ac3
%{python_sitelib}/webtest
f920ac3
%{python_sitelib}/*.egg-info
f920ac3
f920ac3
f920ac3
%changelog
4631f27
* Tue Apr 14 2009 Ricky Zhou <ricky@fedoraproject.org> - 1.1-3
4631f27
- Change define to global.
4631f27
- Remove old >= 8 conditional.
4631f27
- Remove unnecessary BuildRequires on python-devel.
4631f27
e80f194
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1-2
e80f194
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
e80f194
5bbb088
* Sat Dec 06 2008 Ricky Zhou <ricky@fedoraproject.org> - 1.1-1
5bbb088
- Upstream released new version.
5bbb088
24080dd
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.0-4
24080dd
- Rebuild for Python 2.6
24080dd
f920ac3
* Thu Jul 17 2008 Ricky Zhou <ricky@fedoraproject.org> - 1.0-3
f920ac3
- Update Requires for python-webob rename.
f920ac3
- Add BuildRequires on python-webob for tests.
f920ac3
f920ac3
* Sat Jul 07 2008 Ricky Zhou <ricky@fedoraproject.org> - 1.0-2
f920ac3
- Add %%check section.
f920ac3
f920ac3
* Sat Jun 14 2008 Ricky Zhou <ricky@fedoraproject.org> - 1.0-1
f920ac3
- Initial RPM Package.