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