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