[python-webtest1.3] Initial import (#884855)

Ralph Bean ralph at fedoraproject.org
Thu Dec 20 19:26:34 UTC 2012


commit 569ad01574763e6a2e08b7ff57ccf7ff75619cff
Author: Ralph Bean <rbean at redhat.com>
Date:   Thu Dec 20 14:26:25 2012 -0500

    Initial import (#884855)

 .gitignore             |    1 +
 python-webtest1.3.spec |  117 ++++++++++++++++++++++++++++++++++++++++++++++++
 sources                |    1 +
 3 files changed, 119 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..d2922e7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/WebTest-1.3.4.tar.gz
diff --git a/python-webtest1.3.spec b/python-webtest1.3.spec
new file mode 100644
index 0000000..dad4a90
--- /dev/null
+++ b/python-webtest1.3.spec
@@ -0,0 +1,117 @@
+Name:           python-webtest1.3
+Version:        1.3.4
+Release:        4%{?dist}
+Summary:        Helper to test WSGI applications
+
+Group:          Development/Languages
+License:        MIT
+URL:            http://pythonpaste.org/webtest/
+Source0:        http://pypi.python.org/packages/source/W/WebTest/WebTest-%{version}.tar.gz
+
+BuildArch:      noarch
+BuildRequires:  python-setuptools
+BuildRequires:  python-nose
+BuildRequires:  python-webob1.2
+BuildRequires:  python-dtopt
+Requires:       python-webob1.2
+
+%description
+WebTest wraps any WSGI application and makes it easy to send test
+requests to that application, without starting up an HTTP server.
+
+This provides convenient full-stack testing of applications written
+with any WSGI-compatible framework.
+
+%prep
+%setup -q -n WebTest-%{version}
+rm -rf *.egg-info
+
+# This removes some doctest parameters that cause our check section to fail
+rm setup.cfg
+
+%build
+%{__python} setup.py build bdist_egg
+
+%install
+mkdir -p %{buildroot}%{python_sitelib}
+easy_install -m --prefix %{buildroot}%{_usr} dist/*.egg
+
+# Fix script-without-shebang
+find %{buildroot}%{python_sitelib} -name "*.py" -exec chmod a-x {} \;
+
+%check
+PYTHONPATH=$(pwd) python setup.py test
+
+%files
+%doc docs/*
+%{python_sitelib}/WebTest-%{version}*.egg/
+
+
+%changelog
+* Tue Dec 18 2012 Ralph Bean <rbean at redhat.com> - 1.3.4-4
+- Removed python_sitelib macro definition from top of spec.  Not required.
+
+* Thu Dec 06 2012 Ralph Bean <rbean at redhat.com> - 1.3.4-3
+- Forked from rawhide to create a forward compat el6 package.
+
+* Sat Jul 21 2012 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 1.3.4-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
+
+* Sun Jun 24 2012 Ricky Zhou <ricky at fedoraproject.org> - 1.3.4-1
+- Update to 1.3.4.
+
+* Sat Jan 14 2012 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 1.3.3-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
+* Wed Dec 14 2011 Luke Macken <lmacken at redhat.com> - 1.3.3-1
+- Update to 1.3.3
+
+* Fri Jul 15 2011 Toshio Kuratomi <toshio at fedoraproject.org> - 1.2.3-1
+- Update to 1.2.3
+
+* Wed Feb 09 2011 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 1.2.2-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Tue Oct 05 2010 Luke Macken <lmacken at redhat.com> - 1.2.2-1
+- Update to 1.2.2
+- Add python-dtopt to the BuildRequires
+- Include the docs again
+
+* Sun Jul 25 2010 Orcan Ogetbil <oget[dot]fedora[at]gmail[dot[com> - 1.2.1-3
+- Disable tests and docs for now. They are not included in this tarball
+
+* Thu Jul 22 2010 David Malcolm <dmalcolm at redhat.com> - 1.2.1-2
+- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
+
+* Wed Jun 09 2010 Luke Macken <lmacken at redhat.com> - 1.2.1-1
+- Update to 1.2.1
+
+* Sun Jul 26 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 1.2-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Sun May 31 2009 Luke Macken <lmacken at redhat.com> - 1.2-1
+- Update to 1.2
+
+* Tue Apr 14 2009 Ricky Zhou <ricky at fedoraproject.org> - 1.1-3
+- Change define to global.
+- Remove old >= 8 conditional.
+- Remove unnecessary BuildRequires on python-devel.
+
+* Thu Feb 26 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 1.1-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Sat Dec 06 2008 Ricky Zhou <ricky at fedoraproject.org> - 1.1-1
+- Upstream released new version.
+
+* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm at gmail.com> - 1.0-4
+- Rebuild for Python 2.6
+
+* Thu Jul 17 2008 Ricky Zhou <ricky at fedoraproject.org> - 1.0-3
+- Update Requires for python-webob rename.
+- Add BuildRequires on python-webob for tests.
+
+* Sat Jul 07 2008 Ricky Zhou <ricky at fedoraproject.org> - 1.0-2
+- Add %%check section.
+
+* Sat Jun 14 2008 Ricky Zhou <ricky at fedoraproject.org> - 1.0-1
+- Initial RPM Package.
diff --git a/sources b/sources
index e69de29..598ae30 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+be4b448e91306f297e6e302c3ebe9540  WebTest-1.3.4.tar.gz


More information about the scm-commits mailing list