8c7892
%global srcname Cython
8c7892
%global upname cython
8c7892
8c7892
# RHEL8: Tests disabled during build due to missing dependencies
8c7892
%bcond_with tests
8c7892
8c7892
Name:           Cython
8c7892
Version:        0.29.21
8c7892
%global upver %{version}
8c7892
Release:        5%{?dist}
8c7892
Summary:        Language for writing Python extension modules
8c7892
8c7892
License:        ASL 2.0
8c7892
URL:            http://www.cython.org
8c7892
Source:         https://github.com/cython/cython/archive/%{upver}/%{srcname}-%{version}.tar.gz
8c7892
8c7892
# Exclude i686 arch. Due to a modularity issue it's being added to the
8c7892
# x86_64 compose of CRB, but we don't want to ship it at all.
8c7892
# See: https://projects.engineering.redhat.com/browse/RCM-72605
8c7892
ExcludeArch: i686
8c7892
8c7892
# Partially work around issues with class and static methods
8c7892
# See https://bugzilla.redhat.com/show_bug.cgi?id=1788506
8c7892
# Mostly backported from upstream: https://github.com/cython/cython/pull/3106
8c7892
# This also:
8c7892
# - Removes staticmethod optimizations for normal functions
8c7892
# - Removes failing test for staticmethod fused functions, which still fail
8c7892
#   See also: https://github.com/cython/cython/issues/3614
8c7892
Patch3106:      class-static-method-workaround.patch
8c7892
8c7892
BuildRequires:  gcc
8c7892
%if %{with tests}
8c7892
BuildRequires:  gcc-c++
8c7892
%endif
8c7892
8c7892
%global _description \
8c7892
This is a development version of Pyrex, a language\
8c7892
for writing Python extension modules.
8c7892
8c7892
%description %{_description}
8c7892
8c7892
%package -n python%{python3_pkgversion}-%{srcname}
8c7892
Summary:        %{summary}
8c7892
%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}}
8c7892
BuildRequires:  python%{python3_pkgversion}-devel
8c7892
BuildRequires:  python%{python3_pkgversion}-rpm-macros
8c7892
BuildRequires:  python%{python3_pkgversion}-setuptools
8c7892
%if %{with tests}
8c7892
BuildRequires:  python%{python3_pkgversion}-numpy
8c7892
BuildRequires:  python%{python3_pkgversion}-jedi
8c7892
%endif
8c7892
Requires:       python%{python3_pkgversion}-setuptools
8c7892
8c7892
# A small templating library is bundled in Cython/Tempita
8c7892
# Upstream version 0.5.2 is available from https://pypi.org/project/Tempita
8c7892
# but the bundled copy is patched and reorganized.
8c7892
# Upstream homepage is inaccessible.
8c7892
Provides:       bundled(python%{python3_version}dist(tempita))
8c7892
8c7892
%description -n python%{python3_pkgversion}-%{srcname} %{_description}
8c7892
8c7892
Python 3 version.
8c7892
8c7892
%prep
8c7892
%autosetup -n %{upname}-%{upver} -p1
8c7892
8c7892
%build
8c7892
%py3_build
8c7892
8c7892
%install
8c7892
%py3_install
8c7892
rm -rf %{buildroot}%{python3_sitelib}/setuptools/tests
8c7892
8c7892
# Rename unversioned binaries
8c7892
mv %{buildroot}%{_bindir}/cython{,-%{python3_version}}
8c7892
mv %{buildroot}%{_bindir}/cygdb{,-%{python3_version}}
8c7892
mv %{buildroot}%{_bindir}/cythonize{,-%{python3_version}}
8c7892
8c7892
%if %{with tests}
8c7892
%check
8c7892
%{python3} runtests.py -vv --no-pyregr %{?_smp_mflags} \
8c7892
  %ifarch %{ix86}
8c7892
  --exclude run.parallel  # https://github.com/cython/cython/issues/2807
8c7892
  %endif
8c7892
8c7892
%endif
8c7892
8c7892
%files -n python%{python3_pkgversion}-%{srcname}
8c7892
%license LICENSE.txt
8c7892
%doc *.txt Demos Doc Tools
8c7892
%{_bindir}/cython-%{python3_version}
8c7892
%{_bindir}/cygdb-%{python3_version}
8c7892
%{_bindir}/cythonize-%{python3_version}
8c7892
%{python3_sitearch}/%{srcname}-*.egg-info/
8c7892
%{python3_sitearch}/%{srcname}/
8c7892
%{python3_sitearch}/pyximport/
8c7892
%{python3_sitearch}/%{upname}.py
8c7892
%{python3_sitearch}/__pycache__/%{upname}.*
8c7892
8c7892
%changelog
8c7892
* Wed Jan 13 2021 Tomas Orsava <torsava@redhat.com> - 0.29.21-5
8c7892
- Convert from Fedora to the python39 module in RHEL8
8c7892
- Resolves: rhbz#1877430
8c7892
8c7892
* Fri Nov 13 2020 Miro Hrončok <mhroncok@redhat.com> - 0.29.21-4
8c7892
- Drop build dependency on coverage
8c7892
8c7892
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.21-3
8c7892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
8c7892
8c7892
* Wed Jul 22 2020 Gwyn Ciesla <gwync@protonmail.com> - 0.29.21-2
8c7892
- Re-enable tests.
8c7892
8c7892
* Wed Jul 22 2020 Gwyn Ciesla <gwync@protonmail.com> - 0.29.21-1
8c7892
- 0.29.21
8c7892
8c7892
* Wed May 27 2020 sguelton@redhat.com - 0.29.19-1
8c7892
- Update to 0.29.19
8c7892
8c7892
* Mon May 25 2020 Miro Hrončok <mhroncok@redhat.com> - 0.29.17-4
8c7892
- Rebuilt for Python 3.9
8c7892
8c7892
* Fri May 22 2020 Miro Hrončok <mhroncok@redhat.com> - 0.29.17-3
8c7892
- Bootstrap for Python 3.9
8c7892
8c7892
* Wed May 13 2020 Petr Viktorin <pviktori@redhat.com> - 0.29.17-2
8c7892
- Backport classmethod fixes
8c7892
  Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1788506
8c7892
8c7892
* Tue Apr 28 2020 Marcel Plch <mplch@redhat.com> - 0.29.17-1
8c7892
- Update to 0.29.17
8c7892
8c7892
* Wed Mar 25 2020 Miro Hrončok <mhroncok@redhat.com> - 0.29.16-1
8c7892
- Update to 0.29.16 (#1816785)
8c7892
8c7892
* Sat Feb 08 2020 Miro Hrončok <mhroncok@redhat.com> - 0.29.15-1
8c7892
- Update to 0.29.15 (#1800158)
8c7892
8c7892
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.14-2
8c7892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
8c7892
8c7892
* Mon Nov 04 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.14-1
8c7892
- Update to 0.29.14 (#1768034)
8c7892
- Python 2 subpackage has been removed
8c7892
8c7892
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.13-5
8c7892
- Rebuilt for Python 3.8.0rc1 (#1748018)
8c7892
8c7892
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.13-4
8c7892
- Rebuilt for Python 3.8
8c7892
8c7892
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.13-3
8c7892
- Bootstrap for Python 3.8
8c7892
8c7892
* Thu Aug 01 2019 Gwyn Ciesla <gwync@protonmail.com> 0.29.13-2
8c7892
- Rebuild with new numpy.
8c7892
8c7892
* Sat Jul 27 11:58:51 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.29.13-1
8c7892
- Update to 0.29.13
8c7892
8c7892
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.12-3
8c7892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
8c7892
8c7892
* Mon Jul 22 2019 Petr Viktorin <pviktori@redhat.com> - 0.29.12-2
8c7892
- Remove non-essential Python 2 test dependencies
8c7892
8c7892
* Thu Jul 11 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.12-1
8c7892
- Update to 0.29.12 (#1727580)
8c7892
8c7892
* Mon Jul 01 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.11-1
8c7892
- Update to 0.29.11 (#1725361)
8c7892
8c7892
* Sun Jun 02 2019 Charalampos Stratakis <cstratak@redhat.com> - 0.29.10-1
8c7892
- Update to 0.29.10 (#1716146)
8c7892
8c7892
* Thu May 30 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.9-1
8c7892
- Update to 0.29.9 (#1714365)
8c7892
8c7892
* Mon May 13 07:10:35 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.29.7-1
8c7892
- Update to 0.29.7
8c7892
8c7892
* Wed Feb 27 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.6-1
8c7892
- Update to 0.29.6 (#1683661)
8c7892
8c7892
* Fri Feb 08 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.5-1
8c7892
- Update to 0.29.5 (#1667643)
8c7892
8c7892
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.3-2
8c7892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
8c7892
8c7892
* Sat Jan 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.3-1
8c7892
- Update to 0.29.3 (#1667643)
8c7892
8c7892
* Tue Jan 08 2019 Alex Cobb <alex.cobb@smart.mit.edu> - 0.29.1-2
8c7892
- Added emacs-cython-mode subpackage
8c7892
8c7892
* Mon Dec 10 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.29.1-1
8c7892
- Update to 0.29.1
8c7892
8c7892
* Mon Dec 10 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.29-1
8c7892
- Update to 0.29
8c7892
8c7892
* Wed Oct 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.29~rc2-1
8c7892
- Update to 0.29~rc2
8c7892
8c7892
* Sat Aug 11 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.28.5-1
8c7892
- Update to 0.28.5
8c7892
8c7892
* Sun Aug 05 2018 Miro Hrončok <mhroncok@redhat.com> - 0.28.4-3
8c7892
- Only have one /usr/bin/cython
8c7892
8c7892
* Sun Jul 15 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.28.4-1
8c7892
- Update to 0.28.4
8c7892
8c7892
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.28.1-3
8c7892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
8c7892
8c7892
* Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 0.28.1-2
8c7892
- Rebuilt for Python 3.7
8c7892
8c7892
* Mon Mar 19 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.28.1-1
8c7892
- Update to 0.28.1
8c7892
8c7892
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.27.3-2
8c7892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
8c7892
8c7892
* Mon Nov 06 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.27.3-1
8c7892
- Update to 0.27.3
8c7892
8c7892
* Mon Oct 02 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.27.1-1
8c7892
- Update to 0.27.1
8c7892
8c7892
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.25.2-7
8c7892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
8c7892
8c7892
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.25.2-6
8c7892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
8c7892
8c7892
* Wed May 03 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.25.2-5
8c7892
- Fix license
8c7892
8c7892
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.25.2-4
8c7892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
8c7892
8c7892
* Thu Dec 22 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.25.2-3
8c7892
- Backport couple of patches
8c7892
8c7892
* Mon Dec 12 2016 Charalampos Stratakis <cstratak@redhat.com> - 0.25.2-2
8c7892
- Rebuild for Python 3.6
8c7892
8c7892
* Sat Dec 10 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.25.2-1
8c7892
- Update to 0.25.2
8c7892
8c7892
* Sat Aug 27 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.24.1-8
8c7892
- Fix provides (RHBZ #1370879)
8c7892
8c7892
* Thu Aug 25 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.24.1-7
8c7892
- Run test suite
8c7892
8c7892
* Thu Aug 25 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.24.1-6
8c7892
- Provide old names
8c7892
8c7892
* Thu Aug 25 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.24.1-5
8c7892
- Use %%python_provide
8c7892
8c7892
* Tue Aug 23 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.24.1-4
8c7892
- Update to 0.24.1
8c7892
8c7892
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.23.4-4
8c7892
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
8c7892
8c7892
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.23.4-2
8c7892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
8c7892
8c7892
* Wed Jan 13 2016 Orion Poplawski <orion@cora.nwra.com> - 0.23.4-1
8c7892
- Update to 0.23.4
8c7892
- Ship cythonize3
8c7892
- Modernize and cleanup spec
8c7892
- Run tests, one python3 test fails with 3.5
8c7892
8c7892
* Tue Oct 13 2015 Robert Kuska <rkuska@redhat.com> - 0.23-2
8c7892
- Rebuilt for Python3.5 rebuild
8c7892
8c7892
* Wed Aug 12 2015 Neal Becker <ndbecker2@gmail.com> - 0.23-2
8c7892
- Update to 0.23
8c7892
8c7892
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.22-2
8c7892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
8c7892
8c7892
* Fri Feb 13 2015 nbecker <ndbecker2@gmail.com> - 0.22-1
8c7892
- oops, that should be 0.22 not 0.22.1
8c7892
8c7892
* Fri Feb 13 2015 nbecker <ndbecker2@gmail.com> - 0.22.1-1
8c7892
- Update to 0.22
8c7892
8c7892
* Sat Nov 22 2014 nbecker <ndbecker2@gmail.com> - 0.21.1-1
8c7892
- Update to 0.21.1 (br #1164297)
8c7892
8c7892
* Mon Sep 15 2014 nbecker <ndbecker2@gmail.com> - 0.21-5
8c7892
- Add /bin/cythonize
8c7892
8c7892
* Mon Sep 15 2014 nbecker <ndbecker2@gmail.com> - 0.21-1
8c7892
- Update to 0.21
8c7892
8c7892
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.20.1-5
8c7892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
8c7892
8c7892
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.20.1-4
8c7892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
8c7892
8c7892
* Wed May 28 2014 Thomas Spura <tomspur@fedoraproject.org> - 0.20.1-3
8c7892
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
8c7892
8c7892
* Fri May  9 2014 Orion Poplawski <orion@cora.nwra.com> - 0.20.1-2
8c7892
- Rebuild for Python 3.4
8c7892
8c7892
* Fri May  9 2014 Orion Poplawski <orion@cora.nwra.com> - 0.20.1-1
8c7892
- Update to 0.20.1
8c7892
8c7892
* Mon Jan 20 2014 nbecker <ndbecker2@gmail.com> - 0.20-1
8c7892
- Update to 0.20
8c7892
8c7892
* Thu Oct 17 2013 nbecker <ndbecker2@gmail.com> - 0.19.2-2
8c7892
- Fix BR 1019498
8c7892
8c7892
* Sun Oct 13 2013 nbecker <ndbecker2@gmail.com> - 0.19-2
8c7892
- Update to 0.19.2
8c7892
8c7892
* Fri Aug 02 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.19-2
8c7892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
8c7892
8c7892
* Fri Apr 19 2013 nbecker <ndbecker2@gmail.com> - 0.19-1
8c7892
- Update to 0.19
8c7892
8c7892
* Tue Jan 29 2013 Neal Becker <ndbecker2@gmail.com> - 0.18-1
8c7892
- update to 0.18
8c7892
8c7892
* Sat Dec 15 2012 Neal Becker <ndbecker2@gmail.com> - 0.17.3-1
8c7892
- Update to 0.17.3
8c7892
8c7892
* Wed Nov 21 2012 Neal Becker <ndbecker2@gmail.com> - 0.17.2-1
8c7892
- update to 0.17.2
8c7892
8c7892
* Wed Sep 26 2012 Neal Becker <ndbecker2@gmail.com> - 0.17.1-1
8c7892
- Update to 0.17.1
8c7892
8c7892
* Mon Sep  3 2012 Neal Becker <ndbecker2@gmail.com> - 0.17-1
8c7892
- Update to 0.17
8c7892
8c7892
* Tue Aug 28 2012 Neal Becker <ndbecker2@gmail.com> - 0.17-3.b3
8c7892
- Turn on check (temporarily)
8c7892
- Add br numpy from check
8c7892
8c7892
* Tue Aug 28 2012 Neal Becker <ndbecker2@gmail.com> - 0.17-1.b3
8c7892
- Test 0.17b3
8c7892
8c7892
* Fri Aug 24 2012 David Malcolm <dmalcolm@redhat.com> - 0.16-3
8c7892
- generalize egg-info logic to support RHEL (rhbz#851528)
8c7892
8c7892
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.16-2
8c7892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
8c7892
8c7892
* Fri Apr 27 2012 Neal Becker <ndbecker2@gmail.com> - 0.16-1
8c7892
- Update to 0.16
8c7892
8c7892
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.15.1-2
8c7892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
8c7892
8c7892
* Tue Sep 20 2011 Neal Becker <ndbecker2@gmail.com> - 0.15.1-1
8c7892
- Update to 0.15.1
8c7892
8c7892
* Sat Aug  6 2011 Neal Becker <ndbecker2@gmail.com> - 0.15-1
8c7892
- Update to 0.15
8c7892
8c7892
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14.1-2
8c7892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
8c7892
8c7892
* Sat Feb  5 2011 Neal Becker <ndbecker2@gmail.com> - 0.14.1-1
8c7892
- Update to 0.14.1
8c7892
8c7892
* Wed Dec 15 2010 Neal Becker <ndbecker2@gmail.com> - 0.14-2
8c7892
- Add cygdb
8c7892
8c7892
* Wed Dec 15 2010 Neal Becker <ndbecker2@gmail.com> - 0.14-1
8c7892
- Update to 0.14
8c7892
8c7892
* Wed Aug 25 2010 Neal Becker <ndbecker2@gmail.com> - 0.13-1
8c7892
- Update to 0.13
8c7892
8c7892
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.12.1-5
8c7892
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
8c7892
8c7892
* Fri Feb  5 2010 Neal Becker <ndbecker2@gmail.com> - 0.12.1-4
8c7892
- Disable check for now as it fails on PPC
8c7892
8c7892
* Tue Feb  2 2010 Neal Becker <ndbecker2@gmail.com> - 0.12.1-2
8c7892
- typo
8c7892
- stupid rpm comments
8c7892
8c7892
* Mon Nov 23 2009 Neal Becker <ndbecker2@gmail.com> - 0.12-1.rc1
8c7892
- Make that 0.12
8c7892
8c7892
* Mon Nov 23 2009 Neal Becker <ndbecker2@gmail.com> - 0.12.1-1.rc1
8c7892
- Update to 0.12.1
8c7892
8c7892
* Sun Sep 27 2009 Neal Becker <ndbecker2@gmail.com> - 0.11.3-1.rc1
8c7892
- Update to 0.11.3rc1
8c7892
- Update to 0.11.3
8c7892
8c7892
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.11.2-2
8c7892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
8c7892
8c7892
* Wed May 20 2009 Neal Becker <ndbecker2@gmail.com> - 0.11.2-1
8c7892
- Update to 0.11.2
8c7892
8c7892
* Thu Apr 16 2009 Neal Becker <ndbecker2@gmail.com> - 0.11.1-1
8c7892
- Update to 0.11.1
8c7892
8c7892
* Sat Mar 14 2009 Neal Becker <ndbecker2@gmail.com> - 0.11-2
8c7892
- Missed cython.py*
8c7892
8c7892
* Sat Mar 14 2009 Neal Becker <ndbecker2@gmail.com> - 0.11-1
8c7892
- Update to 0.11
8c7892
- Exclude numpy from tests so we don't have to BR it
8c7892
8c7892
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.3-2
8c7892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
8c7892
8c7892
* Wed Dec 17 2008 Neal Becker <ndbecker2@gmail.com> - 0.10.3-1
8c7892
- Update to 0.10.3
8c7892
8c7892
* Thu Dec 04 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.10.2-2
8c7892
- Rebuild for Python 2.6
8c7892
8c7892
* Mon Dec  1 2008 Neal Becker <ndbecker2@gmail.com> - 0.10.2-1
8c7892
- Update to 0.10.2
8c7892
8c7892
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.10.1-2
8c7892
- Rebuild for Python 2.6
8c7892
8c7892
* Wed Nov 19 2008 Neal Becker <ndbecker2@gmail.com> - 0.10.1-1
8c7892
- Update to 0.10.1
8c7892
8c7892
* Sun Nov  9 2008 Neal Becker <ndbecker2@gmail.com> - 0.10-3
8c7892
- Fix typo
8c7892
8c7892
* Sun Nov  9 2008 Neal Becker <ndbecker2@gmail.com> - 0.10-1
8c7892
- Update to 0.10
8c7892
8c7892
* Fri Jun 13 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.8-2
8c7892
- Install into python_sitearch
8c7892
- Add %%check
8c7892
8c7892
* Fri Jun 13 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.8-1
8c7892
- Update to 0.9.8
8c7892
8c7892
* Mon Apr 14 2008 José Matos <jamatos[AT]fc.up.pt> - 0.9.6.13.1-3
8c7892
- Remove remaining --record.
8c7892
- Add more documentation (Doc and Tools).
8c7892
- Add correct entry for egg-info (F9+).
8c7892
8c7892
* Mon Apr 14 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.6.13.1-2
8c7892
- Change License to Python
8c7892
- Install About.html
8c7892
- Fix mixed spaces/tabs
8c7892
- Don't use --record
8c7892
8c7892
* Tue Apr  8 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.6.13.1-1
8c7892
- Update to 0.9.6.13.1
8c7892
8c7892
* Mon Apr  7 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.6.13-1
8c7892
- Update to 0.9.6.13
8c7892
- Add docs
8c7892
8c7892
* Tue Feb 26 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.6.12-1
8c7892
- Initial version