You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
python-jaraco-classes/python-jaraco-classes.spec

97 lines
2.6 KiB

6 years ago
# Created by pyp2rpm-3.3.2
6 years ago
%global pkg_name jaraco-classes
%global pypi_name jaraco.classes
6 years ago
# waiting on jaraco-packaging and rst-linker to build docs
%bcond_with doc
6 years ago
Name: python-%{pkg_name}
6 years ago
Version: 2.0
6 years ago
Release: 2%{?dist}
6 years ago
Summary: Utility functions for Python class constructs
License: MIT
URL: https://github.com/jaraco/jaraco.classes
6 years ago
Source0: %{pypi_source %{pypi_name}}
6 years ago
BuildArch: noarch
%description
Utility functions for Python class constructs.
6 years ago
%package -n python3-%{pkg_name}
6 years ago
Summary: %{summary}
Requires: python3-jaraco
Requires: python3dist(six)
BuildConflicts: python3dist(pytest) = 3.7.3
BuildRequires: python3-devel
BuildRequires: python3dist(pytest) >= 3.5
BuildRequires: python3dist(pytest-flake8)
BuildRequires: python3dist(setuptools)
BuildRequires: python3dist(setuptools-scm) >= 1.15
6 years ago
6 years ago
%{?python_provide:%python_provide python3-%{pkg_name}}
6 years ago
6 years ago
%description -n python3-%{pkg_name}
6 years ago
Utility functions for Python class constructs.
%if %{with docs}
6 years ago
%package -n python-%{pkg_name}-doc
6 years ago
Summary: jaraco-classes documentation
BuildRequires: python3dist(pytest-checkdocs)
BuildRequires: python3dist(sphinx)
BuildRequires: python3dist(jaraco-packaging) >= 3.2
BuildRequires: python3dist(rst-linker) >= 1.9
6 years ago
%description -n python-%{pkg_name}-doc
6 years ago
Documentation for jaraco-classes
%endif
%prep
%autosetup -n jaraco.classes-%{version}
# Remove bundled egg-info
6 years ago
rm -rf %{pkg_name}.egg-info
# rename package to use a -
sed -i 's/%{pypi_name}/%{pkg_name}/' setup.cfg
6 years ago
# disable flake8 in the tests, 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'
sed -i 's/ --flake8//' pytest.ini
6 years ago
%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}
%endif
%install
%py3_install
%check
6 years ago
LANG=C.utf-8 %{__python3} -m pytest --ignore=build
6 years ago
6 years ago
%files -n python3-%{pkg_name}
6 years ago
%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
6 years ago
%{python3_sitelib}/jaraco_classes-%{version}-py?.?.egg-info
6 years ago
%if %{with docs}
6 years ago
%files -n python-%{pkg_name}-doc
6 years ago
%doc html
%license LICENSE
%endif
%changelog
6 years ago
* Mon Apr 08 2019 Dan Radez <dradez@redhat.com> - 2.0-2
- fixed egg info
6 years ago
* Tue Apr 02 2019 Dan Radez <dradez@redhat.com> - 2.0-1
- Initial package.