Compare commits
No commits in common. "c8-stream-3.8" and "stream-python39-3.9-rhel-8.9.0" have entirely different histories.
c8-stream-
...
stream-pyt
3
.gitignore
vendored
3
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
SOURCES/more-itertools-7.2.0.tar.gz
|
SOURCES/more-itertools-8.5.0.tar.gz
|
||||||
|
/more-itertools-8.5.0.tar.gz
|
||||||
|
@ -1 +1 @@
|
|||||||
99d97115bb2fa07a9d253986c8c3172550042143 SOURCES/more-itertools-7.2.0.tar.gz
|
2ec6794a07339fb06d6545d03945cf3702c4ee2a more-itertools-8.5.0.tar.gz
|
||||||
|
@ -1,33 +1,34 @@
|
|||||||
# spec file for package python-more-itertools
|
%bcond_without tests
|
||||||
# https://fedoraproject.org/wiki/Packaging:Python#Example_common_spec
|
|
||||||
%global srcname more-itertools
|
%global srcname more-itertools
|
||||||
%global _description \
|
|
||||||
Opensource python library wrapping around itertools. Package also includes \
|
|
||||||
implementations of the recipes from the itertools documentation.\
|
|
||||||
\
|
|
||||||
See https://pythonhosted.org/more-itertools/index.html for documentation.\
|
|
||||||
%global sum Python library for efficient use of itertools utility
|
|
||||||
|
|
||||||
Name: python-%{srcname}
|
Name: python-%{srcname}
|
||||||
Version: 7.2.0
|
Version: 8.5.0
|
||||||
Release: 5%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: %{sum}
|
Summary: More routines for operating on Python iterables, beyond itertools
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://github.com/erikrose/more-itertools
|
URL: https://github.com/erikrose/more-itertools
|
||||||
Source0: https://pypi.io/packages/source/m/%{srcname}/%{srcname}-%{version}.tar.gz
|
Source0: %{pypi_source}
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
# Exclude i686 arch. Due to a modularity issue it's being added to the
|
# 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.
|
# x86_64 compose of CRB, but we don't want to ship it at all.
|
||||||
# See: https://projects.engineering.redhat.com/browse/RCM-72605
|
# See: https://projects.engineering.redhat.com/browse/RCM-72605
|
||||||
ExcludeArch: i686
|
ExcludeArch: i686
|
||||||
|
|
||||||
BuildRequires: python%{python3_pkgversion}-devel
|
BuildRequires: python%{python3_pkgversion}-devel
|
||||||
BuildRequires: python%{python3_pkgversion}-rpm-macros
|
BuildRequires: python%{python3_pkgversion}-rpm-macros
|
||||||
|
BuildRequires: python%{python3_pkgversion}-setuptools
|
||||||
BuildRequires: python%{python3_pkgversion}-six
|
BuildRequires: python%{python3_pkgversion}-six
|
||||||
|
|
||||||
|
%global _description %{expand:
|
||||||
|
Python's itertools library is a gem - you can compose elegant solutions for
|
||||||
|
a variety of problems with the functions it provides. In more-itertools we
|
||||||
|
collect additional building blocks, recipes, and routines for working with
|
||||||
|
Python iterables.}
|
||||||
|
|
||||||
%description %_description
|
%description %_description
|
||||||
|
|
||||||
%package -n python%{python3_pkgversion}-%{srcname}
|
%package -n python%{python3_pkgversion}-%{srcname}
|
||||||
Summary: %{sum}
|
Summary: %{summary}
|
||||||
%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}}
|
%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}}
|
||||||
|
|
||||||
%description -n python%{python3_pkgversion}-%{srcname} %_description
|
%description -n python%{python3_pkgversion}-%{srcname} %_description
|
||||||
@ -41,23 +42,38 @@ Summary: %{sum}
|
|||||||
%install
|
%install
|
||||||
%py3_install
|
%py3_install
|
||||||
|
|
||||||
|
%if %{with tests}
|
||||||
%check
|
%check
|
||||||
%{__python3} ./setup.py test
|
%{python3} setup.py test
|
||||||
|
%endif
|
||||||
|
|
||||||
%files -n python%{python3_pkgversion}-%{srcname}
|
%files -n python%{python3_pkgversion}-%{srcname}
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc README.rst PKG-INFO
|
%doc README.rst PKG-INFO
|
||||||
%{python3_sitelib}/more_itertools/
|
%{python3_sitelib}/more_itertools/
|
||||||
%exclude %{python3_sitelib}/more_itertools/tests
|
%exclude %{python3_sitelib}/more_itertools/tests
|
||||||
%{python3_sitelib}/more_itertools-%{version}-py%{python3_version}.egg-info
|
%{python3_sitelib}/more_itertools-%{version}-py%{python3_version}.egg-info/
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Fri Dec 13 2019 Tomas Orsava <torsava@redhat.com> - 7.2.0-5
|
* Tue Jan 12 2021 Tomas Orsava <torsava@redhat.com> - 8.5.0-2
|
||||||
- Exclude unsupported i686 arch
|
- Convert from Fedora to the python39 module in RHEL8
|
||||||
|
- Resolves: rhbz#1877430
|
||||||
|
|
||||||
* Tue Nov 19 2019 Lumír Balhar <lbalhar@redhat.com> - 7.2.0-4
|
* Wed Sep 09 2020 Lumír Balhar <lbalhar@redhat.com> - 8.5.0-1
|
||||||
- Adjusted for Python 3.8 module in RHEL 8
|
- Update to 8.5.0 (#1873653)
|
||||||
- Resolves: rhbz#1772818
|
|
||||||
|
* Wed Jul 29 2020 Miro Hrončok <mhroncok@redhat.com> - 8.4.0-1
|
||||||
|
- Update to 8.4.0
|
||||||
|
- Fixes rhbz#1778332
|
||||||
|
|
||||||
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.2.0-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri May 22 2020 Miro Hrončok <mhroncok@redhat.com> - 7.2.0-5
|
||||||
|
- Rebuilt for Python 3.9
|
||||||
|
|
||||||
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.2.0-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 7.2.0-3
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 7.2.0-3
|
||||||
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
Loading…
Reference in New Issue
Block a user