Compare commits
No commits in common. "stream-python39-3.9-bootstrap-rhel-8.9.0" and "c8-stream-3.8" have entirely different histories.
stream-pyt
...
c8-stream-
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
/more-itertools-8.5.0.tar.gz
|
SOURCES/more-itertools-7.2.0.tar.gz
|
||||||
|
@ -1 +1 @@
|
|||||||
2ec6794a07339fb06d6545d03945cf3702c4ee2a more-itertools-8.5.0.tar.gz
|
99d97115bb2fa07a9d253986c8c3172550042143 SOURCES/more-itertools-7.2.0.tar.gz
|
||||||
|
@ -1,34 +1,33 @@
|
|||||||
%bcond_without tests
|
# spec file for package python-more-itertools
|
||||||
|
# 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: 8.5.0
|
Version: 7.2.0
|
||||||
Release: 2%{?dist}
|
Release: 5%{?dist}
|
||||||
Summary: More routines for operating on Python iterables, beyond itertools
|
Summary: %{sum}
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://github.com/erikrose/more-itertools
|
URL: https://github.com/erikrose/more-itertools
|
||||||
Source0: %{pypi_source}
|
Source0: https://pypi.io/packages/source/m/%{srcname}/%{srcname}-%{version}.tar.gz
|
||||||
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: %{summary}
|
Summary: %{sum}
|
||||||
%{?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
|
||||||
@ -42,38 +41,23 @@ Summary: %{summary}
|
|||||||
%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
|
||||||
* Tue Jan 12 2021 Tomas Orsava <torsava@redhat.com> - 8.5.0-2
|
* Fri Dec 13 2019 Tomas Orsava <torsava@redhat.com> - 7.2.0-5
|
||||||
- Convert from Fedora to the python39 module in RHEL8
|
- Exclude unsupported i686 arch
|
||||||
- Resolves: rhbz#1877430
|
|
||||||
|
|
||||||
* Wed Sep 09 2020 Lumír Balhar <lbalhar@redhat.com> - 8.5.0-1
|
* Tue Nov 19 2019 Lumír Balhar <lbalhar@redhat.com> - 7.2.0-4
|
||||||
- Update to 8.5.0 (#1873653)
|
- Adjusted for Python 3.8 module in RHEL 8
|
||||||
|
- 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