2021-07-20 23:36:49 +08:00
|
|
|
|
%global srcname toolz
|
|
|
|
|
%global desc Toolz provides a set of utility functions for iterators, functions, and\
|
|
|
|
|
dictionaries. These functions interoperate well and form the building blocks\
|
|
|
|
|
of common data analytic operations. They extend the standard libraries\
|
|
|
|
|
itertools and functools and borrow heavily from the standard libraries of\
|
|
|
|
|
contemporary functional languages.\
|
|
|
|
|
\
|
|
|
|
|
Toolz provides a suite of functions which have the following functional\
|
|
|
|
|
virtues:\
|
|
|
|
|
\
|
|
|
|
|
Composable: They interoperate due to their use of core data structures.\
|
|
|
|
|
Pure: They don’t change their inputs or rely on external state.\
|
|
|
|
|
Lazy: They don’t run until absolutely necessary, allowing them to support\
|
|
|
|
|
large streaming data sets.\
|
|
|
|
|
\
|
|
|
|
|
Toolz functions are pragmatic. They understand that most programmers have\
|
|
|
|
|
deadlines.\
|
|
|
|
|
\
|
|
|
|
|
Low Tech: They’re just functions, no syntax or magic tricks to learn\
|
|
|
|
|
Tuned: They’re profiled and optimized\
|
|
|
|
|
Serializable: They support common solutions for parallel computing\
|
|
|
|
|
\
|
|
|
|
|
This gives developers the power to write powerful programs to solve complex\
|
|
|
|
|
problems with relatively simple code. This code can be easy to understand\
|
|
|
|
|
without sacrificing performance. Toolz enables this approach, commonly\
|
|
|
|
|
associated with functional programming, within a natural Pythonic style\
|
|
|
|
|
suitable for most developers.
|
|
|
|
|
Summary: A functional standard library for Python
|
|
|
|
|
Name: python-%{srcname}
|
|
|
|
|
Version: 0.11.1
|
2022-02-08 01:08:29 +08:00
|
|
|
|
Release: 5%{?dist}
|
2021-07-20 23:36:49 +08:00
|
|
|
|
License: BSD
|
|
|
|
|
Vendor: Microsoft Corporation
|
|
|
|
|
Distribution: Mariner
|
|
|
|
|
URL: https://github.com/pytoolz/toolz/
|
|
|
|
|
Source0: https://files.pythonhosted.org/packages/d6/0d/fdad31347bf3d058002993a094da1ca95f0f3ef9beec08856d0fe4ad9766/%{srcname}-%{version}.tar.gz
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
%{desc}
|
|
|
|
|
|
|
|
|
|
%package -n python%{python3_pkgversion}-%{srcname}
|
|
|
|
|
%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}}
|
|
|
|
|
Summary: A functional standard library for Python %{python3_version}
|
|
|
|
|
BuildRequires: python%{python3_pkgversion}-devel
|
|
|
|
|
BuildRequires: python%{python3_pkgversion}-setuptools
|
2021-12-14 06:16:13 +08:00
|
|
|
|
%if %{with_check}
|
|
|
|
|
BuildRequires: python%{python3_pkgversion}-pip
|
|
|
|
|
%endif
|
2021-07-20 23:36:49 +08:00
|
|
|
|
|
|
|
|
|
%description -n python%{python3_pkgversion}-%{srcname}
|
|
|
|
|
%{desc}
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q -n %{srcname}-%{version}
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
%py3_build
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
%py3_install
|
|
|
|
|
|
|
|
|
|
%check
|
2021-12-14 06:16:13 +08:00
|
|
|
|
pip3 install nose
|
2022-02-08 01:08:29 +08:00
|
|
|
|
nosetests
|
2021-07-20 23:36:49 +08:00
|
|
|
|
|
|
|
|
|
%files -n python%{python3_pkgversion}-%{srcname}
|
|
|
|
|
%license LICENSE.txt
|
|
|
|
|
%{python3_sitelib}/%{srcname}*
|
|
|
|
|
%{python3_sitelib}/tlz/
|
|
|
|
|
|
|
|
|
|
%changelog
|
2022-02-08 01:08:29 +08:00
|
|
|
|
* Mon Feb 07 2022 Muhammad Falak <mwani@microsoft.com> 0.11.1-5
|
|
|
|
|
- Test with `nosetests` instead of `nosetests-3.9`
|
|
|
|
|
|
2021-12-14 06:16:13 +08:00
|
|
|
|
* Fri Dec 03 2021 Thomas Crain <thcrain@microsoft.com> - 0.11.1-4
|
|
|
|
|
- Replace easy_install usage with pip in %%check sections
|
|
|
|
|
|
2021-07-20 23:36:49 +08:00
|
|
|
|
* Wed Jun 23 2021 Rachel Menge <rachelmenge@microsoft.com> - 0.11.1-3
|
2021-10-21 07:45:16 +08:00
|
|
|
|
- Initial CBL-Mariner import from Fedora 34 (license: MIT)
|
2021-07-20 23:36:49 +08:00
|
|
|
|
- License verified
|
|
|
|
|
|
|
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.1-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Jan 25 2021 Orion Poplawski <orion@nwra.com> - 0.11.1-1
|
|
|
|
|
- Update to 0.11.1
|
|
|
|
|
|
|
|
|
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.0-6
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 0.10.0-5
|
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
|
|
|
|
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.0-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.10.0-3
|
|
|
|
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
|
|
|
|
|
|
|
|
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.10.0-2
|
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
|
|
|
|
|
* Tue Jul 30 2019 Orion Poplawski <orion@nwra.com> - 0.10.0-1
|
|
|
|
|
- Update to 0.10.0
|
|
|
|
|
|
|
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.0-9
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Mar 08 2019 Carl George <carl@george.computer> - 0.9.0-8
|
|
|
|
|
- EPEL compatibility
|
|
|
|
|
|
|
|
|
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.0-7
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Sat Oct 27 2018 Orion Poplawski <orion@nwra.com> - 0.9.0-6
|
|
|
|
|
- Drop python 2 for Fedora 30+
|
|
|
|
|
|
|
|
|
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.0-5
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.9.0-4
|
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
|
|
|
|
|
* Fri Feb 09 2018 Iryna Shcherbina <ishcherb@redhat.com> - 0.9.0-3
|
|
|
|
|
- Update Python 2 dependency declarations to new packaging standards
|
|
|
|
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
|
|
|
|
|
|
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.0-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Sat Dec 30 2017 Orion Poplawski <orion@nwra.com> - 0.9.0-1
|
|
|
|
|
- Update to 0.9.0
|
|
|
|
|
|
|
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.0-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.0-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.8.0-2
|
|
|
|
|
- Rebuild for Python 3.6
|
|
|
|
|
|
|
|
|
|
* Thu Oct 20 2016 Orion Poplawski <orion@cora.nwra.com> - 0.8.0-1
|
|
|
|
|
- Update to 0.8.0
|
|
|
|
|
|
|
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.4-2
|
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
|
|
|
|
|
* Tue Apr 5 2016 Orion Poplawski <orion@cora.nwra.com> - 0.7.4-1
|
|
|
|
|
- Initial package
|