forked from pool/python-pygraphviz
Update to 1.3.1 OBS-URL: https://build.opensuse.org/request/show/402455 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pygraphviz?expand=0&rev=8
68 lines
2.2 KiB
RPMSpec
68 lines
2.2 KiB
RPMSpec
#
|
|
# spec file for package python-pygraphviz
|
|
#
|
|
# Copyright (c) 2016 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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 http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: python-pygraphviz
|
|
Version: 1.3.1
|
|
Release: 0
|
|
Url: http://networkx.lanl.gov/pygraphviz
|
|
Summary: Python interface to Graphviz
|
|
License: BSD-3-Clause
|
|
Group: Development/Languages/Python
|
|
Source: https://pypi.python.org/packages/source/p/pygraphviz/pygraphviz-%{version}.tar.gz
|
|
# PATCH-FIX-UPSTREAM docdir.patch
|
|
Patch: docdir.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: graphviz-devel >= 2.16
|
|
BuildRequires: pkg-config
|
|
BuildRequires: python-nose
|
|
BuildRequires: python-devel
|
|
BuildRequires: python-setuptools
|
|
Requires: graphviz >= 2.16
|
|
%if 0%{?suse_version} <= 1110
|
|
%{!?python_sitearch: %global python_sitearch %(python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
|
|
%endif
|
|
|
|
%description
|
|
A Python wrapper for the Graphviz Agraph data structure.
|
|
PyGraphviz can be used to create and draw networks and graphs with Graphviz.
|
|
|
|
%prep
|
|
%setup -q -n pygraphviz-%{version}
|
|
%patch
|
|
|
|
%build
|
|
CFLAGS="%{optflags}" python setup.py build
|
|
|
|
%install
|
|
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
|
chmod +x %{buildroot}%{python_sitearch}/pygraphviz/tests/test.py
|
|
|
|
%check
|
|
pushd examples
|
|
PYTHONPATH=%{buildroot}%{python_sitearch} python -c "import pygraphviz;pygraphviz.test()"
|
|
popd
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc LICENSE README.rst
|
|
%{_docdir}/pygraphviz-%{version}
|
|
%{python_sitearch}/pygraphviz/
|
|
%{python_sitearch}/pygraphviz-%{version}-py*.egg-info
|
|
|
|
%changelog
|