9fb6a8
%bcond_without python3
9fb6a8
%bcond_with python36_module
9fb6a8
9fb6a8
%global modname nose
9fb6a8
9fb6a8
# Enable building without docs to avoid a circular dependency between this and python-sphinx
9fb6a8
#
9fb6a8
# Docs disabled permanently because the docs build config is not ported to
9fb6a8
# Python 3 and thus cannot be built with Python 3 version of Sphinx.
9fb6a8
%bcond_with docs
9fb6a8
9fb6a8
# python2X and python3X are built form the same module, so we need a conditional for python2 bits
9fb6a8
# the state of the conditional is not important in the spec, it is set in modulemd
9fb6a8
%bcond_with python2
9fb6a8
9fb6a8
%global desc nose extends the test loading and running features of unit test, making\
9fb6a8
it easier to write, find and run tests.\
9fb6a8
\
9fb6a8
By default, nose will run tests in files or directories under the\
9fb6a8
current working directory whose names include "test" or "Test" at a\
9fb6a8
word boundary (like "test_this" or "functional_test" or "TestClass"\
9fb6a8
but not "libtest"). Test output is similar to that of unit test, but\
9fb6a8
also includes captured stdout output from failing tests, for easy\
9fb6a8
print-style debugging.\
9fb6a8
\
9fb6a8
These features, and many more, are customizable through the use of\
9fb6a8
plugins. Plugins included with nose provide support for doctest, code\
9fb6a8
coverage and profiling, flexible attribute-based test selection,\
9fb6a8
output capture and more.\
9fb6a8
9fb6a8
9fb6a8
Name:           python-%{modname}
9fb6a8
Version:        1.3.7
13511a
Release:        31%{?dist}
9fb6a8
BuildArch:      noarch
9fb6a8
9fb6a8
License:        LGPLv2+ and Public Domain
9fb6a8
Summary:        Discovery-based unit test extension for Python
9fb6a8
URL:            https://nose.readthedocs.org/en/latest/
9fb6a8
Source0:        http://pypi.python.org/packages/source/n/nose/nose-%{version}.tar.gz
9fb6a8
# Make compatible with coverage 4.1
9fb6a8
# https://github.com/nose-devs/nose/pull/1004
9fb6a8
Patch0:         python-nose-coverage4.patch
9fb6a8
# Fix python 3.5 compat
9fb6a8
# https://github.com/nose-devs/nose/pull/983
9fb6a8
Patch1:         python-nose-py35.patch
9fb6a8
# Fix UnicodeDecodeError with captured output
9fb6a8
# https://github.com/nose-devs/nose/pull/988
9fb6a8
Patch2:         python-nose-unicode.patch
9fb6a8
# Allow docutils to read utf-8 source
9fb6a8
Patch3:         python-nose-readunicode.patch
9fb6a8
# Fix Python 3.6 compatibility
9fb6a8
# Python now returns ModuleNotFoundError instead of the previous ImportError
9fb6a8
# https://github.com/nose-devs/nose/pull/1029
9fb6a8
Patch4:         python-nose-py36.patch
9fb6a8
9fb6a8
BuildRequires:  dos2unix
9fb6a8
9fb6a8
%description
9fb6a8
%{desc}
9fb6a8
9fb6a8
%package docs
9fb6a8
Summary:        Nose Documentation
9fb6a8
%if %{with python3}
9fb6a8
%if %{with docs}
9fb6a8
BuildRequires:  %{_bindir}/sphinx-build-3
9fb6a8
%endif
9fb6a8
%endif
9fb6a8
9fb6a8
%description docs
9fb6a8
Documentation for Nose.
9fb6a8
9fb6a8
%if %{with python2}
9fb6a8
%package -n python2-%{modname}
9fb6a8
Summary:        %{summary}
9fb6a8
BuildRequires:  python2-devel
9fb6a8
BuildRequires:  python2-setuptools
9fb6a8
BuildRequires:  python2-coverage >= 3.4-1
9fb6a8
Requires:       python2-setuptools
9fb6a8
%{?python_provide:%python_provide python2-%{modname}}
9fb6a8
9fb6a8
%description -n python2-%{modname}
9fb6a8
%{desc}
9fb6a8
%endif
9fb6a8
9fb6a8
%if %{with python3}
9fb6a8
%package -n python3-%{modname}
9fb6a8
Summary:        %{summary}
9fb6a8
%if %{with python36_module}
9fb6a8
BuildRequires:  python36-devel
9fb6a8
BuildRequires:  python36-rpm-macros
9fb6a8
%else
9fb6a8
BuildRequires:  python3-devel
9fb6a8
%endif
9fb6a8
BuildRequires:  python3-setuptools
9fb6a8
BuildRequires:  python3-coverage >= 3.4-1
13511a
13511a
# Require alternatives version that implements the --keep-foreign flag
13511a
Requires(postun): alternatives >= 1.19.1-1
13511a
# For alternatives
9fb6a8
Requires:       python36
9fb6a8
Requires(post): python36
9fb6a8
Requires(postun): python36
9fb6a8
Requires:       python3-setuptools
9fb6a8
%{?python_provide:%python_provide python3-%{modname}}
9fb6a8
Obsoletes:      platform-python-%{modname} < %{version}-%{release}
9fb6a8
9fb6a8
%description -n python3-%{modname}
9fb6a8
%{desc}
9fb6a8
9fb6a8
This package installs the nose module and nosetests3 program that can discover
9fb6a8
python3 unit tests.
9fb6a8
%endif
9fb6a8
9fb6a8
%prep
9fb6a8
%setup -qc
9fb6a8
pushd %{modname}-%{version}
9fb6a8
%autopatch -p1
9fb6a8
dos2unix examples/attrib_plugin.py
9fb6a8
cp -pr lgpl.txt AUTHORS CHANGELOG examples NEWS README.txt ..
9fb6a8
popd
9fb6a8
9fb6a8
%if %{with python3}
9fb6a8
mv %{modname}-%{version} python3
9fb6a8
%endif
9fb6a8
%if %{with python2}
9fb6a8
mv %{modname}-%{version} python2
9fb6a8
%endif
9fb6a8
9fb6a8
%build
9fb6a8
%if %{with python2}
9fb6a8
pushd python2
9fb6a8
%py2_build
9fb6a8
popd
9fb6a8
%endif
9fb6a8
9fb6a8
%if %{with python3}
9fb6a8
pushd python3
9fb6a8
%py3_build
9fb6a8
popd
9fb6a8
%endif
9fb6a8
9fb6a8
%install
9fb6a8
mkdir -p %{buildroot}%{_mandir}/man1
9fb6a8
9fb6a8
%if %{with python2}
9fb6a8
pushd python2
9fb6a8
%py2_install
9fb6a8
mv %{buildroot}%{_bindir}/nosetests{,-%{python2_version}}
9fb6a8
ln -sf nosetests-%{python2_version} %{buildroot}%{_bindir}/nosetests-2
9fb6a8
mv %{buildroot}%{_prefix}/man/man1/nosetests.1 %{buildroot}%{_mandir}/man1/nosetests-%{python2_version}.1
9fb6a8
ln -sf nosetests-%{python2_version}.1 %{buildroot}%{_mandir}/man1/nosetests-2.1
9fb6a8
popd
9fb6a8
%endif
9fb6a8
9fb6a8
%if %{with python3}
9fb6a8
pushd python3
9fb6a8
%py3_install
9fb6a8
mv %{buildroot}%{_bindir}/nosetests{,-%{python3_version}}
9fb6a8
touch %{buildroot}%{_bindir}/nosetests-3 # for alternatives
9fb6a8
mv %{buildroot}%{_prefix}/man/man1/nosetests.1 %{buildroot}%{_mandir}/man1/nosetests-%{python3_version}.1
9fb6a8
touch %{buildroot}%{_mandir}/man1/nosetests-3.1 # for alternatives
9fb6a8
popd
9fb6a8
%endif
9fb6a8
9fb6a8
%if %{with python2}
9fb6a8
ln -sf nosetests-2.1 %{buildroot}%{_mandir}/man1/nosetests.1
9fb6a8
%endif
9fb6a8
9fb6a8
%if %{with python3}
9fb6a8
%if %{with docs}
9fb6a8
pushd python3/doc
9fb6a8
  sphinx-build-3 -b html -d .build/doctrees . .build/html
9fb6a8
  rm -vrf .build/html/.buildinfo .build/html/_sources
9fb6a8
  mv .build/html ../..
9fb6a8
  rm -vrf .build
9fb6a8
popd
9fb6a8
%endif
9fb6a8
cp -a python3/doc reST
9fb6a8
rm -vrf reST/{.static,.templates}
9fb6a8
%endif
9fb6a8
9fb6a8
%check
9fb6a8
%if %{with python2}
9fb6a8
pushd python2
9fb6a8
%{__python2} selftest.py
9fb6a8
popd
9fb6a8
%endif
9fb6a8
9fb6a8
%if %{with python3}
9fb6a8
pushd python3
9fb6a8
%{__python3} setup.py build_tests
9fb6a8
%{__python3} selftest.py
9fb6a8
popd
9fb6a8
%endif
9fb6a8
9fb6a8
%if %{with python3}
9fb6a8
%post -n python3-%{modname}
9fb6a8
alternatives --add-slave python3 %{_bindir}/python%{python3_version} \
9fb6a8
    %{_bindir}/nosetests-3 \
9fb6a8
    nosetests-3 \
9fb6a8
    %{_bindir}/nosetests-%{python3_version}
9fb6a8
9fb6a8
alternatives --add-slave python3 %{_bindir}/python%{python3_version} \
9fb6a8
    %{_mandir}/man1/nosetests-3.1.gz \
9fb6a8
    nosetests-3-man \
9fb6a8
    %{_mandir}/man1/nosetests-%{python3_version}.1.gz
9fb6a8
9fb6a8
%postun -n python3-%{modname}
9fb6a8
if [ $1 -eq 0 ]; then
13511a
  alternatives --keep-foreign --remove-slave python3 \
9fb6a8
      %{_bindir}/python%{python3_version} nosetests-3
9fb6a8
13511a
  alternatives --keep-foreign --remove-slave python3 \
9fb6a8
      %{_bindir}/python%{python3_version} nosetests-3-man
9fb6a8
fi
9fb6a8
%endif
9fb6a8
9fb6a8
%if %{with python2}
9fb6a8
%files -n python2-%{modname}
9fb6a8
%license lgpl.txt
9fb6a8
%{_bindir}/nosetests-2
9fb6a8
%{_bindir}/nosetests-%{python2_version}
9fb6a8
%{_mandir}/man1/nosetests.1*
9fb6a8
%{_mandir}/man1/nosetests-2.1*
9fb6a8
%{_mandir}/man1/nosetests-%{python2_version}.1*
9fb6a8
%{python2_sitelib}/nose-*.egg-info/
9fb6a8
%{python2_sitelib}/nose/
9fb6a8
%endif
9fb6a8
9fb6a8
%if %{with python3}
9fb6a8
%files -n python3-%{modname}
9fb6a8
%license lgpl.txt
9fb6a8
%ghost %{_bindir}/nosetests-3
9fb6a8
%{_bindir}/nosetests-%{python3_version}
9fb6a8
%ghost %{_mandir}/man1/nosetests-3.1*
9fb6a8
%{_mandir}/man1/nosetests-%{python3_version}.1*
9fb6a8
%{python3_sitelib}/nose-*.egg-info/
9fb6a8
%{python3_sitelib}/nose/
9fb6a8
%endif
9fb6a8
9fb6a8
%files docs
9fb6a8
%license lgpl.txt
9fb6a8
%doc AUTHORS CHANGELOG examples NEWS README.txt
9fb6a8
%if %{with python3}
9fb6a8
%if %{with docs}
9fb6a8
%doc html reST
9fb6a8
%endif  # with docs
9fb6a8
%endif  # with python3
9fb6a8
9fb6a8
%changelog
13511a
* Fri Jul 30 2021 Tomas Orsava <torsava@redhat.com> - 1.3.7-31
13511a
- Adjusted the postun scriptlets to enable upgrading to RHEL 9
13511a
- Resolves: rhbz#1933055
13511a
9fb6a8
* Thu Apr 25 2019 Tomas Orsava <torsava@redhat.com> - 1.3.7-30
9fb6a8
- Bumping due to problems with modular RPM upgrade path
9fb6a8
- Resolves: rhbz#1695587
9fb6a8
9fb6a8
* Thu Oct 04 2018 Lumír Balhar <lbalhar@redhat.com> - 1.3.7-29
9fb6a8
- Fix alternatives - post and postun sections only with python3
9fb6a8
- Resolves: rhbz#1633534
9fb6a8
9fb6a8
* Tue Oct 02 2018 Lumír Balhar <lbalhar@redhat.com> - 1.3.7-28
9fb6a8
- Add alternatives for the executable and manpage
9fb6a8
- Resolves: rhbz#1633534
9fb6a8
9fb6a8
* Wed Aug 15 2018 Lumír Balhar <lbalhar@redhat.com> - 1.3.7-27
9fb6a8
- Remove nosetest-3 executable/manpage. This will be provided by python3 module.
9fb6a8
- Resolves: rhbz#1615727
9fb6a8
9fb6a8
* Wed Aug 08 2018 Lumír Balhar <lbalhar@redhat.com> - 1.3.7-26
9fb6a8
- Remove unversioned binaries from python2 subpackage
9fb6a8
- Resolves: rhbz#1613343
9fb6a8
9fb6a8
* Tue Jul 31 2018 Lumír Balhar <lbalhar@redhat.com> - 1.3.7-25
9fb6a8
- Make possible to disable python3 subpackage
9fb6a8
9fb6a8
* Wed Jul 18 2018 Tomas Orsava <torsava@redhat.com> - 1.3.7-24
9fb6a8
- BuildRequire also python36-rpm-macros as part of the python36 module build
9fb6a8
9fb6a8
* Wed Jul 04 2018 Miro Hrončok <mhroncok@redhat.com> - 1.3.7-23
9fb6a8
- Add a bcond for python2
9fb6a8
- Build docs with python3 explicitly
9fb6a8
9fb6a8
* Tue Jun 26 2018 Tomas Orsava <torsava@redhat.com> - 1.3.7-22
9fb6a8
- Use python2 macros instead of unversioned python macros
9fb6a8
9fb6a8
* Mon Jun 18 2018 Tomas Orsava <torsava@redhat.com> - 1.3.7-21
9fb6a8
- Disabled docs because the docs build config is not ported to Python 3 and
9fb6a8
  thus cannot be built with Python 3 version of Sphinx
9fb6a8
9fb6a8
* Mon Apr 30 2018 Tomas Orsava <torsava@redhat.com> - 1.3.7-20
9fb6a8
- Require the python36-devel package when building for the python36 module
9fb6a8
9fb6a8
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.7-19
9fb6a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
9fb6a8
9fb6a8
* Tue Nov 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.3.7-18
9fb6a8
- Use better Obsoletes for platform-python
9fb6a8
9fb6a8
* Sat Nov 04 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.3.7-17
9fb6a8
- Remove platform-python subpackage
9fb6a8
- Cleanup spec
9fb6a8
9fb6a8
* Fri Sep 29 2017 Troy Dawson <tdawson@redhat.com> - 1.3.7-16
9fb6a8
- Cleanup spec file conditionals
9fb6a8
9fb6a8
* Thu Aug 10 2017 Miro Hrončok <mhroncok@redhat.com> - 1.3.7-15
9fb6a8
- Add platform-python subpackage
9fb6a8
9fb6a8
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.7-14
9fb6a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
9fb6a8
9fb6a8
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.7-13
9fb6a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
9fb6a8
9fb6a8
* Mon Dec 12 2016 Tomas Orsava <torsava@redhat.com> - 1.3.7-12
9fb6a8
- Patched to fix compatibility with Python 3.6
9fb6a8
9fb6a8
* Mon Dec 05 2016 Randy Barlow <bowlofeggs@fedoraproject.org> - 1.3.7-11
9fb6a8
- Provide nosetests-3 (#1289820).
9fb6a8
- Rename python-nose to python2-nose and use Python provides macro.
9fb6a8
- Include the license with the -docs subpackage.
9fb6a8
- Use symlinks to provide man pages for all the Python version variants of /usr/bin/nosetests.
9fb6a8
- The -docs subpackage no longer requires python-nose since that doesn't make sense.
9fb6a8
9fb6a8
* Tue Nov 15 2016 Orion Poplawski <orion@cora.nwra.com> 1.3.7-10
9fb6a8
- Add upstream patch to fix python 3.5 compat
9fb6a8
- Add patch to allow docutils to read unicode source
9fb6a8
- Update spec
9fb6a8
9fb6a8
* Wed Nov 9 2016 Orion Poplawski <orion@cora.nwra.com> 1.3.7-9
9fb6a8
- Add patch to fix build with coverage 4.1
9fb6a8
9fb6a8
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.7-8
9fb6a8
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
9fb6a8
9fb6a8
* Tue Feb 2 2016 Orion Poplawski <orion@cora.nwra.com> 1.3.7-7
9fb6a8
- Fix URL
9fb6a8
9fb6a8
* Thu Sep 24 2015 Robert Kuska <rkuska@redhat.com> 1.3.7-6
9fb6a8
- Rebuilt for Python3.5 rebuild with disabled tests under python3
9fb6a8
9fb6a8
* Sun Aug 09 2015 Kevin Fenzi <kevin@scrye.com> 1.3.7-5
9fb6a8
- Add conditional for python-sphinx buildrequires when with_docs is not set. 
9fb6a8
- Fixes bug #1251700
9fb6a8
9fb6a8
* Fri Jul 24 2015 Kevin Fenzi <kevin@scrye.com> 1.3.7-4
9fb6a8
- Version provides correctly for python2-nose.
9fb6a8
9fb6a8
* Fri Jul 17 2015 Kevin Fenzi <kevin@scrye.com> 1.3.7-3
9fb6a8
- Add provides for python2-nose. Fixes bug #1241670
9fb6a8
9fb6a8
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.7-2
9fb6a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
9fb6a8
9fb6a8
* Wed Jun 03 2015 Kevin Fenzi <kevin@scrye.com> 1.3.7-1
9fb6a8
- Update to 1.3.7 (#1227345)
9fb6a8
9fb6a8
* Sat Apr 04 2015 Ralph Bean <rbean@redhat.com> - 1.3.6-1
9fb6a8
- new version
9fb6a8
9fb6a8
* Wed Aug 27 2014 Luke Macken <lmacken@redhat.com> - 1.3.4-1
9fb6a8
- Update to 1.3.4 (#1094718)
9fb6a8
9fb6a8
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-3
9fb6a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
9fb6a8
9fb6a8
* Mon May 19 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 1.3.2-2
9fb6a8
- Add patch for issue https://github.com/nose-devs/nose/pull/811,
9fb6a8
which makes tests of python-billiard and python-falcon fail with Python 3.4
9fb6a8
9fb6a8
* Sat May 03 2014 Orion Poplawski <orion@cora.nwra.com> - 1.3.2-1
9fb6a8
- Update to 1.3.2 for Python 3.4 suport
9fb6a8
9fb6a8
* Fri May 02 2014 Orion Poplawski <orion@cora.nwra.com> - 1.3.1-2
9fb6a8
- Rebuild for Python 3.4
9fb6a8
9fb6a8
* Fri Mar 14 2014 Luke Macken <lmacken@redhat.com> - 1.3.1-1
9fb6a8
- Update to 1.3.1 (#1074971)
9fb6a8
9fb6a8
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-2
9fb6a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
9fb6a8
9fb6a8
* Tue Apr  9 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.3.0-1
9fb6a8
- Update to 1.3.0 upstream with python-3.3 fixes
9fb6a8
9fb6a8
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-2
9fb6a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
9fb6a8
9fb6a8
* Wed Sep 12 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 1.2.1-1
9fb6a8
- New upsream 1.2.1 that just bumps the version properly
9fb6a8
9fb6a8
* Mon Sep 10 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 1.2.0-1
9fb6a8
- Update to nose-1.2.0.
9fb6a8
- Two less python3 test failures than 1.1.2
9fb6a8
9fb6a8
* Sat Aug  4 2012 David Malcolm <dmalcolm@redhat.com> - 1.1.2-5
9fb6a8
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
9fb6a8
- disable selftests that fail under 3.3
9fb6a8
9fb6a8
* Fri Aug  3 2012 David Malcolm <dmalcolm@redhat.com> - 1.1.2-4
9fb6a8
- remove rhel logic from with_python3 conditional
9fb6a8
9fb6a8
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.2-3
9fb6a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
9fb6a8
9fb6a8
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.2-2
9fb6a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
9fb6a8
9fb6a8
* Mon Aug 1 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 1.1.2-1
9fb6a8
- Upstream bugfix release
9fb6a8
9fb6a8
* Wed Jul 27 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 1.1.1-1
9fb6a8
- Upstream bugfix release
9fb6a8
9fb6a8
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.0-2
9fb6a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
9fb6a8
9fb6a8
* Sun Dec 26 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 1.0.0-1
9fb6a8
- Update to 1.0.0
9fb6a8
- Create the docs subpackage for text docs even if we don't create the html docs.
9fb6a8
- Make python3 subpackage
9fb6a8
9fb6a8
* Tue Dec 7 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.11.4-2
9fb6a8
- Fix FTBFS with newer coverage
9fb6a8
9fb6a8
* Thu Oct 21 2010 Luke Macken <lmacken@redhat.com> - 0.11.4-1
9fb6a8
- Update to 0.11.4 (#3630722)
9fb6a8
9fb6a8
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.11.3-5
9fb6a8
- add support for building without docs, to avoid a circular build-time
9fb6a8
dependency between this and python-sphinx; disable docs subpackage for now
9fb6a8
- add (apparently) missing BR on python-coverage (appears to be needed
9fb6a8
for %%check)
9fb6a8
- cherrypick upstream compatibility fixes for 2.7
9fb6a8
9fb6a8
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.11.3-4
9fb6a8
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
9fb6a8
9fb6a8
* Thu May 20 2010 Luke Macken <lmacken@redhat.com> - 0.11.3-3
9fb6a8
- Update URL to http://code.google.com/p/python-nose/
9fb6a8
- Align description to reflect that in setup.py
9fb6a8
- Create a docs subpackage containing HTML & reST documentation
9fb6a8
- Thanks to Gareth Armstrong at HP for the patch
9fb6a8
9fb6a8
* Thu May 06 2010 Luke Macken <lmacken@redhat.com> - 0.11.3-2
9fb6a8
- Don't hardcode the python version
9fb6a8
9fb6a8
* Thu May 06 2010 Luke Macken <lmacken@redhat.com> - 0.11.3-1
9fb6a8
- Update to 0.11.3
9fb6a8
- Enable the self tests
9fb6a8
9fb6a8
* Mon Oct 05 2009 Luke Macken <lmacken@redhat.com> - 0.11.1-2
9fb6a8
- Include the new nosetests-2.6 script as well
9fb6a8
9fb6a8
* Mon Oct 05 2009 Luke Macken <lmacken@redhat.com> - 0.11.1-1
9fb6a8
- Update to 0.11.1
9fb6a8
9fb6a8
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.4-3
9fb6a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
9fb6a8
9fb6a8
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.4-2
9fb6a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
9fb6a8
9fb6a8
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.10.4-1
9fb6a8
- Update to 0.10.4 to fix 2.6 issues
9fb6a8
9fb6a8
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.10.3-2
9fb6a8
- Rebuild for Python 2.6
9fb6a8
9fb6a8
* Sat Aug 02 2008 Luke Macken <lmacken@redhat.com> 0.10.3-1
9fb6a8
- Update to 0.10.3
9fb6a8
9fb6a8
* Thu Feb 28 2008 Luke Macken <lmacken@redhat.com> 0.10.1-1
9fb6a8
- Update to 0.10.1
9fb6a8
9fb6a8
* Mon Dec  3 2007 Luke Macken <lmacken@redhat.com> 0.10.0-2
9fb6a8
- Add python-setuptools to Requires (Bug #408491)
9fb6a8
9fb6a8
* Tue Nov 27 2007 Luke Macken <lmacken@redhat.com> 0.10.0-1
9fb6a8
- 0.10.0
9fb6a8
9fb6a8
* Sun Sep  2 2007 Luke Macken <lmacken@redhat.com> 0.10.0-0.3.b1
9fb6a8
- Update for python-setuptools changes in rawhide
9fb6a8
9fb6a8
* Tue Aug 21 2007 Luke Macken <lmacken@redhat.com> 0.10.0-0.2.b1
9fb6a8
- 0.10.0b1
9fb6a8
- Update license tag to LGPLv2
9fb6a8
9fb6a8
* Wed Jun 20 2007 Luke Macken <lmacken@redhat.com> 0.10.0-0.1.a2
9fb6a8
- 0.10.0a2
9fb6a8
9fb6a8
* Sat Jun  2 2007 Luke Macken <lmacken@redhat.com> 0.9.3-1
9fb6a8
- Latest upstream release
9fb6a8
- Remove python-nose-0.9.2-mandir.patch
9fb6a8
9fb6a8
* Sat Mar  3 2007 Luke Macken <lmacken@redhat.com> 0.9.2-1
9fb6a8
- Add nosetests(1) manpage, and python-nose-0.9.2-mandir.patch to put it in
9fb6a8
  the correct location.
9fb6a8
- 0.9.2
9fb6a8
9fb6a8
* Sat Dec  9 2006 Luke Macken <lmacken@redhat.com> 0.9.1-2
9fb6a8
- Rebuild for python 2.5
9fb6a8
9fb6a8
* Fri Nov 24 2006 Luke Macken <lmacken@redhat.com> 0.9.1-1
9fb6a8
- 0.9.1
9fb6a8
9fb6a8
* Fri Sep  8 2006 Luke Macken <lmacken@redhat.com> 0.9.0-1
9fb6a8
- 0.9.0
9fb6a8
9fb6a8
* Wed Apr 19 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.8.7.2-1
9fb6a8
- Initial RPM release