lbalhar / rpms / Cython

Forked from rpms/Cython 4 years ago
Clone
47185ae
%bcond tests 1
0229f27
7056330
# This bcond allows to ship a non-compiled version
7056330
# Slower, but sometimes necessary with alpha Python versions
e08af6d
%bcond cython_compile 1
7056330
c64ba52
Name:           Cython
642a7aa
Version:        3.0.8
642a7aa
Release:        1%{?dist}
890ccc7
Summary:        Language for writing Python extension modules
0229f27
d55635f
License:        Apache-2.0
c64ba52
URL:            http://www.cython.org
d2e6364
Source:         https://github.com/cython/cython/archive/%{version}/Cython-%{version}.tar.gz
c6b945e
abebf57
BuildRequires:  python3-devel
abebf57
abebf57
%if %{with tests}
abebf57
BuildRequires:  gcc-c++
816bc6d
BuildRequires:  gdb
816bc6d
# optionally uses Python's test.support for some test
816bc6d
BuildRequires:  python3-test
5907573
# the Python tests requirements are curated manually
5907573
# the test-requirements*.txt files mix in coverage and optional deps
abebf57
BuildRequires:  python3-numpy
87851c9
BuildRequires:  python3-pythran
87851c9
%if %{undefined rhel}
87851c9
# We don't want to pull in ipython to RHEL just to run more tests.
816bc6d
# The tests use IPython.testing.globalipapp
816bc6d
BuildRequires:  python3-ipython+test
5cc48f1
# The tests requiring jedi are optional and skipped when jedi is not installed.
5cc48f1
# Note that the jedi tests were forcefully disabled a long time ago,
5cc48f1
# in https://github.com/cython/cython/issues/1845 far, far away.
5cc48f1
# We keep the dependency here so we don't forget to re-add it once the balance is restored.
5cc48f1
# We don't want to pull in jedi to RHEL just to potentially run more tests.
abebf57
BuildRequires:  python3-jedi
abebf57
%endif
5cc48f1
%endif
5f0bd3a
7056330
%if %{with cython_compile}
c64ba52
BuildRequires:  gcc
7056330
%else
7056330
BuildArch:      noarch
7056330
%endif
7056330
abebf57
%global _description %{expand:
abebf57
The Cython language makes writing C extensions for the Python language as easy
abebf57
as Python itself. Cython is a source code translator based on Pyrex,
abebf57
but supports more cutting edge functionality and optimizations.
abebf57
abebf57
The Cython language is a superset of the Python language (almost all Python
abebf57
code is also valid Cython code), but Cython additionally supports optional
abebf57
static typing to natively call C functions, operate with C++ classes and
abebf57
declare fast C types on variables and class attributes.
abebf57
This allows the compiler to generate very efficient C code from Cython code.
Orion Poplawski 94f8345
abebf57
This makes Cython the ideal language for writing glue code for external C/C++
abebf57
libraries, and for fast C modules that speed up the execution of Python code.}
0229f27
e72d1ab
%description %{_description}
0229f27
abebf57
1492629
%package -n python3-cython
c64ba52
Summary:        %{summary}
d8e77b0
Provides:       Cython = %{?epoch:%{epoch}:}%{version}-%{release}
d8e77b0
Provides:       Cython%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
abebf57
Provides:       cython = %{?epoch:%{epoch}:}%{version}-%{release}
abebf57
Provides:       cython%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
1492629
%py_provides    python3-Cython
1492629
Obsoletes:      python3-Cython < 3~~
3c0f2bf
d658964
# A small templating library is bundled in Cython/Tempita
d658964
# Upstream version 0.5.2 is available from https://pypi.org/project/Tempita
d658964
# but the bundled copy is patched and reorganized.
d658964
# Upstream homepage is inaccessible.
d658964
Provides:       bundled(python3dist(tempita))
d658964
1492629
%description -n python3-cython %{_description}
3c0f2bf
0229f27
0229f27
%prep
d2e6364
%autosetup -n cython-%{version} -p1
abebf57
0229f27
5907573
%generate_buildrequires
5907573
%pyproject_buildrequires
5907573
5907573
0229f27
%build
5907573
%pyproject_wheel %{!?with_cython_compile:-C--global-option=--no-cython-compile}
0229f27
9c7f46b
0229f27
%install
5907573
%pyproject_install
5907573
%pyproject_save_files Cython cython pyximport
3c0f2bf
0229f27
7763f44
%if %{with tests}
7763f44
%check
1f32e41
# run.pstats_profile_test* fails on Python 3.12
7b55261
#   https://github.com/cython/cython/issues/5470
2323ac7
# run.parallel fails on i686
2323ac7
#   https://github.com/cython/cython/issues/2807
7763f44
%{python3} runtests.py -vv --no-pyregr %{?_smp_mflags} \
1f32e41
  --exclude 'run.pstats_profile_test*' \
7763f44
  %ifarch %{ix86}
2323ac7
  --exclude run.parallel \
7763f44
  %endif
7763f44
7763f44
%endif
0229f27
abebf57
5907573
%files -n python3-cython -f %{pyproject_files}
3c0f2bf
%doc *.txt Demos Doc Tools
89f353e
%{_bindir}/cython
89f353e
%{_bindir}/cygdb
89f353e
%{_bindir}/cythonize
0229f27
abebf57
0229f27
%changelog
642a7aa
* Tue Jan 23 2024 Lumír Balhar <lbalhar@redhat.com> - 3.0.8-1
642a7aa
- Update to 3.0.8 (rhbz#2255460)
642a7aa
c04aea3
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.6-4
c04aea3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
c04aea3
df22711
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.6-3
df22711
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
df22711
8f389c7
* Thu Jan 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.6-2
8f389c7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
8f389c7
4f6fdd4
* Thu Nov 30 2023 Miro Hrončok <mhroncok@redhat.com> - 3.0.6-1
4f6fdd4
- Update to 3.0.6
4f6fdd4
- Fixes: rhbz#2251973
4f6fdd4
86fdd7b
* Tue Oct 31 2023 Miro Hrončok <mhroncok@redhat.com> - 3.0.5-1
86fdd7b
- Update to 3.0.5
86fdd7b
b652c0d
* Wed Oct 18 2023 Miro Hrončok <mhroncok@redhat.com> - 3.0.4-1
b652c0d
- Update to 3.0.4
b652c0d
- Fixes: rhbz#2244865
b652c0d
7cb8cd1
* Fri Oct 13 2023 Miro Hrončok <mhroncok@redhat.com> - 3.0.3-1
7cb8cd1
- Update to 3.0.3
7cb8cd1
- Fixes: rhbz#2242429
7cb8cd1
8319632
* Fri Sep 01 2023 Miro Hrončok <mhroncok@redhat.com> - 3.0.2-1
8319632
- Update to 3.0.2
8319632
- Fixes: rhbz#2235027
8319632
d2e6364
* Mon Jul 17 2023 Miro Hrončok <mhroncok@redhat.com> - 3.0.0-1
d2e6364
- Update to 3.0.0
1492629
- Rename python3-Cython to python3-cython
d2e6364
47185ae
* Thu Jul 13 2023 Tomáš Hrnčiar <thrnciar@redhat.com> - 3.0.0~rc2-1
47185ae
- Update to 3.0.0rc2
47185ae
- The emacs-cython-mode package is no longer part of this project
47185ae
c6b945e
* Fri Jun 30 2023 Petr Viktorin <pviktori@redhat.com> - 0.29.35-2
c6b945e
- Compile-time Python 3.12 compatibility for CYTHON_TRACE support
c6b945e
5bbbb81
* Sun Jun 18 2023 Miro Hrončok <mhroncok@redhat.com> - 0.29.35-1
5bbbb81
- Update to 0.29.35
5bbbb81
- Fixes: rhbz#2210064
4a30dd7
1c3444e
* Tue Jun 13 2023 Python Maint <python-maint@redhat.com> - 0.29.34-3
1c3444e
- Bootstrap for Python 3.12
1c3444e
5cc48f1
* Wed May 24 2023 Yaakov Selkowitz <yselkowi@redhat.com> - 0.29.34-2
5cc48f1
- Avoid python-jedi dependency in RHEL builds
1e9bead
- Stop shipping emacs-cython-mode in RHEL builds
5cc48f1
5c173e3
* Mon Apr 03 2023 Miro Hrončok <mhroncok@redhat.com> - 0.29.34-1
5c173e3
- Update to 0.29.34
5c173e3
- Fixes: rhbz#1823181
5c173e3
- Fixes: rhbz#2172822
5c173e3
- Fixes: rhbz#2177838
5c173e3
d52e2fc
* Fri Feb 17 2023 Miro Hrončok <mhroncok@redhat.com> - 0.29.33-1
d52e2fc
- Update to 0.29.33
d52e2fc
- Fix test failures with NumPy 1.24
d55635f
- Update the RPM license tag to SPDX
d52e2fc
92cc956
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.32-3
92cc956
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
92cc956
4c46cbf
* Tue Dec 20 2022 Miro Hrončok <mhroncok@redhat.com> - 0.29.32-2
4c46cbf
- emacs-cython-mode: Wrap the docstring of cython-default-compile-format to 80 characters
4c46cbf
- Fixes: rhbz#2155090
4c46cbf
2f1be2e
* Mon Aug 08 2022 Miro Hrončok <mhroncok@redhat.com> - 0.29.32-1
2f1be2e
- Update to 0.29.32
2f1be2e
29491f0
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.30-4
29491f0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
29491f0
6dc133a
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 0.29.30-3
6dc133a
- Rebuilt for Python 3.11
6dc133a
b85dfd3
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 0.29.30-2
b85dfd3
- Bootstrap for Python 3.11
b85dfd3
374291e
* Mon May 30 2022 Tomáš Hrnčiar <thrnciar@redhat.com> - 0.29.30-1
374291e
- Update to 0.29.30
374291e
db91974
* Thu Mar 31 2022 Miro Hrončok <mhroncok@redhat.com> - 0.29.28-1
db91974
- Update to 0.29.28
db91974
6678a84
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.26-2
6678a84
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
6678a84
f52c2ec
* Fri Jan 07 2022 Miro Hrončok <mhroncok@redhat.com> - 0.29.26-1
f52c2ec
- Update to 0.29.26
f52c2ec
d5f7a01
* Wed Jul 21 2021 Scott Talbert <swt@techie.net> - 0.29.24-1
d5f7a01
- Update to 0.29.24 to fix FTBFS with Python 3.10
d5f7a01
1ee3b1a
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.22-5
1ee3b1a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
1ee3b1a
5f403f6
* Wed Jun 02 2021 Python Maint <python-maint@redhat.com> - 0.29.22-4
5f403f6
- Rebuilt for Python 3.10
5f403f6
f2f31bc
* Wed Jun 02 2021 Python Maint <python-maint@redhat.com> - 0.29.22-3
f2f31bc
- Bootstrap for Python 3.10
f2f31bc
abebf57
* Tue Mar 09 2021 Miro Hrončok <mhroncok@redhat.com> - 0.29.22-2
abebf57
- Remove an obsoleted patch
abebf57
- Remove old Obsoletes and Conflicts
abebf57
- Update description
abebf57
- Provide cython, python3-cython
abebf57
e54e595
* Thu Mar 04 2021 Miro Hrončok <mhroncok@redhat.com> - 0.29.22-1
e54e595
- Update to 0.29.22
e54e595
9a9bbcd
* Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.21-5
9a9bbcd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
9a9bbcd
88a2c0e
* Fri Nov 13 2020 Miro Hrončok <mhroncok@redhat.com> - 0.29.21-4
88a2c0e
- Drop build dependency on coverage
88a2c0e
3381470
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.21-3
3381470
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
3381470
7763f44
* Wed Jul 22 2020 Gwyn Ciesla <gwync@protonmail.com> - 0.29.21-2
7763f44
- Re-enable tests.
7763f44
4f065f5
* Wed Jul 22 2020 Gwyn Ciesla <gwync@protonmail.com> - 0.29.21-1
4f065f5
- 0.29.21
4f065f5
048c8d7
* Wed May 27 2020 sguelton@redhat.com - 0.29.19-1
048c8d7
- Update to 0.29.19
048c8d7
fcb231b
* Mon May 25 2020 Miro Hrončok <mhroncok@redhat.com> - 0.29.17-4
fcb231b
- Rebuilt for Python 3.9
fcb231b
6d85179
* Fri May 22 2020 Miro Hrončok <mhroncok@redhat.com> - 0.29.17-3
6d85179
- Bootstrap for Python 3.9
6d85179
5f0bd3a
* Wed May 13 2020 Petr Viktorin <pviktori@redhat.com> - 0.29.17-2
5f0bd3a
- Backport classmethod fixes
5f0bd3a
  Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1788506
5f0bd3a
Marcel Plch bae4cd9
* Tue Apr 28 2020 Marcel Plch <mplch@redhat.com> - 0.29.17-1
Marcel Plch bae4cd9
- Update to 0.29.17
Marcel Plch bae4cd9
616546a
* Wed Mar 25 2020 Miro Hrončok <mhroncok@redhat.com> - 0.29.16-1
616546a
- Update to 0.29.16 (#1816785)
616546a
5ae908b
* Sat Feb 08 2020 Miro Hrončok <mhroncok@redhat.com> - 0.29.15-1
5ae908b
- Update to 0.29.15 (#1800158)
5ae908b
7d0ab88
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.14-2
7d0ab88
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
7d0ab88
1c463e3
* Mon Nov 04 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.14-1
1c463e3
- Update to 0.29.14 (#1768034)
425cf2e
- Python 2 subpackage has been removed
425cf2e
bb14927
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.13-5
bb14927
- Rebuilt for Python 3.8.0rc1 (#1748018)
bb14927
ec111e1
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.13-4
ec111e1
- Rebuilt for Python 3.8
ec111e1
606c7b8
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.13-3
606c7b8
- Bootstrap for Python 3.8
606c7b8
cfa85f0
* Thu Aug 01 2019 Gwyn Ciesla <gwync@protonmail.com> 0.29.13-2
cfa85f0
- Rebuild with new numpy.
cfa85f0
7a42270
* Sat Jul 27 11:58:51 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.29.13-1
7a42270
- Update to 0.29.13
7a42270
b2f62e8
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.12-3
b2f62e8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
b2f62e8
582c72b
* Mon Jul 22 2019 Petr Viktorin <pviktori@redhat.com> - 0.29.12-2
582c72b
- Remove non-essential Python 2 test dependencies
582c72b
842b34e
* Thu Jul 11 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.12-1
842b34e
- Update to 0.29.12 (#1727580)
842b34e
44e47de
* Mon Jul 01 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.11-1
44e47de
- Update to 0.29.11 (#1725361)
44e47de
5623fe9
* Sun Jun 02 2019 Charalampos Stratakis <cstratak@redhat.com> - 0.29.10-1
5623fe9
- Update to 0.29.10 (#1716146)
5623fe9
3f1cff4
* Thu May 30 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.9-1
3f1cff4
- Update to 0.29.9 (#1714365)
3f1cff4
1100c72
* Mon May 13 07:10:35 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.29.7-1
1100c72
- Update to 0.29.7
1100c72
9d494cc
* Wed Feb 27 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.6-1
9d494cc
- Update to 0.29.6 (#1683661)
9d494cc
2ea743a
* Fri Feb 08 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.5-1
2ea743a
- Update to 0.29.5 (#1667643)
2ea743a
b5383fa
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.3-2
b5383fa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
b5383fa
8fbaae6
* Sat Jan 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.3-1
8fbaae6
- Update to 0.29.3 (#1667643)
8fbaae6
9c7f46b
* Tue Jan 08 2019 Alex Cobb <alex.cobb@smart.mit.edu> - 0.29.1-2
9c7f46b
- Added emacs-cython-mode subpackage
9c7f46b
03641f5
* Mon Dec 10 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.29.1-1
03641f5
- Update to 0.29.1
03641f5
d8e77b0
* Mon Dec 10 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.29-1
d8e77b0
- Update to 0.29
d8e77b0
0c9be7e
* Wed Oct 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.29~rc2-1
0c9be7e
- Update to 0.29~rc2
0c9be7e
ceefeb5
* Sat Aug 11 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.28.5-1
ceefeb5
- Update to 0.28.5
ceefeb5
eac3ab0
* Sun Aug 05 2018 Miro Hrončok <mhroncok@redhat.com> - 0.28.4-3
89f353e
- Only have one /usr/bin/cython
89f353e
80d0ce6
* Sun Jul 15 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.28.4-1
80d0ce6
- Update to 0.28.4
80d0ce6
4dfa805
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.28.1-3
4dfa805
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
4dfa805
a4c302a
* Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 0.28.1-2
a4c302a
- Rebuilt for Python 3.7
a4c302a
890ccc7
* Mon Mar 19 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.28.1-1
890ccc7
- Update to 0.28.1
890ccc7
b905a7d
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.27.3-2
b905a7d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
b905a7d
63ef580
* Mon Nov 06 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.27.3-1
63ef580
- Update to 0.27.3
63ef580
14b67b8
* Mon Oct 02 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.27.1-1
14b67b8
- Update to 0.27.1
14b67b8
39f8441
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.25.2-7
39f8441
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
39f8441
4f1da0d
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.25.2-6
4f1da0d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
4f1da0d
Igor Gnatenko c76feae
* Wed May 03 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.25.2-5
Igor Gnatenko c76feae
- Fix license
Igor Gnatenko c76feae
437b833
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.25.2-4
437b833
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
437b833
195ed45
* Thu Dec 22 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.25.2-3
195ed45
- Backport couple of patches
195ed45
867ac56
* Mon Dec 12 2016 Charalampos Stratakis <cstratak@redhat.com> - 0.25.2-2
867ac56
- Rebuild for Python 3.6
867ac56
3eb104e
* Sat Dec 10 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.25.2-1
3eb104e
- Update to 0.25.2
3eb104e
4b5b307
* Sat Aug 27 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.24.1-8
4b5b307
- Fix provides (RHBZ #1370879)
4b5b307
9b5b882
* Thu Aug 25 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.24.1-7
9b5b882
- Run test suite
9b5b882
8bbfd62
* Thu Aug 25 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.24.1-6
8bbfd62
- Provide old names
8bbfd62
c64ba52
* Thu Aug 25 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.24.1-5
c64ba52
- Use %%python_provide
c64ba52
e72d1ab
* Tue Aug 23 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.24.1-4
e72d1ab
- Update to 0.24.1
e72d1ab
6c9d7ca
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.23.4-4
6c9d7ca
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
6c9d7ca
46f7175
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.23.4-2
46f7175
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
46f7175
Orion Poplawski 94f8345
* Wed Jan 13 2016 Orion Poplawski <orion@cora.nwra.com> - 0.23.4-1
Orion Poplawski 94f8345
- Update to 0.23.4
Orion Poplawski 94f8345
- Ship cythonize3
Orion Poplawski 94f8345
- Modernize and cleanup spec
Orion Poplawski 94f8345
- Run tests, one python3 test fails with 3.5
Orion Poplawski 94f8345
Robert Kuska 8812aab
* Tue Oct 13 2015 Robert Kuska <rkuska@redhat.com> - 0.23-2
Robert Kuska 8812aab
- Rebuilt for Python3.5 rebuild
Robert Kuska 8812aab
5222fc5
* Wed Aug 12 2015 Neal Becker <ndbecker2@gmail.com> - 0.23-2
5222fc5
- Update to 0.23
5222fc5
70b8e00
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.22-2
70b8e00
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
70b8e00
42db5dd
* Fri Feb 13 2015 nbecker <ndbecker2@gmail.com> - 0.22-1
42db5dd
- oops, that should be 0.22 not 0.22.1
42db5dd
14b1c89
* Fri Feb 13 2015 nbecker <ndbecker2@gmail.com> - 0.22.1-1
14b1c89
- Update to 0.22
14b1c89
2f5d28e
* Sat Nov 22 2014 nbecker <ndbecker2@gmail.com> - 0.21.1-1
2f5d28e
- Update to 0.21.1 (br #1164297)
2f5d28e
2a6f60f
* Mon Sep 15 2014 nbecker <ndbecker2@gmail.com> - 0.21-5
2a6f60f
- Add /bin/cythonize
2a6f60f
690451f
* Mon Sep 15 2014 nbecker <ndbecker2@gmail.com> - 0.21-1
690451f
- Update to 0.21
690451f
7fb7a35
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.20.1-5
7fb7a35
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
7fb7a35
fa7451d
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.20.1-4
fa7451d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
fa7451d
Thomas Spura 3f0347a
* Wed May 28 2014 Thomas Spura <tomspur@fedoraproject.org> - 0.20.1-3
Thomas Spura 3f0347a
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
Thomas Spura 3f0347a
Orion Poplawski f1b1cdd
* Fri May  9 2014 Orion Poplawski <orion@cora.nwra.com> - 0.20.1-2
Orion Poplawski f1b1cdd
- Rebuild for Python 3.4
Orion Poplawski f1b1cdd
Orion Poplawski 1476cd1
* Fri May  9 2014 Orion Poplawski <orion@cora.nwra.com> - 0.20.1-1
Orion Poplawski 1476cd1
- Update to 0.20.1
Orion Poplawski 1476cd1
2c33707
* Mon Jan 20 2014 nbecker <ndbecker2@gmail.com> - 0.20-1
2c33707
- Update to 0.20
2c33707
81d4d83
* Thu Oct 17 2013 nbecker <ndbecker2@gmail.com> - 0.19.2-2
81d4d83
- Fix BR 1019498
81d4d83
cabc316
* Sun Oct 13 2013 nbecker <ndbecker2@gmail.com> - 0.19-2
cabc316
- Update to 0.19.2
cabc316
fe98a8b
* Fri Aug 02 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.19-2
fe98a8b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
fe98a8b
29f7e83
* Fri Apr 19 2013 nbecker <ndbecker2@gmail.com> - 0.19-1
29f7e83
- Update to 0.19
29f7e83
cb11060
* Tue Jan 29 2013 Neal Becker <ndbecker2@gmail.com> - 0.18-1
cb11060
- update to 0.18
cb11060
9895f36
* Sat Dec 15 2012 Neal Becker <ndbecker2@gmail.com> - 0.17.3-1
9895f36
- Update to 0.17.3
9895f36
59ac8d1
* Wed Nov 21 2012 Neal Becker <ndbecker2@gmail.com> - 0.17.2-1
59ac8d1
- update to 0.17.2
59ac8d1
8066215
* Wed Sep 26 2012 Neal Becker <ndbecker2@gmail.com> - 0.17.1-1
8066215
- Update to 0.17.1
8066215
e8e734a
* Mon Sep  3 2012 Neal Becker <ndbecker2@gmail.com> - 0.17-1
e8e734a
- Update to 0.17
e8e734a
bcf7a40
* Tue Aug 28 2012 Neal Becker <ndbecker2@gmail.com> - 0.17-3.b3
bcf7a40
- Turn on check (temporarily)
7a71a74
- Add br numpy from check
bcf7a40
9916244
* Tue Aug 28 2012 Neal Becker <ndbecker2@gmail.com> - 0.17-1.b3
9916244
- Test 0.17b3
9916244
459b7e9
* Fri Aug 24 2012 David Malcolm <dmalcolm@redhat.com> - 0.16-3
459b7e9
- generalize egg-info logic to support RHEL (rhbz#851528)
459b7e9
048fe03
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.16-2
048fe03
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
048fe03
d274acd
* Fri Apr 27 2012 Neal Becker <ndbecker2@gmail.com> - 0.16-1
d274acd
- Update to 0.16
d274acd
b8453c5
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.15.1-2
b8453c5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
b8453c5
162b912
* Tue Sep 20 2011 Neal Becker <ndbecker2@gmail.com> - 0.15.1-1
162b912
- Update to 0.15.1
162b912
1e3c032
* Sat Aug  6 2011 Neal Becker <ndbecker2@gmail.com> - 0.15-1
1e3c032
- Update to 0.15
1e3c032
c1179af
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14.1-2
c1179af
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
c1179af
4f6f005
* Sat Feb  5 2011 Neal Becker <ndbecker2@gmail.com> - 0.14.1-1
4f6f005
- Update to 0.14.1
4f6f005
cde3f20
* Wed Dec 15 2010 Neal Becker <ndbecker2@gmail.com> - 0.14-2
cde3f20
- Add cygdb
cde3f20
21a64ed
* Wed Dec 15 2010 Neal Becker <ndbecker2@gmail.com> - 0.14-1
21a64ed
- Update to 0.14
21a64ed
793e85d
* Wed Aug 25 2010 Neal Becker <ndbecker2@gmail.com> - 0.13-1
793e85d
- Update to 0.13
793e85d
5209034
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.12.1-5
5209034
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
5209034
ca3caf0
* Fri Feb  5 2010 Neal Becker <ndbecker2@gmail.com> - 0.12.1-4
ca3caf0
- Disable check for now as it fails on PPC
ca3caf0
9348cc8
* Tue Feb  2 2010 Neal Becker <ndbecker2@gmail.com> - 0.12.1-2
9348cc8
- typo
8df2139
- stupid rpm comments
9348cc8
b1680f2
* Mon Nov 23 2009 Neal Becker <ndbecker2@gmail.com> - 0.12-1.rc1
b1680f2
- Make that 0.12
b1680f2
49d58ec
* Mon Nov 23 2009 Neal Becker <ndbecker2@gmail.com> - 0.12.1-1.rc1
49d58ec
- Update to 0.12.1
49d58ec
50d3fe4
* Sun Sep 27 2009 Neal Becker <ndbecker2@gmail.com> - 0.11.3-1.rc1
50d3fe4
- Update to 0.11.3rc1
0870720
- Update to 0.11.3
50d3fe4
6f79160
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.11.2-2
6f79160
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
6f79160
9277ebb
* Wed May 20 2009 Neal Becker <ndbecker2@gmail.com> - 0.11.2-1
9277ebb
- Update to 0.11.2
9277ebb
d1a9987
* Thu Apr 16 2009 Neal Becker <ndbecker2@gmail.com> - 0.11.1-1
d1a9987
- Update to 0.11.1
d1a9987
ede53a6
* Sat Mar 14 2009 Neal Becker <ndbecker2@gmail.com> - 0.11-2
ede53a6
- Missed cython.py*
ede53a6
1415f19
* Sat Mar 14 2009 Neal Becker <ndbecker2@gmail.com> - 0.11-1
1415f19
- Update to 0.11
1415f19
- Exclude numpy from tests so we don't have to BR it
1415f19
41a21e6
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.3-2
41a21e6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
41a21e6
7c1fb76
* Wed Dec 17 2008 Neal Becker <ndbecker2@gmail.com> - 0.10.3-1
7c1fb76
- Update to 0.10.3
7c1fb76
6498335
* Thu Dec 04 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.10.2-2
6498335
- Rebuild for Python 2.6
6498335
302e10b
* Mon Dec  1 2008 Neal Becker <ndbecker2@gmail.com> - 0.10.2-1
302e10b
- Update to 0.10.2
302e10b
e448225
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.10.1-2
e448225
- Rebuild for Python 2.6
e448225
fdd0486
* Wed Nov 19 2008 Neal Becker <ndbecker2@gmail.com> - 0.10.1-1
fdd0486
- Update to 0.10.1
fdd0486
fdd0486
* Sun Nov  9 2008 Neal Becker <ndbecker2@gmail.com> - 0.10-3
fdd0486
- Fix typo
fdd0486
81b8d69
* Sun Nov  9 2008 Neal Becker <ndbecker2@gmail.com> - 0.10-1
81b8d69
- Update to 0.10
81b8d69
493dbe7
* Fri Jun 13 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.8-2
493dbe7
- Install into python_sitearch
493dbe7
- Add %%check
493dbe7
b57878d
* Fri Jun 13 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.8-1
b57878d
- Update to 0.9.8
b57878d
0229f27
* Mon Apr 14 2008 José Matos <jamatos[AT]fc.up.pt> - 0.9.6.13.1-3
0229f27
- Remove remaining --record.
0229f27
- Add more documentation (Doc and Tools).
0229f27
- Add correct entry for egg-info (F9+).
0229f27
0229f27
* Mon Apr 14 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.6.13.1-2
0229f27
- Change License to Python
0229f27
- Install About.html
0229f27
- Fix mixed spaces/tabs
0229f27
- Don't use --record
0229f27
0229f27
* Tue Apr  8 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.6.13.1-1
0229f27
- Update to 0.9.6.13.1
0229f27
0229f27
* Mon Apr  7 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.6.13-1
0229f27
- Update to 0.9.6.13
0229f27
- Add docs
0229f27
0229f27
* Tue Feb 26 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.6.12-1
0229f27
- Initial version