2023-02-23 11:18:32 +00:00
|
|
|
%bcond tests 1
|
2008-04-14 23:56:07 +00:00
|
|
|
|
2021-03-04 09:25:03 +00:00
|
|
|
# This bcond allows to ship a non-compiled version
|
|
|
|
# Slower, but sometimes necessary with alpha Python versions
|
2023-05-26 08:56:41 +00:00
|
|
|
%bcond cython_compile 1
|
2021-03-04 09:25:03 +00:00
|
|
|
|
2016-08-25 07:57:35 +00:00
|
|
|
Name: Cython
|
2023-11-30 12:34:45 +00:00
|
|
|
Version: 3.0.6
|
2024-01-22 20:52:34 +00:00
|
|
|
Release: 4%{?dist}
|
2018-03-19 13:26:16 +00:00
|
|
|
Summary: Language for writing Python extension modules
|
2008-04-14 23:56:07 +00:00
|
|
|
|
2023-02-17 16:47:57 +00:00
|
|
|
License: Apache-2.0
|
2016-08-25 07:57:35 +00:00
|
|
|
URL: http://www.cython.org
|
2023-07-17 18:42:54 +00:00
|
|
|
Source: https://github.com/cython/cython/archive/%{version}/Cython-%{version}.tar.gz
|
2023-06-30 14:52:02 +00:00
|
|
|
|
2021-03-09 16:47:31 +00:00
|
|
|
BuildRequires: python3-devel
|
|
|
|
|
|
|
|
%if %{with tests}
|
|
|
|
BuildRequires: gcc-c++
|
2023-10-13 12:58:38 +00:00
|
|
|
BuildRequires: gdb
|
|
|
|
# optionally uses Python's test.support for some test
|
|
|
|
BuildRequires: python3-test
|
2023-10-13 12:56:47 +00:00
|
|
|
# the Python tests requirements are curated manually
|
|
|
|
# the test-requirements*.txt files mix in coverage and optional deps
|
2021-03-09 16:47:31 +00:00
|
|
|
BuildRequires: python3-numpy
|
2023-07-17 22:19:54 +00:00
|
|
|
BuildRequires: python3-pythran
|
|
|
|
%if %{undefined rhel}
|
|
|
|
# We don't want to pull in ipython to RHEL just to run more tests.
|
2023-10-13 12:58:38 +00:00
|
|
|
# The tests use IPython.testing.globalipapp
|
|
|
|
BuildRequires: python3-ipython+test
|
2023-05-24 21:47:32 +00:00
|
|
|
# The tests requiring jedi are optional and skipped when jedi is not installed.
|
|
|
|
# Note that the jedi tests were forcefully disabled a long time ago,
|
|
|
|
# in https://github.com/cython/cython/issues/1845 far, far away.
|
|
|
|
# We keep the dependency here so we don't forget to re-add it once the balance is restored.
|
|
|
|
# We don't want to pull in jedi to RHEL just to potentially run more tests.
|
2021-03-09 16:47:31 +00:00
|
|
|
BuildRequires: python3-jedi
|
|
|
|
%endif
|
2023-05-24 21:47:32 +00:00
|
|
|
%endif
|
2020-05-13 09:28:52 +00:00
|
|
|
|
2021-03-04 09:25:03 +00:00
|
|
|
%if %{with cython_compile}
|
2016-08-25 07:57:35 +00:00
|
|
|
BuildRequires: gcc
|
2021-03-04 09:25:03 +00:00
|
|
|
%else
|
|
|
|
BuildArch: noarch
|
|
|
|
%endif
|
|
|
|
|
2021-03-09 16:47:31 +00:00
|
|
|
%global _description %{expand:
|
|
|
|
The Cython language makes writing C extensions for the Python language as easy
|
|
|
|
as Python itself. Cython is a source code translator based on Pyrex,
|
|
|
|
but supports more cutting edge functionality and optimizations.
|
|
|
|
|
|
|
|
The Cython language is a superset of the Python language (almost all Python
|
|
|
|
code is also valid Cython code), but Cython additionally supports optional
|
|
|
|
static typing to natively call C functions, operate with C++ classes and
|
|
|
|
declare fast C types on variables and class attributes.
|
|
|
|
This allows the compiler to generate very efficient C code from Cython code.
|
2016-01-13 18:09:39 +00:00
|
|
|
|
2021-03-09 16:47:31 +00:00
|
|
|
This makes Cython the ideal language for writing glue code for external C/C++
|
|
|
|
libraries, and for fast C modules that speed up the execution of Python code.}
|
2008-04-14 23:56:07 +00:00
|
|
|
|
2016-08-23 15:19:26 +00:00
|
|
|
%description %{_description}
|
2008-04-14 23:56:07 +00:00
|
|
|
|
2021-03-09 16:47:31 +00:00
|
|
|
|
2023-07-19 04:58:16 +00:00
|
|
|
%package -n python3-cython
|
2016-08-25 07:57:35 +00:00
|
|
|
Summary: %{summary}
|
2018-12-10 13:13:25 +00:00
|
|
|
Provides: Cython = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
|
Provides: Cython%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
2021-03-09 16:47:31 +00:00
|
|
|
Provides: cython = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
|
Provides: cython%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
2023-07-19 04:58:16 +00:00
|
|
|
%py_provides python3-Cython
|
|
|
|
Obsoletes: python3-Cython < 3~~
|
2012-10-28 16:00:52 +00:00
|
|
|
|
2020-05-17 09:09:29 +00:00
|
|
|
# A small templating library is bundled in Cython/Tempita
|
|
|
|
# Upstream version 0.5.2 is available from https://pypi.org/project/Tempita
|
|
|
|
# but the bundled copy is patched and reorganized.
|
|
|
|
# Upstream homepage is inaccessible.
|
|
|
|
Provides: bundled(python3dist(tempita))
|
|
|
|
|
2023-07-19 04:58:16 +00:00
|
|
|
%description -n python3-cython %{_description}
|
2012-10-28 16:00:52 +00:00
|
|
|
|
2008-04-14 23:56:07 +00:00
|
|
|
|
|
|
|
%prep
|
2023-07-17 18:42:54 +00:00
|
|
|
%autosetup -n cython-%{version} -p1
|
2021-03-09 16:47:31 +00:00
|
|
|
|
2008-04-14 23:56:07 +00:00
|
|
|
|
2023-10-13 12:56:47 +00:00
|
|
|
%generate_buildrequires
|
|
|
|
%pyproject_buildrequires
|
|
|
|
|
|
|
|
|
2008-04-14 23:56:07 +00:00
|
|
|
%build
|
2023-10-13 12:56:47 +00:00
|
|
|
%pyproject_wheel %{!?with_cython_compile:-C--global-option=--no-cython-compile}
|
2008-04-14 23:56:07 +00:00
|
|
|
|
2019-01-08 06:50:19 +00:00
|
|
|
|
2008-04-14 23:56:07 +00:00
|
|
|
%install
|
2023-10-13 12:56:47 +00:00
|
|
|
%pyproject_install
|
|
|
|
%pyproject_save_files Cython cython pyximport
|
2012-10-28 16:00:52 +00:00
|
|
|
|
2008-04-14 23:56:07 +00:00
|
|
|
|
2020-07-22 18:50:49 +00:00
|
|
|
%if %{with tests}
|
|
|
|
%check
|
2023-07-17 19:59:59 +00:00
|
|
|
# run.pstats_profile_test* fails on Python 3.12
|
2023-10-13 12:59:48 +00:00
|
|
|
# https://github.com/cython/cython/issues/5470
|
2023-10-17 22:29:27 +00:00
|
|
|
# run.parallel fails on i686
|
|
|
|
# https://github.com/cython/cython/issues/2807
|
2020-07-22 18:50:49 +00:00
|
|
|
%{python3} runtests.py -vv --no-pyregr %{?_smp_mflags} \
|
2023-07-17 19:59:59 +00:00
|
|
|
--exclude 'run.pstats_profile_test*' \
|
2020-07-22 18:50:49 +00:00
|
|
|
%ifarch %{ix86}
|
2023-10-17 22:29:27 +00:00
|
|
|
--exclude run.parallel \
|
2020-07-22 18:50:49 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%endif
|
2008-04-14 23:56:07 +00:00
|
|
|
|
2021-03-09 16:47:31 +00:00
|
|
|
|
2023-10-13 12:56:47 +00:00
|
|
|
%files -n python3-cython -f %{pyproject_files}
|
2012-10-28 16:00:52 +00:00
|
|
|
%doc *.txt Demos Doc Tools
|
2018-08-05 22:29:16 +00:00
|
|
|
%{_bindir}/cython
|
|
|
|
%{_bindir}/cygdb
|
|
|
|
%{_bindir}/cythonize
|
2008-04-14 23:56:07 +00:00
|
|
|
|
2021-03-09 16:47:31 +00:00
|
|
|
|
2008-04-14 23:56:07 +00:00
|
|
|
%changelog
|
2024-01-22 20:52:34 +00:00
|
|
|
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.6-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
2024-01-19 09:27:59 +00:00
|
|
|
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.6-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
2024-01-18 12:16:29 +00:00
|
|
|
* Thu Jan 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.6-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
2023-11-30 12:34:45 +00:00
|
|
|
* Thu Nov 30 2023 Miro Hrončok <mhroncok@redhat.com> - 3.0.6-1
|
|
|
|
- Update to 3.0.6
|
|
|
|
- Fixes: rhbz#2251973
|
|
|
|
|
2023-10-31 16:06:56 +00:00
|
|
|
* Tue Oct 31 2023 Miro Hrončok <mhroncok@redhat.com> - 3.0.5-1
|
|
|
|
- Update to 3.0.5
|
|
|
|
|
2023-10-18 18:12:46 +00:00
|
|
|
* Wed Oct 18 2023 Miro Hrončok <mhroncok@redhat.com> - 3.0.4-1
|
|
|
|
- Update to 3.0.4
|
|
|
|
- Fixes: rhbz#2244865
|
|
|
|
|
2023-10-13 10:15:25 +00:00
|
|
|
* Fri Oct 13 2023 Miro Hrončok <mhroncok@redhat.com> - 3.0.3-1
|
|
|
|
- Update to 3.0.3
|
|
|
|
- Fixes: rhbz#2242429
|
|
|
|
|
2023-09-01 14:14:25 +00:00
|
|
|
* Fri Sep 01 2023 Miro Hrončok <mhroncok@redhat.com> - 3.0.2-1
|
|
|
|
- Update to 3.0.2
|
|
|
|
- Fixes: rhbz#2235027
|
|
|
|
|
2023-07-17 18:42:54 +00:00
|
|
|
* Mon Jul 17 2023 Miro Hrončok <mhroncok@redhat.com> - 3.0.0-1
|
|
|
|
- Update to 3.0.0
|
2023-07-19 04:58:16 +00:00
|
|
|
- Rename python3-Cython to python3-cython
|
2023-07-17 18:42:54 +00:00
|
|
|
|
2023-02-23 11:18:32 +00:00
|
|
|
* Thu Jul 13 2023 Tomáš Hrnčiar <thrnciar@redhat.com> - 3.0.0~rc2-1
|
|
|
|
- Update to 3.0.0rc2
|
|
|
|
- The emacs-cython-mode package is no longer part of this project
|
|
|
|
|
2023-06-30 14:52:02 +00:00
|
|
|
* Fri Jun 30 2023 Petr Viktorin <pviktori@redhat.com> - 0.29.35-2
|
|
|
|
- Compile-time Python 3.12 compatibility for CYTHON_TRACE support
|
|
|
|
|
2023-06-18 16:31:10 +00:00
|
|
|
* Sun Jun 18 2023 Miro Hrončok <mhroncok@redhat.com> - 0.29.35-1
|
|
|
|
- Update to 0.29.35
|
|
|
|
- Fixes: rhbz#2210064
|
2023-06-16 06:21:08 +00:00
|
|
|
|
2023-06-13 18:25:36 +00:00
|
|
|
* Tue Jun 13 2023 Python Maint <python-maint@redhat.com> - 0.29.34-3
|
|
|
|
- Bootstrap for Python 3.12
|
|
|
|
|
2023-05-24 21:47:32 +00:00
|
|
|
* Wed May 24 2023 Yaakov Selkowitz <yselkowi@redhat.com> - 0.29.34-2
|
|
|
|
- Avoid python-jedi dependency in RHEL builds
|
2023-05-26 08:47:05 +00:00
|
|
|
- Stop shipping emacs-cython-mode in RHEL builds
|
2023-05-24 21:47:32 +00:00
|
|
|
|
2023-04-03 06:21:24 +00:00
|
|
|
* Mon Apr 03 2023 Miro Hrončok <mhroncok@redhat.com> - 0.29.34-1
|
|
|
|
- Update to 0.29.34
|
|
|
|
- Fixes: rhbz#1823181
|
|
|
|
- Fixes: rhbz#2172822
|
|
|
|
- Fixes: rhbz#2177838
|
|
|
|
|
2023-02-17 16:46:58 +00:00
|
|
|
* Fri Feb 17 2023 Miro Hrončok <mhroncok@redhat.com> - 0.29.33-1
|
|
|
|
- Update to 0.29.33
|
|
|
|
- Fix test failures with NumPy 1.24
|
2023-02-17 16:47:57 +00:00
|
|
|
- Update the RPM license tag to SPDX
|
2023-02-17 16:46:58 +00:00
|
|
|
|
2023-01-18 19:43:47 +00:00
|
|
|
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.32-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
2022-12-20 00:14:01 +00:00
|
|
|
* Tue Dec 20 2022 Miro Hrončok <mhroncok@redhat.com> - 0.29.32-2
|
|
|
|
- emacs-cython-mode: Wrap the docstring of cython-default-compile-format to 80 characters
|
|
|
|
- Fixes: rhbz#2155090
|
|
|
|
|
2022-08-08 10:03:50 +00:00
|
|
|
* Mon Aug 08 2022 Miro Hrončok <mhroncok@redhat.com> - 0.29.32-1
|
|
|
|
- Update to 0.29.32
|
|
|
|
|
2022-07-20 18:34:09 +00:00
|
|
|
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.30-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-06-13 16:55:39 +00:00
|
|
|
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 0.29.30-3
|
|
|
|
- Rebuilt for Python 3.11
|
|
|
|
|
2022-06-13 12:53:36 +00:00
|
|
|
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 0.29.30-2
|
|
|
|
- Bootstrap for Python 3.11
|
|
|
|
|
2022-05-16 13:47:29 +00:00
|
|
|
* Mon May 30 2022 Tomáš Hrnčiar <thrnciar@redhat.com> - 0.29.30-1
|
|
|
|
- Update to 0.29.30
|
|
|
|
|
2022-03-31 11:55:01 +00:00
|
|
|
* Thu Mar 31 2022 Miro Hrončok <mhroncok@redhat.com> - 0.29.28-1
|
|
|
|
- Update to 0.29.28
|
|
|
|
|
2022-01-19 19:18:59 +00:00
|
|
|
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.26-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2022-01-07 09:44:03 +00:00
|
|
|
* Fri Jan 07 2022 Miro Hrončok <mhroncok@redhat.com> - 0.29.26-1
|
|
|
|
- Update to 0.29.26
|
|
|
|
|
2021-07-22 15:26:10 +00:00
|
|
|
* Wed Jul 21 2021 Scott Talbert <swt@techie.net> - 0.29.24-1
|
|
|
|
- Update to 0.29.24 to fix FTBFS with Python 3.10
|
|
|
|
|
2021-07-21 15:43:52 +00:00
|
|
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.22-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-06-02 20:04:38 +00:00
|
|
|
* Wed Jun 02 2021 Python Maint <python-maint@redhat.com> - 0.29.22-4
|
|
|
|
- Rebuilt for Python 3.10
|
|
|
|
|
2021-06-02 12:57:15 +00:00
|
|
|
* Wed Jun 02 2021 Python Maint <python-maint@redhat.com> - 0.29.22-3
|
|
|
|
- Bootstrap for Python 3.10
|
|
|
|
|
2021-03-09 16:47:31 +00:00
|
|
|
* Tue Mar 09 2021 Miro Hrončok <mhroncok@redhat.com> - 0.29.22-2
|
|
|
|
- Remove an obsoleted patch
|
|
|
|
- Remove old Obsoletes and Conflicts
|
|
|
|
- Update description
|
|
|
|
- Provide cython, python3-cython
|
|
|
|
|
2021-03-04 08:22:10 +00:00
|
|
|
* Thu Mar 04 2021 Miro Hrončok <mhroncok@redhat.com> - 0.29.22-1
|
|
|
|
- Update to 0.29.22
|
|
|
|
|
2021-01-25 22:20:58 +00:00
|
|
|
* Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.21-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-11-13 09:57:20 +00:00
|
|
|
* Fri Nov 13 2020 Miro Hrončok <mhroncok@redhat.com> - 0.29.21-4
|
|
|
|
- Drop build dependency on coverage
|
|
|
|
|
2020-07-27 10:18:11 +00:00
|
|
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.21-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-22 18:50:49 +00:00
|
|
|
* Wed Jul 22 2020 Gwyn Ciesla <gwync@protonmail.com> - 0.29.21-2
|
|
|
|
- Re-enable tests.
|
|
|
|
|
2020-07-22 15:30:31 +00:00
|
|
|
* Wed Jul 22 2020 Gwyn Ciesla <gwync@protonmail.com> - 0.29.21-1
|
|
|
|
- 0.29.21
|
|
|
|
|
2020-05-27 08:51:52 +00:00
|
|
|
* Wed May 27 2020 sguelton@redhat.com - 0.29.19-1
|
|
|
|
- Update to 0.29.19
|
|
|
|
|
2020-05-25 08:31:30 +00:00
|
|
|
* Mon May 25 2020 Miro Hrončok <mhroncok@redhat.com> - 0.29.17-4
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
2020-05-22 19:39:38 +00:00
|
|
|
* Fri May 22 2020 Miro Hrončok <mhroncok@redhat.com> - 0.29.17-3
|
|
|
|
- Bootstrap for Python 3.9
|
|
|
|
|
2020-05-13 09:28:52 +00:00
|
|
|
* Wed May 13 2020 Petr Viktorin <pviktori@redhat.com> - 0.29.17-2
|
|
|
|
- Backport classmethod fixes
|
|
|
|
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1788506
|
|
|
|
|
2020-04-28 11:09:46 +00:00
|
|
|
* Tue Apr 28 2020 Marcel Plch <mplch@redhat.com> - 0.29.17-1
|
|
|
|
- Update to 0.29.17
|
|
|
|
|
2020-03-25 15:02:54 +00:00
|
|
|
* Wed Mar 25 2020 Miro Hrončok <mhroncok@redhat.com> - 0.29.16-1
|
|
|
|
- Update to 0.29.16 (#1816785)
|
|
|
|
|
2020-02-08 20:17:04 +00:00
|
|
|
* Sat Feb 08 2020 Miro Hrončok <mhroncok@redhat.com> - 0.29.15-1
|
|
|
|
- Update to 0.29.15 (#1800158)
|
|
|
|
|
2020-01-28 09:18:22 +00:00
|
|
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.14-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-11-04 17:25:32 +00:00
|
|
|
* Mon Nov 04 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.14-1
|
|
|
|
- Update to 0.29.14 (#1768034)
|
2019-11-04 16:34:48 +00:00
|
|
|
- Python 2 subpackage has been removed
|
|
|
|
|
2019-10-03 11:49:38 +00:00
|
|
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.13-5
|
|
|
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
|
|
|
|
2019-08-15 19:55:34 +00:00
|
|
|
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.13-4
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
2019-08-15 18:52:57 +00:00
|
|
|
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.13-3
|
|
|
|
- Bootstrap for Python 3.8
|
|
|
|
|
2019-08-01 13:34:03 +00:00
|
|
|
* Thu Aug 01 2019 Gwyn Ciesla <gwync@protonmail.com> 0.29.13-2
|
|
|
|
- Rebuild with new numpy.
|
|
|
|
|
2019-07-27 09:59:09 +00:00
|
|
|
* Sat Jul 27 11:58:51 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.29.13-1
|
|
|
|
- Update to 0.29.13
|
|
|
|
|
2019-07-24 15:45:55 +00:00
|
|
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.12-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-06-26 13:56:07 +00:00
|
|
|
* Mon Jul 22 2019 Petr Viktorin <pviktori@redhat.com> - 0.29.12-2
|
|
|
|
- Remove non-essential Python 2 test dependencies
|
|
|
|
|
2019-07-11 11:35:15 +00:00
|
|
|
* Thu Jul 11 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.12-1
|
|
|
|
- Update to 0.29.12 (#1727580)
|
|
|
|
|
2019-07-01 11:44:53 +00:00
|
|
|
* Mon Jul 01 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.11-1
|
|
|
|
- Update to 0.29.11 (#1725361)
|
|
|
|
|
2019-06-02 21:18:38 +00:00
|
|
|
* Sun Jun 02 2019 Charalampos Stratakis <cstratak@redhat.com> - 0.29.10-1
|
|
|
|
- Update to 0.29.10 (#1716146)
|
|
|
|
|
2019-05-30 10:07:38 +00:00
|
|
|
* Thu May 30 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.9-1
|
|
|
|
- Update to 0.29.9 (#1714365)
|
|
|
|
|
2019-05-13 05:11:20 +00:00
|
|
|
* Mon May 13 07:10:35 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.29.7-1
|
|
|
|
- Update to 0.29.7
|
|
|
|
|
2019-02-27 13:31:01 +00:00
|
|
|
* Wed Feb 27 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.6-1
|
|
|
|
- Update to 0.29.6 (#1683661)
|
|
|
|
|
2019-02-08 22:46:11 +00:00
|
|
|
* Fri Feb 08 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.5-1
|
|
|
|
- Update to 0.29.5 (#1667643)
|
|
|
|
|
2019-01-31 11:29:01 +00:00
|
|
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2019-01-19 13:19:59 +00:00
|
|
|
* Sat Jan 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.3-1
|
|
|
|
- Update to 0.29.3 (#1667643)
|
|
|
|
|
2019-01-08 06:50:19 +00:00
|
|
|
* Tue Jan 08 2019 Alex Cobb <alex.cobb@smart.mit.edu> - 0.29.1-2
|
|
|
|
- Added emacs-cython-mode subpackage
|
|
|
|
|
2018-12-10 13:16:25 +00:00
|
|
|
* Mon Dec 10 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.29.1-1
|
|
|
|
- Update to 0.29.1
|
|
|
|
|
2018-12-10 13:13:25 +00:00
|
|
|
* Mon Dec 10 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.29-1
|
|
|
|
- Update to 0.29
|
|
|
|
|
2018-10-03 10:35:28 +00:00
|
|
|
* Wed Oct 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.29~rc2-1
|
|
|
|
- Update to 0.29~rc2
|
|
|
|
|
2018-08-11 18:48:49 +00:00
|
|
|
* Sat Aug 11 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.28.5-1
|
|
|
|
- Update to 0.28.5
|
|
|
|
|
2018-08-08 05:48:38 +00:00
|
|
|
* Sun Aug 05 2018 Miro Hrončok <mhroncok@redhat.com> - 0.28.4-3
|
2018-08-05 22:29:16 +00:00
|
|
|
- Only have one /usr/bin/cython
|
|
|
|
|
2018-07-15 12:51:07 +00:00
|
|
|
* Sun Jul 15 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.28.4-1
|
|
|
|
- Update to 0.28.4
|
|
|
|
|
2018-07-12 18:58:51 +00:00
|
|
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.28.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-06-15 15:02:24 +00:00
|
|
|
* Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 0.28.1-2
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
2018-03-19 13:26:16 +00:00
|
|
|
* Mon Mar 19 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.28.1-1
|
|
|
|
- Update to 0.28.1
|
|
|
|
|
2018-02-07 00:32:00 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.27.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-11-05 23:51:25 +00:00
|
|
|
* Mon Nov 06 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.27.3-1
|
|
|
|
- Update to 0.27.3
|
|
|
|
|
2017-10-02 09:53:16 +00:00
|
|
|
* Mon Oct 02 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.27.1-1
|
|
|
|
- Update to 0.27.1
|
|
|
|
|
2017-08-02 16:51:34 +00:00
|
|
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.25.2-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 01:43:51 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.25.2-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-05-03 13:23:11 +00:00
|
|
|
* Wed May 03 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.25.2-5
|
|
|
|
- Fix license
|
|
|
|
|
2017-02-10 05:03:25 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.25.2-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-12-22 07:59:33 +00:00
|
|
|
* Thu Dec 22 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.25.2-3
|
|
|
|
- Backport couple of patches
|
|
|
|
|
2016-12-12 12:42:36 +00:00
|
|
|
* Mon Dec 12 2016 Charalampos Stratakis <cstratak@redhat.com> - 0.25.2-2
|
|
|
|
- Rebuild for Python 3.6
|
|
|
|
|
2016-12-10 17:14:51 +00:00
|
|
|
* Sat Dec 10 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.25.2-1
|
|
|
|
- Update to 0.25.2
|
|
|
|
|
2016-08-27 20:57:32 +00:00
|
|
|
* Sat Aug 27 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.24.1-8
|
|
|
|
- Fix provides (RHBZ #1370879)
|
|
|
|
|
2016-08-25 13:17:55 +00:00
|
|
|
* Thu Aug 25 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.24.1-7
|
|
|
|
- Run test suite
|
|
|
|
|
2016-08-25 09:16:11 +00:00
|
|
|
* Thu Aug 25 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.24.1-6
|
|
|
|
- Provide old names
|
|
|
|
|
2016-08-25 07:57:35 +00:00
|
|
|
* Thu Aug 25 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.24.1-5
|
|
|
|
- Use %%python_provide
|
|
|
|
|
2016-08-23 15:19:26 +00:00
|
|
|
* Tue Aug 23 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.24.1-4
|
|
|
|
- Update to 0.24.1
|
|
|
|
|
2016-07-19 06:22:59 +00:00
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.23.4-4
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
2016-02-03 15:23:21 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.23.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2016-01-13 18:09:39 +00:00
|
|
|
* Wed Jan 13 2016 Orion Poplawski <orion@cora.nwra.com> - 0.23.4-1
|
|
|
|
- Update to 0.23.4
|
|
|
|
- Ship cythonize3
|
|
|
|
- Modernize and cleanup spec
|
|
|
|
- Run tests, one python3 test fails with 3.5
|
|
|
|
|
2015-10-13 06:33:53 +00:00
|
|
|
* Tue Oct 13 2015 Robert Kuska <rkuska@redhat.com> - 0.23-2
|
|
|
|
- Rebuilt for Python3.5 rebuild
|
|
|
|
|
2015-08-12 19:18:11 +00:00
|
|
|
* Wed Aug 12 2015 Neal Becker <ndbecker2@gmail.com> - 0.23-2
|
|
|
|
- Update to 0.23
|
|
|
|
|
2015-06-16 22:47:33 +00:00
|
|
|
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.22-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-02-13 14:20:06 +00:00
|
|
|
* Fri Feb 13 2015 nbecker <ndbecker2@gmail.com> - 0.22-1
|
|
|
|
- oops, that should be 0.22 not 0.22.1
|
|
|
|
|
2015-02-13 13:38:18 +00:00
|
|
|
* Fri Feb 13 2015 nbecker <ndbecker2@gmail.com> - 0.22.1-1
|
|
|
|
- Update to 0.22
|
|
|
|
|
2014-11-22 22:39:32 +00:00
|
|
|
* Sat Nov 22 2014 nbecker <ndbecker2@gmail.com> - 0.21.1-1
|
|
|
|
- Update to 0.21.1 (br #1164297)
|
|
|
|
|
2014-09-15 17:46:18 +00:00
|
|
|
* Mon Sep 15 2014 nbecker <ndbecker2@gmail.com> - 0.21-5
|
|
|
|
- Add /bin/cythonize
|
|
|
|
|
2014-09-15 13:40:46 +00:00
|
|
|
* Mon Sep 15 2014 nbecker <ndbecker2@gmail.com> - 0.21-1
|
|
|
|
- Update to 0.21
|
|
|
|
|
2014-08-15 18:24:29 +00:00
|
|
|
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.20.1-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-06 22:32:03 +00:00
|
|
|
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.20.1-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-28 11:31:06 +00:00
|
|
|
* Wed May 28 2014 Thomas Spura <tomspur@fedoraproject.org> - 0.20.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
|
|
|
|
|
2014-05-10 02:37:53 +00:00
|
|
|
* Fri May 9 2014 Orion Poplawski <orion@cora.nwra.com> - 0.20.1-2
|
|
|
|
- Rebuild for Python 3.4
|
|
|
|
|
2014-05-10 02:35:51 +00:00
|
|
|
* Fri May 9 2014 Orion Poplawski <orion@cora.nwra.com> - 0.20.1-1
|
|
|
|
- Update to 0.20.1
|
|
|
|
|
2014-01-20 20:56:47 +00:00
|
|
|
* Mon Jan 20 2014 nbecker <ndbecker2@gmail.com> - 0.20-1
|
|
|
|
- Update to 0.20
|
|
|
|
|
2013-10-17 01:03:10 +00:00
|
|
|
* Thu Oct 17 2013 nbecker <ndbecker2@gmail.com> - 0.19.2-2
|
|
|
|
- Fix BR 1019498
|
|
|
|
|
2013-10-13 23:22:31 +00:00
|
|
|
* Sun Oct 13 2013 nbecker <ndbecker2@gmail.com> - 0.19-2
|
|
|
|
- Update to 0.19.2
|
|
|
|
|
2013-08-02 22:37:04 +00:00
|
|
|
* Fri Aug 02 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.19-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-04-19 18:25:19 +00:00
|
|
|
* Fri Apr 19 2013 nbecker <ndbecker2@gmail.com> - 0.19-1
|
|
|
|
- Update to 0.19
|
|
|
|
|
2013-01-29 16:35:00 +00:00
|
|
|
* Tue Jan 29 2013 Neal Becker <ndbecker2@gmail.com> - 0.18-1
|
|
|
|
- update to 0.18
|
|
|
|
|
2012-12-15 15:48:44 +00:00
|
|
|
* Sat Dec 15 2012 Neal Becker <ndbecker2@gmail.com> - 0.17.3-1
|
|
|
|
- Update to 0.17.3
|
|
|
|
|
2012-11-21 14:56:23 +00:00
|
|
|
* Wed Nov 21 2012 Neal Becker <ndbecker2@gmail.com> - 0.17.2-1
|
|
|
|
- update to 0.17.2
|
|
|
|
|
2012-09-26 18:10:11 +00:00
|
|
|
* Wed Sep 26 2012 Neal Becker <ndbecker2@gmail.com> - 0.17.1-1
|
|
|
|
- Update to 0.17.1
|
|
|
|
|
2012-09-03 21:04:43 +00:00
|
|
|
* Mon Sep 3 2012 Neal Becker <ndbecker2@gmail.com> - 0.17-1
|
|
|
|
- Update to 0.17
|
|
|
|
|
2012-08-28 00:40:00 +00:00
|
|
|
* Tue Aug 28 2012 Neal Becker <ndbecker2@gmail.com> - 0.17-3.b3
|
|
|
|
- Turn on check (temporarily)
|
2012-08-28 13:55:36 +00:00
|
|
|
- Add br numpy from check
|
2012-08-28 00:40:00 +00:00
|
|
|
|
2012-08-28 00:29:03 +00:00
|
|
|
* Tue Aug 28 2012 Neal Becker <ndbecker2@gmail.com> - 0.17-1.b3
|
|
|
|
- Test 0.17b3
|
|
|
|
|
2012-08-24 14:40:36 +00:00
|
|
|
* Fri Aug 24 2012 David Malcolm <dmalcolm@redhat.com> - 0.16-3
|
|
|
|
- generalize egg-info logic to support RHEL (rhbz#851528)
|
|
|
|
|
2012-07-18 13:10:16 +00:00
|
|
|
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.16-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-04-27 11:39:22 +00:00
|
|
|
* Fri Apr 27 2012 Neal Becker <ndbecker2@gmail.com> - 0.16-1
|
|
|
|
- Update to 0.16
|
|
|
|
|
2012-01-12 20:16:07 +00:00
|
|
|
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.15.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-09-20 11:11:47 +00:00
|
|
|
* Tue Sep 20 2011 Neal Becker <ndbecker2@gmail.com> - 0.15.1-1
|
|
|
|
- Update to 0.15.1
|
|
|
|
|
2011-08-06 15:04:42 +00:00
|
|
|
* Sat Aug 6 2011 Neal Becker <ndbecker2@gmail.com> - 0.15-1
|
|
|
|
- Update to 0.15
|
|
|
|
|
2011-02-07 23:10:01 +00:00
|
|
|
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-02-05 16:52:23 +00:00
|
|
|
* Sat Feb 5 2011 Neal Becker <ndbecker2@gmail.com> - 0.14.1-1
|
|
|
|
- Update to 0.14.1
|
|
|
|
|
2010-12-15 12:15:36 +00:00
|
|
|
* Wed Dec 15 2010 Neal Becker <ndbecker2@gmail.com> - 0.14-2
|
|
|
|
- Add cygdb
|
|
|
|
|
2010-12-15 12:05:02 +00:00
|
|
|
* Wed Dec 15 2010 Neal Becker <ndbecker2@gmail.com> - 0.14-1
|
|
|
|
- Update to 0.14
|
|
|
|
|
2010-08-25 13:24:33 +00:00
|
|
|
* Wed Aug 25 2010 Neal Becker <ndbecker2@gmail.com> - 0.13-1
|
|
|
|
- Update to 0.13
|
|
|
|
|
2010-07-22 00:17:48 +00:00
|
|
|
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.12.1-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
|
|
|
|
2010-02-05 12:07:48 +00:00
|
|
|
* Fri Feb 5 2010 Neal Becker <ndbecker2@gmail.com> - 0.12.1-4
|
|
|
|
- Disable check for now as it fails on PPC
|
|
|
|
|
2010-02-02 11:49:43 +00:00
|
|
|
* Tue Feb 2 2010 Neal Becker <ndbecker2@gmail.com> - 0.12.1-2
|
|
|
|
- typo
|
2010-02-02 11:53:06 +00:00
|
|
|
- stupid rpm comments
|
2010-02-02 11:49:43 +00:00
|
|
|
|
2009-11-23 19:46:20 +00:00
|
|
|
* Mon Nov 23 2009 Neal Becker <ndbecker2@gmail.com> - 0.12-1.rc1
|
|
|
|
- Make that 0.12
|
|
|
|
|
2009-11-23 19:44:56 +00:00
|
|
|
* Mon Nov 23 2009 Neal Becker <ndbecker2@gmail.com> - 0.12.1-1.rc1
|
|
|
|
- Update to 0.12.1
|
|
|
|
|
2009-09-27 12:48:42 +00:00
|
|
|
* Sun Sep 27 2009 Neal Becker <ndbecker2@gmail.com> - 0.11.3-1.rc1
|
|
|
|
- Update to 0.11.3rc1
|
2009-09-27 13:46:33 +00:00
|
|
|
- Update to 0.11.3
|
2009-09-27 12:48:42 +00:00
|
|
|
|
2009-07-24 15:06:09 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.11.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-05-21 01:07:17 +00:00
|
|
|
* Wed May 20 2009 Neal Becker <ndbecker2@gmail.com> - 0.11.2-1
|
|
|
|
- Update to 0.11.2
|
|
|
|
|
2009-04-16 11:30:32 +00:00
|
|
|
* Thu Apr 16 2009 Neal Becker <ndbecker2@gmail.com> - 0.11.1-1
|
|
|
|
- Update to 0.11.1
|
|
|
|
|
2009-03-14 11:52:01 +00:00
|
|
|
* Sat Mar 14 2009 Neal Becker <ndbecker2@gmail.com> - 0.11-2
|
|
|
|
- Missed cython.py*
|
|
|
|
|
2009-03-14 11:40:23 +00:00
|
|
|
* Sat Mar 14 2009 Neal Becker <ndbecker2@gmail.com> - 0.11-1
|
|
|
|
- Update to 0.11
|
|
|
|
- Exclude numpy from tests so we don't have to BR it
|
|
|
|
|
2009-02-23 20:13:54 +00:00
|
|
|
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-12-17 12:10:19 +00:00
|
|
|
* Wed Dec 17 2008 Neal Becker <ndbecker2@gmail.com> - 0.10.3-1
|
|
|
|
- Update to 0.10.3
|
|
|
|
|
2008-12-04 17:52:11 +00:00
|
|
|
* Thu Dec 04 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.10.2-2
|
|
|
|
- Rebuild for Python 2.6
|
|
|
|
|
2008-12-01 13:23:20 +00:00
|
|
|
* Mon Dec 1 2008 Neal Becker <ndbecker2@gmail.com> - 0.10.2-1
|
|
|
|
- Update to 0.10.2
|
|
|
|
|
2008-11-29 16:36:48 +00:00
|
|
|
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.10.1-2
|
|
|
|
- Rebuild for Python 2.6
|
|
|
|
|
2008-11-19 20:09:00 +00:00
|
|
|
* Wed Nov 19 2008 Neal Becker <ndbecker2@gmail.com> - 0.10.1-1
|
|
|
|
- Update to 0.10.1
|
|
|
|
|
|
|
|
* Sun Nov 9 2008 Neal Becker <ndbecker2@gmail.com> - 0.10-3
|
|
|
|
- Fix typo
|
|
|
|
|
2008-11-09 12:40:23 +00:00
|
|
|
* Sun Nov 9 2008 Neal Becker <ndbecker2@gmail.com> - 0.10-1
|
|
|
|
- Update to 0.10
|
|
|
|
|
2008-06-14 00:48:45 +00:00
|
|
|
* Fri Jun 13 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.8-2
|
|
|
|
- Install into python_sitearch
|
|
|
|
- Add %%check
|
|
|
|
|
2008-06-13 15:51:06 +00:00
|
|
|
* Fri Jun 13 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.8-1
|
|
|
|
- Update to 0.9.8
|
|
|
|
|
2008-04-14 23:56:07 +00:00
|
|
|
* Mon Apr 14 2008 José Matos <jamatos[AT]fc.up.pt> - 0.9.6.13.1-3
|
|
|
|
- Remove remaining --record.
|
|
|
|
- Add more documentation (Doc and Tools).
|
|
|
|
- Add correct entry for egg-info (F9+).
|
|
|
|
|
|
|
|
* Mon Apr 14 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.6.13.1-2
|
|
|
|
- Change License to Python
|
|
|
|
- Install About.html
|
|
|
|
- Fix mixed spaces/tabs
|
|
|
|
- Don't use --record
|
|
|
|
|
|
|
|
* Tue Apr 8 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.6.13.1-1
|
|
|
|
- Update to 0.9.6.13.1
|
|
|
|
|
|
|
|
* Mon Apr 7 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.6.13-1
|
|
|
|
- Update to 0.9.6.13
|
|
|
|
- Add docs
|
|
|
|
|
|
|
|
* Tue Feb 26 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.6.12-1
|
|
|
|
- Initial version
|