From 8a08c199fd1f6d39a49da3f017eadff10a8df83d Mon Sep 17 00:00:00 2001 From: Kaleb S. KEITHLEY Date: Oct 25 2021 12:51:39 +0000 Subject: rebuild from lookaside --- diff --git a/.python-jaraco-text.metadata b/.python-jaraco-text.metadata new file mode 100644 index 0000000..fc15f95 --- /dev/null +++ b/.python-jaraco-text.metadata @@ -0,0 +1 @@ +d0c61dcb1f5c542e91ebd8d190bcd2ae20762ff6 SOURCES/jaraco.text-3.2.0.tar.gz diff --git a/SPECS/python-jaraco-text.spec b/SPECS/python-jaraco-text.spec new file mode 100644 index 0000000..7494454 --- /dev/null +++ b/SPECS/python-jaraco-text.spec @@ -0,0 +1,115 @@ +%global pypi_name jaraco.text +%global pkg_name jaraco-text + +# Not all test dependencies are available yet +%bcond_with tests +%bcond_without docs + +Name: python-%{pkg_name} +Version: 3.2.0 +Release: 6%{?dist} +Summary: Module for text manipulation + +License: MIT +URL: https://github.com/jaraco/jaraco.text +Source0: %{pypi_source} +BuildArch: noarch + +BuildRequires: python3-devel +BuildRequires: python3dist(setuptools) +BuildRequires: python3dist(setuptools-scm) +# +#BuildRequires: python3dist(jaraco.functools) + +%if %{with tests} +BuildRequires: python3dist(pytest) +BuildRequires: python3dist(pytest-checkdocs) +BuildRequires: python3dist(pytest-flake8) +BuildRequires: python3dist(pytest-black-multipy) +BuildRequires: python3dist(pytest-cov) +# with tests +%endif + +%description +%{summary} + +%package -n python3-%{pkg_name} +Summary: %{summary} +%{?python_provide:%python_provide python3-%{pkg_name}} +Requires: python3dist(jaraco.functools) +Requires: python3dist(six) +Requires: python3-jaraco + +%description -n python3-%{pkg_name} +%{summary} + +%package -n python-%{pkg_name}-doc +Summary: jaraco.text documentation +BuildRequires: python3dist(sphinx) +BuildRequires: python3dist(rst.linker) >= 1.9 +BuildRequires: python3dist(jaraco.packaging) + +%description -n python-%{pkg_name}-doc +Documentation for jaraco.text + +%prep +%autosetup -n %{pypi_name}-%{version} +# Remove bundled egg-info +rm -rf %{pypi_name}.egg-info + +%build +%py3_build +%if %{with docs} +# generate html docs +PYTHONPATH=${PWD} sphinx-build-3 docs html +# remove the sphinx-build leftovers +rm -rf html/.{doctrees,buildinfo} +# with docs +%endif + +%install +%py3_install +install jaraco/text/Lorem\ ipsum.txt \ + %{buildroot}%{python3_sitelib}/jaraco/text/ + +%if %{with tests} +%check +%pytest +# with tests +%endif + +%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/text/ +%{python3_sitelib}/%{pypi_name}-%{version}-py%{python3_version}.egg-info + +%if %{with docs} +%files -n python-%{pkg_name}-doc +%doc html +%license LICENSE +# with docs +%endif + +%changelog +* Mon Oct 25 2021 Kaleb S. KEITHLEY - 3.2.0-6 +- Rebuild from lookaside + +* Tue Jul 27 2021 Fedora Release Engineering - 3.2.0-5 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Fri Jun 04 2021 Python Maint - 3.2.0-4 +- Rebuilt for Python 3.10 + +* Wed Jan 27 2021 Fedora Release Engineering - 3.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Wed Jul 29 2020 Fedora Release Engineering - 3.2.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Fri Mar 13 2020 Matthias Runge - 3.2.0-1 +- Initial package.