%global srcname kiwisolver Name: python-%{srcname} Version: 1.0.1 Release: 3%{?dist} Summary: A fast implementation of the Cassowary constraint solver License: BSD URL: https://github.com/nucleic/kiwi Source0: https://github.com/nucleic/kiwi/archive/%{version}/%{srcname}-%{version}.tar.gz %global _description \ Kiwi is an efficient C++ implementation of the Cassowary constraint solving \ algorithm. Kiwi is an implementation of the algorithm based on the seminal \ Cassowary paper. It is *not* a refactoring of the original C++ solver. Kiwi has \ been designed from the ground up to be lightweight and fast. %description %{_description} %package -n python3-%{srcname} Summary: %{summary} %{?python_provide:%python_provide python3-%{srcname}} BuildRequires: python3-devel BuildRequires: python3-setuptools BuildRequires: python3-pytest %description -n python3-%{srcname} %{_description} %prep %autosetup -n kiwi-%{version} # Remove bundled egg-info rm -rf %{srcname}.egg-info %build %py3_build %install %py3_install %check PYTHONPATH="%{buildroot}%{python3_sitearch}" \ %{__python3} -m pytest py/tests/ %files -n python3-%{srcname} %doc README.rst %license COPYING.txt %{python3_sitearch}/%{srcname}.cpython-*.so %{python3_sitearch}/%{srcname}-%{version}-py?.?.egg-info %changelog * Wed Mar 06 2019 Lon Hohberger - 1.0.1-3 - Rebuild for new architectures * Mon Jun 04 2018 Petr Viktorin - 1.0.1-2 - Drop the Python2 subpackage * Sat Feb 03 2018 Elliott Sales de Andrade - 1.0.1-1 - Initial package.