commit 9a419ff34da18ff0a9ef0c032b59809c054f03b5 Author: Sergey Cherevko Date: Tue Jan 30 13:48:46 2024 +0300 import python-jaraco-functools-2.0-4.el8 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cf10ba8 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/jaraco.functools-2.0.tar.gz diff --git a/.python-jaraco-functools.metadata b/.python-jaraco-functools.metadata new file mode 100644 index 0000000..a1d5ea8 --- /dev/null +++ b/.python-jaraco-functools.metadata @@ -0,0 +1 @@ +1feb4481eabbb307b047f3b5a870c17ce34e9ab1 SOURCES/jaraco.functools-2.0.tar.gz diff --git a/SPECS/python-jaraco-functools.spec b/SPECS/python-jaraco-functools.spec new file mode 100644 index 0000000..809b296 --- /dev/null +++ b/SPECS/python-jaraco-functools.spec @@ -0,0 +1,103 @@ +# Created by pyp2rpm-3.3.2 +%global pypi_name jaraco.functools +%global pkg_name jaraco-functools +# Fedora doesn't have all the docs deps yet +%bcond_with docs + +Name: python-%{pkg_name} +Version: 2.0 +Release: 4%{?dist} +Summary: Functools like those found in stdlib + +License: MIT +URL: https://github.com/jaraco/jaraco.functools +Source0: %{pypi_source %{pypi_name}} +BuildArch: noarch + +%description +Functools like those found in stdlib + +%package -n python3-%{pkg_name} +Summary: %{summary} +Requires: python3-jaraco + +BuildRequires: python3-devel +BuildConflicts: python3dist(pytest) = 3.7.3 +BuildRequires: python3-jaraco-classes +BuildRequires: python3dist(more-itertools) +BuildRequires: python3dist(pytest) >= 3.4 +BuildRequires: python3dist(setuptools) +BuildRequires: python3dist(setuptools-scm) >= 1.15 +BuildRequires: python3dist(six) +%{?python_provide:%python_provide python3-%{pkg_name}} + +%description -n python3-%{pkg_name} +Functools like those found in stdlib + +%if %{with docs} +%package -n python-%{pkg_name}-doc +Summary: jaraco-functools documentation + +BuildRequires: python3dist(jaraco.packaging) >= 3.2 +BuildRequires: python3dist(rst.linker) >= 1.9 +BuildRequires: python3dist(sphinx) + +%description -n python-%{pkg_name}-doc +Documentation for jaraco-functools +%endif + +%prep +%autosetup -n jaraco.functools-%{version} +# Remove bundled egg-info +rm -rf jaraco.functools.egg-info + +%build +%py3_build + +%if %{with docs} +# generate html docs +PYTHONPATH=${PWD} sphinx-build docs html +# remove the sphinx-build leftovers +rm -rf html/.{doctrees,buildinfo} +%endif + +%install +%py3_install + +%check +# disabled for right now, need a newer version of pytest-flake8 +# https://src.fedoraproject.org/rpms/python-pytest-flake8/pull-request/2 +# AttributeError: 'Application' object has no attribute 'make_notifier' +# LANG=C.utf-8 %%{__python3} -m pytest --ignore=build + +%files -n python3-%{pkg_name} +%license LICENSE +%doc README.rst +# These excludes are provided by python3-jaraco +%exclude %{python3_sitelib}/jaraco/__init__* +%exclude %{python3_sitelib}/jaraco/__pycache__/__init__* +%{python3_sitelib}/jaraco/functools* +%{python3_sitelib}/jaraco/__pycache__/functools* +%{python3_sitelib}/jaraco.functools-%{version}-py?.?.egg-info + +%if %{with docs} +%files -n python-%{pkg_name}-doc +%doc html +%license LICENSE +%endif + +%changelog +* Wed Jan 24 2024 Sergey Cherevko - 2.0-4 +- Rebuilt for MSVSphere 8.9 + +* Fri Sep 27 2019 Dan Radez - 2.0-4 +- Rebuilding to resolve dep issues + +* Mon Aug 19 2019 Miro HronĨok - 2.0-3 +- Rebuilt for Python 3.8 + +* Fri Jul 26 2019 Fedora Release Engineering - 2.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Wed Apr 03 2019 Dan Radez - 2.0-1 +- Initial package.