78 lines
2.5 KiB
RPMSpec
78 lines
2.5 KiB
RPMSpec
|
|
#
|
||
|
|
# spec file for package python-transitions
|
||
|
|
#
|
||
|
|
# Copyright (c) 2025 SUSE LLC
|
||
|
|
# Copyright (c) 2019-2021, Martin Hauke <mardnh@gmx.de>
|
||
|
|
#
|
||
|
|
# All modifications and additions to the file contributed by third parties
|
||
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
||
|
|
# upon. The license for this file, and modifications and additions to the
|
||
|
|
# file, is the same license as for the pristine package itself (unless the
|
||
|
|
# license for the pristine package is not an Open Source License, in which
|
||
|
|
# case the license is the MIT License). An "Open Source License" is a
|
||
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||
|
|
# published by the Open Source Initiative.
|
||
|
|
|
||
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||
|
|
#
|
||
|
|
|
||
|
|
|
||
|
|
%{?sle15_python_module_pythons}
|
||
|
|
Name: python-transitions
|
||
|
|
Version: 0.9.2
|
||
|
|
Release: 0
|
||
|
|
Summary: A lightweight, object-oriented Python state machine implementation
|
||
|
|
License: MIT
|
||
|
|
URL: https://github.com/pytransitions/transitions
|
||
|
|
Source: https://files.pythonhosted.org/packages/source/t/transitions/transitions-%{version}.tar.gz
|
||
|
|
# PATCH-FIX-UPSTREAM https://github.com/pytransitions/transitions/pull/653 remove Python 2 crumbs
|
||
|
|
Patch0: remove-py2-crumbs.patch
|
||
|
|
# PATCH-FIX-UPSTREAM https://github.com/a-detiste/transitions/pull/1 remove more python crumbs
|
||
|
|
Patch1: iteritems.patch
|
||
|
|
BuildRequires: %{python_module pip}
|
||
|
|
BuildRequires: %{python_module setuptools}
|
||
|
|
BuildRequires: %{python_module wheel}
|
||
|
|
BuildRequires: fdupes
|
||
|
|
BuildRequires: python-rpm-macros
|
||
|
|
Suggests: python-pygraphviz
|
||
|
|
Suggests: python-pytest
|
||
|
|
BuildArch: noarch
|
||
|
|
# SECTION test requirements
|
||
|
|
BuildRequires: %{python_module dill}
|
||
|
|
BuildRequires: %{python_module graphviz}
|
||
|
|
BuildRequires: %{python_module pycodestyle}
|
||
|
|
BuildRequires: %{python_module pygraphviz}
|
||
|
|
BuildRequires: %{python_module pytest}
|
||
|
|
# png support for graphviz
|
||
|
|
BuildRequires: graphviz-gnome
|
||
|
|
BuildRequires: noto-sans-fonts
|
||
|
|
# /SECTION
|
||
|
|
%python_subpackages
|
||
|
|
|
||
|
|
%description
|
||
|
|
The transitions package makes it convenient and relatively easy to define and
|
||
|
|
implement FSMs (finite state machines) in python.
|
||
|
|
|
||
|
|
%prep
|
||
|
|
%autosetup -p 1 -n transitions-%{version}
|
||
|
|
find . -type f -exec chmod -x {} \;
|
||
|
|
sed -i 's/\r$//' LICENSE Changelog.md README.md
|
||
|
|
|
||
|
|
%build
|
||
|
|
%pyproject_wheel
|
||
|
|
|
||
|
|
%install
|
||
|
|
%pyproject_install
|
||
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||
|
|
|
||
|
|
%check
|
||
|
|
%pytest -k "not TestCodeFormat"
|
||
|
|
|
||
|
|
%files %{python_files}
|
||
|
|
%license LICENSE
|
||
|
|
%doc Changelog.md README.md
|
||
|
|
%{python_sitelib}/transitions
|
||
|
|
%{python_sitelib}/transitions-%{version}.dist-info
|
||
|
|
|
||
|
|
%changelog
|