Compare commits
No commits in common. "c8-stream-3.8" and "c8" have entirely different histories.
c8-stream-
...
c8
@ -1 +1 @@
|
||||
db2286ea3b3a6060c4294f9c3df652c5b4f60fca SOURCES/Cython-0.29.14.tar.gz
|
||||
85d6abc9cded209bfa0e21f0f6876018e6125056 SOURCES/Cython-0.28.1.tar.gz
|
||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
SOURCES/Cython-0.29.14.tar.gz
|
||||
SOURCES/Cython-0.28.1.tar.gz
|
||||
|
@ -1,22 +1,17 @@
|
||||
%global srcname Cython
|
||||
%global upname cython
|
||||
|
||||
# https://github.com/cython/cython/issues/1982
|
||||
%bcond_with tests
|
||||
|
||||
Name: Cython
|
||||
Version: 0.29.14
|
||||
%global upver %{version_no_tilde %{nil}}
|
||||
Release: 4%{?dist}
|
||||
Version: 0.28.1
|
||||
Release: 3%{?dist}
|
||||
Summary: Language for writing Python extension modules
|
||||
|
||||
License: ASL 2.0
|
||||
URL: http://www.cython.org
|
||||
Source: https://github.com/cython/cython/archive/%{upver}/%{srcname}-%{version}.tar.gz
|
||||
|
||||
# Exclude i686 arch. Due to a modularity issue it's being added to the
|
||||
# x86_64 compose of CRB, but we don't want to ship it at all.
|
||||
# See: https://projects.engineering.redhat.com/browse/RCM-72605
|
||||
ExcludeArch: i686
|
||||
Source: https://github.com/cython/cython/archive/%{version}/%{srcname}-%{version}.tar.gz
|
||||
|
||||
BuildRequires: gcc
|
||||
%if %{with tests}
|
||||
@ -29,19 +24,18 @@ for writing Python extension modules.
|
||||
|
||||
%description %{_description}
|
||||
|
||||
%package -n python%{python3_pkgversion}-%{srcname}
|
||||
%package -n python3-%{srcname}
|
||||
Summary: %{summary}
|
||||
%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}}
|
||||
BuildRequires: python%{python3_pkgversion}-devel
|
||||
BuildRequires: python%{python3_pkgversion}-setuptools
|
||||
BuildRequires: python%{python3_pkgversion}-rpm-macros
|
||||
%{?python_provide:%python_provide python3-%{srcname}}
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-setuptools
|
||||
%if %{with tests}
|
||||
BuildRequires: python%{python3_pkgversion}-coverage
|
||||
BuildRequires: python%{python3_pkgversion}-numpy
|
||||
BuildRequires: python%{python3_pkgversion}-jedi
|
||||
BuildRequires: python3-coverage
|
||||
BuildRequires: python3-numpy
|
||||
BuildRequires: python3-jedi
|
||||
%endif
|
||||
|
||||
%description -n python%{python3_pkgversion}-%{srcname} %{_description}
|
||||
%description -n python3-%{srcname} %{_description}
|
||||
|
||||
Python 3 version.
|
||||
|
||||
@ -54,26 +48,18 @@ Python 3 version.
|
||||
%install
|
||||
%py3_install
|
||||
rm -rf %{buildroot}%{python3_sitelib}/setuptools/tests
|
||||
# Rename unversioned binaries
|
||||
mv %{buildroot}%{_bindir}/cython{,-%{python3_version}}
|
||||
mv %{buildroot}%{_bindir}/cygdb{,-%{python3_version}}
|
||||
mv %{buildroot}%{_bindir}/cythonize{,-%{python3_version}}
|
||||
|
||||
%if %{with tests}
|
||||
%check
|
||||
%{python3} runtests.py -vv --no-pyregr %{?_smp_mflags} \
|
||||
%ifarch %{ix86}
|
||||
--exclude run.parallel # https://github.com/cython/cython/issues/2807
|
||||
%endif
|
||||
|
||||
%{__python3} runtests.py -vv
|
||||
%endif
|
||||
|
||||
%files -n python%{python3_pkgversion}-%{srcname}
|
||||
%files -n python3-%{srcname}
|
||||
%license LICENSE.txt
|
||||
%doc *.txt Demos Doc Tools
|
||||
%{_bindir}/cython-%{python3_version}
|
||||
%{_bindir}/cygdb-%{python3_version}
|
||||
%{_bindir}/cythonize-%{python3_version}
|
||||
%{_bindir}/cython
|
||||
%{_bindir}/cythonize
|
||||
%{_bindir}/cygdb
|
||||
%{python3_sitearch}/%{srcname}-*.egg-info/
|
||||
%{python3_sitearch}/%{srcname}/
|
||||
%{python3_sitearch}/pyximport/
|
||||
@ -81,94 +67,12 @@ mv %{buildroot}%{_bindir}/cythonize{,-%{python3_version}}
|
||||
%{python3_sitearch}/__pycache__/%{upname}.*
|
||||
|
||||
%changelog
|
||||
* Fri Dec 13 2019 Tomas Orsava <torsava@redhat.com> - 0.29.14-4
|
||||
- Exclude unsupported i686 arch
|
||||
* Tue Jul 31 2018 Petr Viktorin <pviktori@redhat.com> - 0.28.1-3
|
||||
- Remove the Python 2 subpackage
|
||||
https://bugzilla.redhat.com/show_bug.cgi?id=1591686
|
||||
|
||||
* Thu Nov 21 2019 Lumír Balhar <lbalhar@redhat.com> - 0.29.14-3
|
||||
- Unversioned binaries renamed
|
||||
|
||||
* Wed Nov 20 2019 Lumír Balhar <lbalhar@redhat.com> - 0.29.14-2
|
||||
- Adjusted for Python 3.8 module in RHEL 8
|
||||
- without emacs plugin
|
||||
|
||||
* Mon Nov 04 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.14-1
|
||||
- Update to 0.29.14 (#1768034)
|
||||
- Python 2 subpackage has been removed
|
||||
|
||||
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.13-5
|
||||
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
||||
|
||||
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.13-4
|
||||
- Rebuilt for Python 3.8
|
||||
|
||||
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.13-3
|
||||
- Bootstrap for Python 3.8
|
||||
|
||||
* Thu Aug 01 2019 Gwyn Ciesla <gwync@protonmail.com> 0.29.13-2
|
||||
- Rebuild with new numpy.
|
||||
|
||||
* Sat Jul 27 11:58:51 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.29.13-1
|
||||
- Update to 0.29.13
|
||||
|
||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.12-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Mon Jul 22 2019 Petr Viktorin <pviktori@redhat.com> - 0.29.12-2
|
||||
- Remove non-essential Python 2 test dependencies
|
||||
|
||||
* Thu Jul 11 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.12-1
|
||||
- Update to 0.29.12 (#1727580)
|
||||
|
||||
* Mon Jul 01 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.11-1
|
||||
- Update to 0.29.11 (#1725361)
|
||||
|
||||
* Sun Jun 02 2019 Charalampos Stratakis <cstratak@redhat.com> - 0.29.10-1
|
||||
- Update to 0.29.10 (#1716146)
|
||||
|
||||
* Thu May 30 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.9-1
|
||||
- Update to 0.29.9 (#1714365)
|
||||
|
||||
* Mon May 13 07:10:35 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.29.7-1
|
||||
- Update to 0.29.7
|
||||
|
||||
* Wed Feb 27 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.6-1
|
||||
- Update to 0.29.6 (#1683661)
|
||||
|
||||
* Fri Feb 08 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.5-1
|
||||
- Update to 0.29.5 (#1667643)
|
||||
|
||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Sat Jan 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.29.3-1
|
||||
- Update to 0.29.3 (#1667643)
|
||||
|
||||
* Tue Jan 08 2019 Alex Cobb <alex.cobb@smart.mit.edu> - 0.29.1-2
|
||||
- Added emacs-cython-mode subpackage
|
||||
|
||||
* Mon Dec 10 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.29.1-1
|
||||
- Update to 0.29.1
|
||||
|
||||
* Mon Dec 10 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.29-1
|
||||
- Update to 0.29
|
||||
|
||||
* Wed Oct 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.29~rc2-1
|
||||
- Update to 0.29~rc2
|
||||
|
||||
* Sat Aug 11 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.28.5-1
|
||||
- Update to 0.28.5
|
||||
|
||||
* Sun Aug 05 2018 Miro Hrončok <mhroncok@redhat.com> - 0.28.4-3
|
||||
- Only have one /usr/bin/cython
|
||||
|
||||
* Sun Jul 15 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.28.4-1
|
||||
- Update to 0.28.4
|
||||
|
||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.28.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 0.28.1-2
|
||||
- Rebuilt for Python 3.7
|
||||
* Mon Jun 25 2018 Lumír Balhar <lbalhar@redhat.com> - 0.28.1-2
|
||||
- Allow build with Python 2
|
||||
|
||||
* Mon Mar 19 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.28.1-1
|
||||
- Update to 0.28.1
|
||||
@ -426,3 +330,4 @@ mv %{buildroot}%{_bindir}/cythonize{,-%{python3_version}}
|
||||
|
||||
* Tue Feb 26 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.6.12-1
|
||||
- Initial version
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user