c89725
# Disable tests on RHEL9 as to not pull in the test dependencies
c89725
# Specify --with tests to run the tests e.g. on EPEL
c89725
%bcond_with tests
c89725
c89725
# This bcond allows to ship a non-compiled version
c89725
# Slower, but sometimes necessary with alpha Python versions
c89725
%bcond_without cython_compile
c89725
c89725
Name:           Cython
c89725
Version:        0.29.22
c89725
Release:        7%{?dist}
c89725
Summary:        Language for writing Python extension modules
c89725
c89725
License:        ASL 2.0
c89725
URL:            http://www.cython.org
c89725
Source:         https://github.com/cython/cython/archive/%{version}/Cython-%{version}.tar.gz
c89725
c89725
BuildRequires:  python3-devel
c89725
BuildRequires:  python3-setuptools
c89725
c89725
%if %{with tests}
c89725
BuildRequires:  gcc-c++
c89725
BuildRequires:  python3-numpy
c89725
BuildRequires:  python3-jedi
c89725
%endif
c89725
c89725
%if %{with cython_compile}
c89725
BuildRequires:  gcc
c89725
%global python3_site %{python3_sitearch}
c89725
%else
c89725
BuildArch:      noarch
c89725
%global python3_site %{python3_sitelib}
c89725
%endif
c89725
c89725
%global _description %{expand:
c89725
The Cython language makes writing C extensions for the Python language as easy
c89725
as Python itself. Cython is a source code translator based on Pyrex,
c89725
but supports more cutting edge functionality and optimizations.
c89725
c89725
The Cython language is a superset of the Python language (almost all Python
c89725
code is also valid Cython code), but Cython additionally supports optional
c89725
static typing to natively call C functions, operate with C++ classes and
c89725
declare fast C types on variables and class attributes.
c89725
This allows the compiler to generate very efficient C code from Cython code.
c89725
c89725
This makes Cython the ideal language for writing glue code for external C/C++
c89725
libraries, and for fast C modules that speed up the execution of Python code.}
c89725
c89725
%description %{_description}
c89725
c89725
c89725
%package -n python3-Cython
c89725
Summary:        %{summary}
c89725
Provides:       Cython = %{?epoch:%{epoch}:}%{version}-%{release}
c89725
Provides:       Cython%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
c89725
Provides:       cython = %{?epoch:%{epoch}:}%{version}-%{release}
c89725
Provides:       cython%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
c89725
%py_provides    python3-cython
c89725
c89725
# A small templating library is bundled in Cython/Tempita
c89725
# Upstream version 0.5.2 is available from https://pypi.org/project/Tempita
c89725
# but the bundled copy is patched and reorganized.
c89725
# Upstream homepage is inaccessible.
c89725
Provides:       bundled(python3dist(tempita))
c89725
c89725
%description -n python3-Cython %{_description}
c89725
c89725
c89725
%package -n emacs-cython-mode
c89725
Summary:        A major mode for editing Cython source files in Emacs
c89725
BuildArch:      noarch
c89725
BuildRequires:  emacs
c89725
Requires:       emacs(bin) >= %{_emacs_version}
c89725
c89725
%description -n emacs-cython-mode
c89725
cython-mode is an Emacs major mode for editing Cython source files.
c89725
c89725
c89725
%prep
c89725
%autosetup -n cython-%{version} -p1
c89725
c89725
c89725
%build
c89725
%py3_build -- %{!?with_cython_compile:--no-cython-compile}
c89725
c89725
# emacs-cython-mode build
c89725
echo ";;
c89725
(require 'cython-mode)" > cython-mode-init.el
c89725
cp -p Tools/cython-mode.el .
c89725
%{_emacs_bytecompile} *.el
c89725
c89725
c89725
%install
c89725
%py3_install -- %{!?with_cython_compile:--no-cython-compile}
c89725
rm -rf %{buildroot}%{python3_sitelib}/setuptools/tests
c89725
c89725
# emacs-cython-mode install
c89725
mkdir -p %{buildroot}%{_emacs_sitelispdir}/
c89725
cp -p cython-mode.el cython-mode.elc %{buildroot}%{_emacs_sitelispdir}/
c89725
mkdir -p %{buildroot}%{_emacs_sitestartdir}/
c89725
cp -p cython-mode-init.el cython-mode-init.elc %{buildroot}%{_emacs_sitestartdir}/
c89725
c89725
c89725
%if %{with tests}
c89725
%check
c89725
%{python3} runtests.py -vv --no-pyregr %{?_smp_mflags} \
c89725
  %ifarch %{ix86}
c89725
  --exclude run.parallel  # https://github.com/cython/cython/issues/2807
c89725
  %endif
c89725
c89725
%endif
c89725
c89725
c89725
%files -n python3-Cython
c89725
%license LICENSE.txt
c89725
%doc *.txt Demos Doc Tools
c89725
%{_bindir}/cython
c89725
%{_bindir}/cygdb
c89725
%{_bindir}/cythonize
c89725
%{python3_site}/Cython-*.egg-info/
c89725
%{python3_site}/Cython/
c89725
%{python3_site}/pyximport/
c89725
%pycached %{python3_site}/cython.py
c89725
c89725
%files -n emacs-cython-mode
c89725
%license LICENSE.txt
c89725
%{_emacs_sitelispdir}/cython*.el*
c89725
%{_emacs_sitestartdir}/cython*.el*
c89725
c89725
c89725
%changelog
c89725
* Wed Feb 16 2022 Tomas Orsava <torsava@redhat.com> - 0.29.22-7
c89725
- Add gating configuration and a simple smoke test
c89725
- Related: rhbz#1950291
c89725
c89725
* Tue Feb 08 2022 Tomas Orsava <torsava@redhat.com> - 0.29.22-6
c89725
- Add automatically generated Obsoletes tag with the python39- prefix
c89725
  for smoother upgrade from RHEL8
c89725
- Related: rhbz#1990421
c89725
c89725
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com>
c89725
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
c89725
  Related: rhbz#1991688
c89725
c89725
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com>
c89725
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
c89725
c89725
* Wed Mar 10 2021 Charalampos Stratakis <cstratak@redhat.com> - 0.29.22-3
c89725
- Disable tests on RHEL9 as to not pull in the test dependencies
c89725
c89725
* Tue Mar 09 2021 Miro Hrončok <mhroncok@redhat.com> - 0.29.22-2
c89725
- Remove an obsoleted patch
c89725
- Remove old Obsoletes and Conflicts
c89725
- Update description
c89725
- Provide cython, python3-cython
c89725
c89725
* Thu Mar 04 2021 Miro Hrončok <mhroncok@redhat.com> - 0.29.22-1
c89725
- Update to 0.29.22
c89725
c89725
* Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.21-5
c89725
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
c89725
c89725
* Fri Nov 13 2020 Miro Hrončok <mhroncok@redhat.com> - 0.29.21-4
c89725
- Drop build dependency on coverage
c89725
c89725
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.21-3
c89725
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
c89725
c89725
* Wed Jul 22 2020 Gwyn Ciesla <gwync@protonmail.com> - 0.29.21-2
c89725
- Re-enable tests.
c89725
c89725
* Wed Jul 22 2020 Gwyn Ciesla <gwync@protonmail.com> - 0.29.21-1
c89725
- 0.29.21
c89725
c89725
* Wed May 27 2020 sguelton@redhat.com - 0.29.19-1
c89725
- Update to 0.29.19
c89725
c89725
* Mon May 25 2020 Miro Hrončok <mhroncok@redhat.com> - 0.29.17-4
c89725
- Rebuilt for Python 3.9
c89725
c89725
* Fri May 22 2020 Miro Hrončok <mhroncok@redhat.com> - 0.29.17-3
c89725
- Bootstrap for Python 3.9
c89725
c89725
* Wed May 13 2020 Petr Viktorin <pviktori@redhat.com> - 0.29.17-2
c89725
- Backport classmethod fixes
c89725
  Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1788506
c89725
c89725
* Tue Apr 28 2020 Marcel Plch <mplch@redhat.com> - 0.29.17-1
c89725
- Update to 0.29.17
c89725
c89725
* Wed Mar 25 2020 Miro Hrončok <mhroncok@redhat.com> - 0.29.16-1
c89725
- Update to 0.29.16 (#1816785)
c89725
c89725
* Sat Feb 08 2020 Miro Hrončok <mhroncok@redhat.com> - 0.29.15-1
c89725
- Update to 0.29.15 (#1800158)
c89725
c89725
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.14-2
c89725
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
c89725
c89725
* Mon Nov 04 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.14-1
c89725
- Update to 0.29.14 (#1768034)
c89725
- Python 2 subpackage has been removed
c89725
c89725
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.13-5
c89725
- Rebuilt for Python 3.8.0rc1 (#1748018)
c89725
c89725
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.13-4
c89725
- Rebuilt for Python 3.8
c89725
c89725
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.13-3
c89725
- Bootstrap for Python 3.8
c89725
c89725
* Thu Aug 01 2019 Gwyn Ciesla <gwync@protonmail.com> 0.29.13-2
c89725
- Rebuild with new numpy.
c89725
c89725
* Sat Jul 27 11:58:51 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.29.13-1
c89725
- Update to 0.29.13
c89725
c89725
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.12-3
c89725
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
c89725
c89725
* Mon Jul 22 2019 Petr Viktorin <pviktori@redhat.com> - 0.29.12-2
c89725
- Remove non-essential Python 2 test dependencies
c89725
c89725
* Thu Jul 11 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.12-1
c89725
- Update to 0.29.12 (#1727580)
c89725
c89725
* Mon Jul 01 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.11-1
c89725
- Update to 0.29.11 (#1725361)
c89725
c89725
* Sun Jun 02 2019 Charalampos Stratakis <cstratak@redhat.com> - 0.29.10-1
c89725
- Update to 0.29.10 (#1716146)
c89725
c89725
* Thu May 30 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.9-1
c89725
- Update to 0.29.9 (#1714365)
c89725
c89725
* Mon May 13 07:10:35 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.29.7-1
c89725
- Update to 0.29.7
c89725
c89725
* Wed Feb 27 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.6-1
c89725
- Update to 0.29.6 (#1683661)
c89725
c89725
* Fri Feb 08 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.5-1
c89725
- Update to 0.29.5 (#1667643)
c89725
c89725
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.3-2
c89725
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
c89725
c89725
* Sat Jan 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.3-1
c89725
- Update to 0.29.3 (#1667643)
c89725
c89725
* Tue Jan 08 2019 Alex Cobb <alex.cobb@smart.mit.edu> - 0.29.1-2
c89725
- Added emacs-cython-mode subpackage
c89725
c89725
* Mon Dec 10 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.29.1-1
c89725
- Update to 0.29.1
c89725
c89725
* Mon Dec 10 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.29-1
c89725
- Update to 0.29
c89725
c89725
* Wed Oct 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.29~rc2-1
c89725
- Update to 0.29~rc2
c89725
c89725
* Sat Aug 11 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.28.5-1
c89725
- Update to 0.28.5
c89725
c89725
* Sun Aug 05 2018 Miro Hrončok <mhroncok@redhat.com> - 0.28.4-3
c89725
- Only have one /usr/bin/cython
c89725
c89725
* Sun Jul 15 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.28.4-1
c89725
- Update to 0.28.4
c89725
c89725
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.28.1-3
c89725
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
c89725
c89725
* Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 0.28.1-2
c89725
- Rebuilt for Python 3.7
c89725
c89725
* Mon Mar 19 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.28.1-1
c89725
- Update to 0.28.1
c89725
c89725
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.27.3-2
c89725
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
c89725
c89725
* Mon Nov 06 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.27.3-1
c89725
- Update to 0.27.3
c89725
c89725
* Mon Oct 02 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.27.1-1
c89725
- Update to 0.27.1
c89725
c89725
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.25.2-7
c89725
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
c89725
c89725
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.25.2-6
c89725
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
c89725
c89725
* Wed May 03 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.25.2-5
c89725
- Fix license
c89725
c89725
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.25.2-4
c89725
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
c89725
c89725
* Thu Dec 22 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.25.2-3
c89725
- Backport couple of patches
c89725
c89725
* Mon Dec 12 2016 Charalampos Stratakis <cstratak@redhat.com> - 0.25.2-2
c89725
- Rebuild for Python 3.6
c89725
c89725
* Sat Dec 10 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.25.2-1
c89725
- Update to 0.25.2
c89725
c89725
* Sat Aug 27 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.24.1-8
c89725
- Fix provides (RHBZ #1370879)
c89725
c89725
* Thu Aug 25 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.24.1-7
c89725
- Run test suite
c89725
c89725
* Thu Aug 25 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.24.1-6
c89725
- Provide old names
c89725
c89725
* Thu Aug 25 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.24.1-5
c89725
- Use %%python_provide
c89725
c89725
* Tue Aug 23 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.24.1-4
c89725
- Update to 0.24.1
c89725
c89725
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.23.4-4
c89725
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
c89725
c89725
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.23.4-2
c89725
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
c89725
c89725
* Wed Jan 13 2016 Orion Poplawski <orion@cora.nwra.com> - 0.23.4-1
c89725
- Update to 0.23.4
c89725
- Ship cythonize3
c89725
- Modernize and cleanup spec
c89725
- Run tests, one python3 test fails with 3.5
c89725
c89725
* Tue Oct 13 2015 Robert Kuska <rkuska@redhat.com> - 0.23-2
c89725
- Rebuilt for Python3.5 rebuild
c89725
c89725
* Wed Aug 12 2015 Neal Becker <ndbecker2@gmail.com> - 0.23-2
c89725
- Update to 0.23
c89725
c89725
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.22-2
c89725
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
c89725
c89725
* Fri Feb 13 2015 nbecker <ndbecker2@gmail.com> - 0.22-1
c89725
- oops, that should be 0.22 not 0.22.1
c89725
c89725
* Fri Feb 13 2015 nbecker <ndbecker2@gmail.com> - 0.22.1-1
c89725
- Update to 0.22
c89725
c89725
* Sat Nov 22 2014 nbecker <ndbecker2@gmail.com> - 0.21.1-1
c89725
- Update to 0.21.1 (br #1164297)
c89725
c89725
* Mon Sep 15 2014 nbecker <ndbecker2@gmail.com> - 0.21-5
c89725
- Add /bin/cythonize
c89725
c89725
* Mon Sep 15 2014 nbecker <ndbecker2@gmail.com> - 0.21-1
c89725
- Update to 0.21
c89725
c89725
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.20.1-5
c89725
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
c89725
c89725
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.20.1-4
c89725
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
c89725
c89725
* Wed May 28 2014 Thomas Spura <tomspur@fedoraproject.org> - 0.20.1-3
c89725
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
c89725
c89725
* Fri May  9 2014 Orion Poplawski <orion@cora.nwra.com> - 0.20.1-2
c89725
- Rebuild for Python 3.4
c89725
c89725
* Fri May  9 2014 Orion Poplawski <orion@cora.nwra.com> - 0.20.1-1
c89725
- Update to 0.20.1
c89725
c89725
* Mon Jan 20 2014 nbecker <ndbecker2@gmail.com> - 0.20-1
c89725
- Update to 0.20
c89725
c89725
* Thu Oct 17 2013 nbecker <ndbecker2@gmail.com> - 0.19.2-2
c89725
- Fix BR 1019498
c89725
c89725
* Sun Oct 13 2013 nbecker <ndbecker2@gmail.com> - 0.19-2
c89725
- Update to 0.19.2
c89725
c89725
* Fri Aug 02 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.19-2
c89725
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
c89725
c89725
* Fri Apr 19 2013 nbecker <ndbecker2@gmail.com> - 0.19-1
c89725
- Update to 0.19
c89725
c89725
* Tue Jan 29 2013 Neal Becker <ndbecker2@gmail.com> - 0.18-1
c89725
- update to 0.18
c89725
c89725
* Sat Dec 15 2012 Neal Becker <ndbecker2@gmail.com> - 0.17.3-1
c89725
- Update to 0.17.3
c89725
c89725
* Wed Nov 21 2012 Neal Becker <ndbecker2@gmail.com> - 0.17.2-1
c89725
- update to 0.17.2
c89725
c89725
* Wed Sep 26 2012 Neal Becker <ndbecker2@gmail.com> - 0.17.1-1
c89725
- Update to 0.17.1
c89725
c89725
* Mon Sep  3 2012 Neal Becker <ndbecker2@gmail.com> - 0.17-1
c89725
- Update to 0.17
c89725
c89725
* Tue Aug 28 2012 Neal Becker <ndbecker2@gmail.com> - 0.17-3.b3
c89725
- Turn on check (temporarily)
c89725
- Add br numpy from check
c89725
c89725
* Tue Aug 28 2012 Neal Becker <ndbecker2@gmail.com> - 0.17-1.b3
c89725
- Test 0.17b3
c89725
c89725
* Fri Aug 24 2012 David Malcolm <dmalcolm@redhat.com> - 0.16-3
c89725
- generalize egg-info logic to support RHEL (rhbz#851528)
c89725
c89725
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.16-2
c89725
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
c89725
c89725
* Fri Apr 27 2012 Neal Becker <ndbecker2@gmail.com> - 0.16-1
c89725
- Update to 0.16
c89725
c89725
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.15.1-2
c89725
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
c89725
c89725
* Tue Sep 20 2011 Neal Becker <ndbecker2@gmail.com> - 0.15.1-1
c89725
- Update to 0.15.1
c89725
c89725
* Sat Aug  6 2011 Neal Becker <ndbecker2@gmail.com> - 0.15-1
c89725
- Update to 0.15
c89725
c89725
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14.1-2
c89725
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
c89725
c89725
* Sat Feb  5 2011 Neal Becker <ndbecker2@gmail.com> - 0.14.1-1
c89725
- Update to 0.14.1
c89725
c89725
* Wed Dec 15 2010 Neal Becker <ndbecker2@gmail.com> - 0.14-2
c89725
- Add cygdb
c89725
c89725
* Wed Dec 15 2010 Neal Becker <ndbecker2@gmail.com> - 0.14-1
c89725
- Update to 0.14
c89725
c89725
* Wed Aug 25 2010 Neal Becker <ndbecker2@gmail.com> - 0.13-1
c89725
- Update to 0.13
c89725
c89725
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.12.1-5
c89725
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
c89725
c89725
* Fri Feb  5 2010 Neal Becker <ndbecker2@gmail.com> - 0.12.1-4
c89725
- Disable check for now as it fails on PPC
c89725
c89725
* Tue Feb  2 2010 Neal Becker <ndbecker2@gmail.com> - 0.12.1-2
c89725
- typo
c89725
- stupid rpm comments
c89725
c89725
* Mon Nov 23 2009 Neal Becker <ndbecker2@gmail.com> - 0.12-1.rc1
c89725
- Make that 0.12
c89725
c89725
* Mon Nov 23 2009 Neal Becker <ndbecker2@gmail.com> - 0.12.1-1.rc1
c89725
- Update to 0.12.1
c89725
c89725
* Sun Sep 27 2009 Neal Becker <ndbecker2@gmail.com> - 0.11.3-1.rc1
c89725
- Update to 0.11.3rc1
c89725
- Update to 0.11.3
c89725
c89725
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.11.2-2
c89725
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
c89725
c89725
* Wed May 20 2009 Neal Becker <ndbecker2@gmail.com> - 0.11.2-1
c89725
- Update to 0.11.2
c89725
c89725
* Thu Apr 16 2009 Neal Becker <ndbecker2@gmail.com> - 0.11.1-1
c89725
- Update to 0.11.1
c89725
c89725
* Sat Mar 14 2009 Neal Becker <ndbecker2@gmail.com> - 0.11-2
c89725
- Missed cython.py*
c89725
c89725
* Sat Mar 14 2009 Neal Becker <ndbecker2@gmail.com> - 0.11-1
c89725
- Update to 0.11
c89725
- Exclude numpy from tests so we don't have to BR it
c89725
c89725
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.3-2
c89725
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
c89725
c89725
* Wed Dec 17 2008 Neal Becker <ndbecker2@gmail.com> - 0.10.3-1
c89725
- Update to 0.10.3
c89725
c89725
* Thu Dec 04 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.10.2-2
c89725
- Rebuild for Python 2.6
c89725
c89725
* Mon Dec  1 2008 Neal Becker <ndbecker2@gmail.com> - 0.10.2-1
c89725
- Update to 0.10.2
c89725
c89725
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.10.1-2
c89725
- Rebuild for Python 2.6
c89725
c89725
* Wed Nov 19 2008 Neal Becker <ndbecker2@gmail.com> - 0.10.1-1
c89725
- Update to 0.10.1
c89725
c89725
* Sun Nov  9 2008 Neal Becker <ndbecker2@gmail.com> - 0.10-3
c89725
- Fix typo
c89725
c89725
* Sun Nov  9 2008 Neal Becker <ndbecker2@gmail.com> - 0.10-1
c89725
- Update to 0.10
c89725
c89725
* Fri Jun 13 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.8-2
c89725
- Install into python_sitearch
c89725
- Add %%check
c89725
c89725
* Fri Jun 13 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.8-1
c89725
- Update to 0.9.8
c89725
c89725
* Mon Apr 14 2008 José Matos <jamatos[AT]fc.up.pt> - 0.9.6.13.1-3
c89725
- Remove remaining --record.
c89725
- Add more documentation (Doc and Tools).
c89725
- Add correct entry for egg-info (F9+).
c89725
c89725
* Mon Apr 14 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.6.13.1-2
c89725
- Change License to Python
c89725
- Install About.html
c89725
- Fix mixed spaces/tabs
c89725
- Don't use --record
c89725
c89725
* Tue Apr  8 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.6.13.1-1
c89725
- Update to 0.9.6.13.1
c89725
c89725
* Mon Apr  7 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.6.13-1
c89725
- Update to 0.9.6.13
c89725
- Add docs
c89725
c89725
* Tue Feb 26 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.6.12-1
c89725
- Initial version