forked from pool/python-pydot3
Matej Cepl
9a997f1e89
- work with python3 - added patches fix https://github.com/log0/pydot3/pull/5 + python-pydot3-python3.patch OBS-URL: https://build.opensuse.org/request/show/957383 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pydot3?expand=0&rev=7
65 lines
2.0 KiB
RPMSpec
65 lines
2.0 KiB
RPMSpec
#
|
|
# spec file
|
|
#
|
|
# Copyright (c) 2022 SUSE LLC
|
|
# Copyright (c) 2017 Dr. Axel Braun
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
|
|
%define modname pydot3
|
|
Name: python-%{modname}
|
|
Version: 1.0.9
|
|
Release: 0
|
|
Summary: Create (dot) graphs from python
|
|
License: MIT
|
|
Group: Development/Libraries/Python
|
|
URL: https://pypi.python.org/pypi/pydot3
|
|
Source: https://files.pythonhosted.org/packages/source/p/%{modname}/%{modname}-%{version}.tar.gz
|
|
Source1: example-demo.py
|
|
Source2: example-rank.py
|
|
# https://github.com/log0/pydot3/pull/5
|
|
Patch0: python-pydot3-python3.patch
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: python-rpm-macros
|
|
Requires: graphviz
|
|
Requires: python-pyparsing
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
pydot allows to easily create both directed and non directed graphs from Python.
|
|
Currently all attributes implemented in the Dot language are supported (up to Graphviz 2.16).
|
|
|
|
%prep
|
|
%setup -q -n %{modname}-%{version}
|
|
%patch0 -p1
|
|
|
|
mkdir examples && cp %{SOURCE1} %{SOURCE2} examples
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
rm -rf %{buildroot}%{_prefix}/{LICENSE,README,README.md} # Wrongly installed by setup script
|
|
|
|
%files %{python_files}
|
|
%defattr(-,root,root,-)
|
|
%doc LICENSE examples README.md
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|