summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathaniel McCallum <nathaniel@natemccallum.com>2010-06-24 18:45:50 -0400
committerNathaniel McCallum <nathaniel@natemccallum.com>2010-06-24 18:45:50 -0400
commit4b691345eecba52f93bcb75fd4958c6265e7e4c6 (patch)
tree728e44c597a0ac3f605a932b3a131dff6c1a8db0
parent6ed947015cf916b312d3b9a27cb7e67b3e2909ef (diff)
downloadzenoss-4b691345eecba52f93bcb75fd4958c6265e7e4c6.tar.gz
zenoss-4b691345eecba52f93bcb75fd4958c6265e7e4c6.tar.xz
zenoss-4b691345eecba52f93bcb75fd4958c6265e7e4c6.zip
added python-zope-testingHEADmaster
-rw-r--r--python-zope-testing.spec64
1 files changed, 64 insertions, 0 deletions
diff --git a/python-zope-testing.spec b/python-zope-testing.spec
new file mode 100644
index 0000000..0ce8b04
--- /dev/null
+++ b/python-zope-testing.spec
@@ -0,0 +1,64 @@
+%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
+
+%global modname zope.testing
+%global version 3.9.5
+%global release 1
+
+Name: python-zope-testing
+Version: %{version}
+Release: %{release}%{?dist}
+Summary: Zope Testing Framework
+Group: Development/Libraries
+License: ZPLv2.1
+URL: http://pypi.python.org/pypi/%{modname}
+Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.tar.gz
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: python-devel
+BuildRequires: python-setuptools
+Requires: python-zope-filesystem
+
+%description
+This package provides a number of testing frameworks. It includes a
+flexible test runner, and supports both doctest and unittest.
+
+%prep
+%setup -q -n %{modname}-%{version}
+
+%build
+%{__python} setup.py build
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root,-)
+%doc CHANGES.txt README.txt
+%{python_sitelib}/zope/testing
+%{python_sitelib}/%{modname}-%{version}-*.egg-info
+%{python_sitelib}/%{modname}-%{version}-*.pth
+%{_bindir}/zope-testrunner
+
+%changelog
+* Thu Jun 24 2010 Nathaniel McCallum <nathaniel@natemccallum.com> - 3.9.5-1
+- Upgrade to 3.9.5
+
+* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7.3-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Mon Jun 15 2009 Conrad Meyer <konrad@tylerc.org> - 3.7.3-3
+- Actually fix file conflict with python-zope-filesystem.
+
+* Sat Jun 13 2009 Conrad Meyer <konrad@tylerc.org> - 3.7.3-2
+- Fix file conflict with python-zope-filesystem.
+
+* Wed Apr 22 2009 Conrad Meyer <konrad@tylerc.org> - 3.7.3-1
+- Bump to 3.7.3.
+
+* Sun Dec 14 2008 Conrad Meyer <konrad@tylerc.org> - 3.7.1-1
+- Initial package.