Imported Fedora15 release 0.11.4-2
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>
Thu, 29 Aug 2013 09:32:40 +0000 (12:32 +0300)
committerMarkus Lehtonen <markus.lehtonen@linux.intel.com>
Thu, 29 Aug 2013 09:32:40 +0000 (12:32 +0300)
packaging/nose-coverage-0.3.4.patch [new file with mode: 0644]
packaging/python-nose.spec [new file with mode: 0644]

diff --git a/packaging/nose-coverage-0.3.4.patch b/packaging/nose-coverage-0.3.4.patch
new file mode 100644 (file)
index 0000000..233737b
--- /dev/null
@@ -0,0 +1,16 @@
+Index: nose-0.11.4/functional_tests/doc_tests/test_coverage_html/coverage_html.rst
+===================================================================
+--- nose-0.11.4.orig/functional_tests/doc_tests/test_coverage_html/coverage_html.rst
++++ nose-0.11.4/functional_tests/doc_tests/test_coverage_html/coverage_html.rst
+@@ -32,9 +32,9 @@ The console coverage output is printed, 
+     test_covered.test_blah ... hi
+     ok
+     <BLANKLINE>
+-    Name    Stmts   Exec  Cover   Missing
++    Name    Stmts   Miss  Cover   Missing
+     -------------------------------------
+-    blah        4      3    75%   6
++    blah        4      1    75%   6
+     ----------------------------------------------------------------------
+     Ran 1 test in ...s
+     <BLANKLINE>
diff --git a/packaging/python-nose.spec b/packaging/python-nose.spec
new file mode 100644 (file)
index 0000000..fdd22c0
--- /dev/null
@@ -0,0 +1,198 @@
+%if 0%{?fedora} < 13 && 0%{?rhel} < 5
+%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
+%{!?python_version: %global python_version %(%{__python} -c "import sys ; print sys.version[:3]")}
+%endif
+
+%global upstream_name nose
+
+# Enable building without docs to avoid a circular dependency between this and python-sphinx
+%global with_docs 0
+
+Name:           python-nose
+Version:        0.11.4
+Release:        2%{?dist}
+Summary:        A discovery-based unittest extension for Python
+
+Group:          Development/Languages
+License:        LGPLv2+ and Public Domain
+URL:            http://somethingaboutorange.com/mrl/projects/nose/
+Source0:        http://somethingaboutorange.com/mrl/projects/nose/nose-%{version}.tar.gz
+# Upstream has this change already.
+Patch0: nose-coverage-0.3.4.patch
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch:      noarch
+BuildRequires:  python2-devel
+%if 0%{?fedora} && 0%{?fedora} < 13
+BuildRequires: python-setuptools-devel
+%else
+BuildRequires: python-setuptools
+%endif
+BuildRequires: dos2unix
+BuildRequires:  python-coverage
+Requires:       python-setuptools
+
+%description
+nose extends the test loading and running features of unittest, making
+it easier to write, find and run tests.
+
+By default, nose will run tests in files or directories under the
+current working directory whose names include "test" or "Test" at a
+word boundary (like "test_this" or "functional_test" or "TestClass"
+but not "libtest"). Test output is similar to that of unittest, but
+also includes captured stdout output from failing tests, for easy
+print-style debugging.
+
+These features, and many more, are customizable through the use of
+plugins. Plugins included with nose provide support for doctest, code
+coverage and profiling, flexible attribute-based test selection,
+output capture and more.
+
+%if 0%{?with_docs}
+%package docs
+Summary:        Nose Documentation
+Group:          Documentation
+BuildRequires:  python-sphinx
+
+%description docs
+Documentation for Nose
+%endif # with_docs
+
+%prep
+%setup -q -n %{upstream_name}-%{version}
+%patch0 -p1 -b .coverage
+
+dos2unix examples/attrib_plugin.py
+
+%build
+%{__python} setup.py build
+
+
+%install
+rm -rf %{buildroot}
+%{__python} setup.py install --skip-build --root %{buildroot} \
+           --install-data=%{_datadir}
+
+%if 0%{?with_docs}
+pushd doc
+make html
+]rm -rf .build/html/.buildinfo .build/html/_sources
+mv .build/html ..
+rm -rf .build
+popd
+cp -a doc reST
+%endif # with_docs
+
+
+%check
+%{__python} selftest.py
+
+
+%clean
+rm -rf %{buildroot}
+
+
+%files
+%defattr(-,root,root,-)
+%doc AUTHORS CHANGELOG lgpl.txt NEWS README.txt
+%{_bindir}/nosetests
+%{_bindir}/nosetests-%{python_version}
+%{_mandir}/man1/nosetests.1.gz
+%{python_sitelib}/nose*
+
+%if 0%{?with_docs}
+%files docs
+%defattr(-,root,root,-)
+%doc html reST examples
+%endif # with_docs
+
+%changelog
+* Tue Dec 7 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.11.4-2
+- Fix FTBFS with newer coverage
+
+* Thu Oct 21 2010 Luke Macken <lmacken@redhat.com> - 0.11.4-1
+- Update to 0.11.4 (#3630722)
+
+* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.11.3-5
+- add support for building without docs, to avoid a circular build-time
+dependency between this and python-sphinx; disable docs subpackage for now
+- add (apparently) missing BR on python-coverage (appears to be needed
+for %%check)
+- cherrypick upstream compatibility fixes for 2.7
+
+* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.11.3-4
+- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
+
+* Thu May 20 2010 Luke Macken <lmacken@redhat.com> - 0.11.3-3
+- Update URL to http://code.google.com/p/python-nose/
+- Align description to reflect that in setup.py
+- Create a docs subpackage containing HTML & reST documentation
+- Thanks to Gareth Armstrong at HP for the patch
+
+* Thu May 06 2010 Luke Macken <lmacken@redhat.com> - 0.11.3-2
+- Don't hardcode the python version
+
+* Thu May 06 2010 Luke Macken <lmacken@redhat.com> - 0.11.3-1
+- Update to 0.11.3
+- Enable the self tests
+
+* Mon Oct 05 2009 Luke Macken <lmacken@redhat.com> - 0.11.1-2
+- Include the new nosetests-2.6 script as well
+
+* Mon Oct 05 2009 Luke Macken <lmacken@redhat.com> - 0.11.1-1
+- Update to 0.11.1
+
+* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.4-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.4-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.10.4-1
+- Update to 0.10.4 to fix 2.6 issues
+
+* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.10.3-2
+- Rebuild for Python 2.6
+
+* Sat Aug 02 2008 Luke Macken <lmacken@redhat.com> 0.10.3-1
+- Update to 0.10.3
+
+* Thu Feb 28 2008 Luke Macken <lmacken@redhat.com> 0.10.1-1
+- Update to 0.10.1
+
+* Mon Dec  3 2007 Luke Macken <lmacken@redhat.com> 0.10.0-2
+- Add python-setuptools to Requires (Bug #408491)
+
+* Tue Nov 27 2007 Luke Macken <lmacken@redhat.com> 0.10.0-1
+- 0.10.0
+
+* Sun Sep  2 2007 Luke Macken <lmacken@redhat.com> 0.10.0-0.3.b1
+- Update for python-setuptools changes in rawhide
+
+* Tue Aug 21 2007 Luke Macken <lmacken@redhat.com> 0.10.0-0.2.b1
+- 0.10.0b1
+- Update license tag to LGPLv2
+
+* Fri Jun 20 2007 Luke Macken <lmacken@redhat.com> 0.10.0-0.1.a2
+- 0.10.0a2
+
+* Sat Jun  2 2007 Luke Macken <lmacken@redhat.com> 0.9.3-1
+- Latest upstream release
+- Remove python-nose-0.9.2-mandir.patch
+
+* Sat Mar  3 2007 Luke Macken <lmacken@redhat.com> 0.9.2-1
+- Add nosetests(1) manpage, and python-nose-0.9.2-mandir.patch to put it in
+  the correct location.
+- 0.9.2
+
+* Sat Dec  9 2006 Luke Macken <lmacken@redhat.com> 0.9.1-2
+- Rebuild for python 2.5
+
+* Fri Nov 24 2006 Luke Macken <lmacken@redhat.com> 0.9.1-1
+- 0.9.1
+
+* Fri Sep  8 2006 Luke Macken <lmacken@redhat.com> 0.9.0-1
+- 0.9.0
+
+* Wed Apr 19 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.8.7.2-1
+- Initial RPM release