rdobuilder 30a0df
%global srcname autopage
rdobuilder 30a0df
rdobuilder 30a0df
# Macros for pyproject (Fedora) vs. setup.py (CentOS)
rdobuilder 30a0df
%if 0%{?fedora} >= 33
rdobuilder 30a0df
%bcond_without pyproject
rdobuilder 30a0df
%else
rdobuilder 30a0df
%bcond_with pyproject
rdobuilder 30a0df
%endif
rdobuilder 30a0df
rdobuilder 30a0df
# Macros for disabling tests on CentOS 7
rdobuilder 30a0df
%if 0%{?el7}
rdobuilder 30a0df
%bcond_with enable_tests
rdobuilder 30a0df
%else
rdobuilder 30a0df
%bcond_without enable_tests
rdobuilder 30a0df
%endif
rdobuilder 30a0df
rdobuilder 30a0df
rdobuilder 30a0df
Name:           python-%{srcname}
rdobuilder 30a0df
Version:        0.5.0
rdobuilder 30a0df
Release:        1%{?dist}
rdobuilder 30a0df
Summary:        A Python library to provide automatic paging for console output
rdobuilder 30a0df
License:        ASL 2.0
rdobuilder 30a0df
URL:            https://pypi.python.org/pypi/autopage
rdobuilder 30a0df
Source0:        %{pypi_source}
rdobuilder 30a0df
Source1:        setup.py
rdobuilder 30a0df
rdobuilder 30a0df
BuildArch:      noarch
rdobuilder 30a0df
rdobuilder 30a0df
%global _description %{expand:
rdobuilder 30a0df
Autopage is a Python library to provide automatic paging for console output.}
rdobuilder 30a0df
rdobuilder 30a0df
rdobuilder 30a0df
%description %_description
rdobuilder 30a0df
rdobuilder 30a0df
%package -n python3-%{srcname}
rdobuilder 30a0df
Summary:        %{summary}
rdobuilder 30a0df
BuildRequires:  python3-devel
rdobuilder 30a0df
BuildRequires:  python3-pytest
rdobuilder 30a0df
%if %{with pyproject}
rdobuilder 30a0df
BuildRequires:  pyproject-rpm-macros
rdobuilder 30a0df
%else
rdobuilder 30a0df
%if %{with enable_tests}
rdobuilder 30a0df
BuildRequires:  %{py3_dist fixtures}
rdobuilder 30a0df
%endif
rdobuilder 30a0df
%endif
rdobuilder 30a0df
rdobuilder 30a0df
%description -n python3-%{srcname} %_description
rdobuilder 30a0df
rdobuilder 30a0df
%prep
rdobuilder 30a0df
%autosetup -n %{srcname}-%{version}
rdobuilder 30a0df
rdobuilder 30a0df
%if %{with pyproject}
rdobuilder 30a0df
%generate_buildrequires
rdobuilder 30a0df
%pyproject_buildrequires -e pep8,%{toxenv}
rdobuilder 30a0df
%else
rdobuilder 30a0df
cp %{SOURCE1} ./
rdobuilder 30a0df
%endif
rdobuilder 30a0df
rdobuilder 30a0df
%build
rdobuilder 30a0df
%if %{with pyproject}
rdobuilder 30a0df
%pyproject_wheel
rdobuilder 30a0df
%else
rdobuilder 30a0df
%py3_build
rdobuilder 30a0df
%endif
rdobuilder 30a0df
rdobuilder 30a0df
%install
rdobuilder 30a0df
%if %{with pyproject}
rdobuilder 30a0df
%pyproject_install
rdobuilder 30a0df
%pyproject_save_files autopage
rdobuilder 30a0df
%else
rdobuilder 30a0df
%py3_install
rdobuilder 30a0df
%endif
rdobuilder 30a0df
rdobuilder 30a0df
%check
rdobuilder 30a0df
%if %{with enable_tests}
rdobuilder 30a0df
%if %{with pyproject}
rdobuilder 30a0df
%tox
rdobuilder 30a0df
%else
rdobuilder 30a0df
pytest -s
rdobuilder 30a0df
%endif
rdobuilder 30a0df
%endif
rdobuilder 30a0df
rdobuilder 30a0df
%if %{with pyproject}
rdobuilder 30a0df
%files -n python3-%{srcname} -f %{pyproject_files}
rdobuilder 30a0df
%else
rdobuilder 30a0df
%files -n python3-%{srcname}
rdobuilder 30a0df
%{python3_sitelib}/%{srcname}-*.egg-info/
rdobuilder 30a0df
%{python3_sitelib}/%{srcname}/
rdobuilder 30a0df
%endif
rdobuilder 30a0df
%license LICENSE
rdobuilder 30a0df
%doc README.md
rdobuilder 30a0df
rdobuilder 30a0df
%changelog
rdobuilder 30a0df
* Fri Jan 21 2022 Zane Bitter <zaneb@fedoraproject.org> 0.5.0-1
rdobuilder 30a0df
- Update to v0.5.0
rdobuilder 30a0df
rdobuilder 30a0df
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.0-3
rdobuilder 30a0df
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
rdobuilder 30a0df
rdobuilder 30a0df
* Wed Oct 27 2021 Zane Bitter <zaneb@fedoraproject.org> 0.4.0-2
rdobuilder 30a0df
- Update specfile to build for more distros
rdobuilder 30a0df
rdobuilder 30a0df
* Mon Jul 12 2021 Zane Bitter <zaneb@fedoraproject.org> 0.4.0-1
rdobuilder 30a0df
- Update to v0.4.0
rdobuilder 30a0df
rdobuilder 30a0df
* Fri Jun 25 2021 Zane Bitter <zaneb@fedoraproject.org> 0.3.1-1
rdobuilder 30a0df
- Update to v0.3.1 for easier packaging
rdobuilder 30a0df
rdobuilder 30a0df
* Fri Jun 25 2021 Zane Bitter <zaneb@fedoraproject.org> 0.3.0-2
rdobuilder 30a0df
- Support building for EPEL
rdobuilder 30a0df
rdobuilder 30a0df
* Fri Jun 18 2021 Zane Bitter <zaneb@fedoraproject.org> 0.3.0-1
rdobuilder 30a0df
- Initial build