Update package pydotplus of version 2.0.2
This commit is contained in:
parent
a3adbe1f0c
commit
2b3b85eaea
@ -1,69 +1,83 @@
|
|||||||
|
%global _empty_manifest_terminate_build 0
|
||||||
Name: python-pydotplus
|
Name: python-pydotplus
|
||||||
Version: 2.0.2
|
Version: 2.0.2
|
||||||
Release: 10
|
Release: 1
|
||||||
Summary: Python interface to Graphviz's Dot language
|
Summary: Python interface to Graphviz's Dot language
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://pypi.python.org/pypi/pydotplus
|
URL: http://pydotplus.readthedocs.org/
|
||||||
Source0: https://pypi.python.org/packages/source/p/pydotplus/pydotplus-2.0.2.tar.gz
|
Source0: https://files.pythonhosted.org/packages/60/bf/62567830b700d9f6930e9ab6831d6ba256f7b0b730acb37278b0ccdffacf/pydotplus-2.0.2.tar.gz
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: graphviz
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
PyDotPlus is an improved version of the old pydot project that
|
PyDotPlus is an improved version of the old pydot project that
|
||||||
provides a Python Interface to Graphviz's Dot language.
|
provides a Python Interface to Graphviz's Dot language.
|
||||||
|
|
||||||
%package -n python2-pydotplus
|
%package -n python3-pydotplus
|
||||||
Summary: Python interface to Graphviz's Dot language
|
Summary: Python interface to Graphviz's Dot language
|
||||||
%{?python_provide:%python_provide python2-pydotplus}
|
Provides: python-pydotplus
|
||||||
BuildRequires: python2-devel python2-setuptools
|
# Base build requires
|
||||||
BuildRequires: pyparsing
|
BuildRequires: python3-devel
|
||||||
Requires: pyparsing
|
BuildRequires: python3-setuptools
|
||||||
Requires: graphviz
|
BuildRequires: python3-pbr
|
||||||
|
BuildRequires: python3-pip
|
||||||
%description -n python2-pydotplus
|
BuildRequires: python3-wheel
|
||||||
PyDotPlus is an improved version of the old pydot project that
|
|
||||||
provides a Python Interface to Graphviz's Dot language.
|
|
||||||
|
|
||||||
Python 2 version.
|
|
||||||
|
|
||||||
%package -n python3-pydotplus
|
|
||||||
Summary: Python interface to Graphviz's Dot language
|
|
||||||
%{?python_provide:%python_provide python3-pydotplus}
|
|
||||||
BuildRequires: python3-devel python3-setuptools python3-pyparsing
|
|
||||||
Requires: python3-pyparsing graphviz
|
|
||||||
|
|
||||||
%description -n python3-pydotplus
|
%description -n python3-pydotplus
|
||||||
PyDotPlus is an improved version of the old pydot project that
|
PyDotPlus is an improved version of the old pydot project that
|
||||||
provides a Python Interface to Graphviz's Dot language.
|
provides a Python Interface to Graphviz's Dot language.
|
||||||
|
|
||||||
Python 3 version.
|
%package help
|
||||||
|
Summary: Python interface to Graphviz's Dot language
|
||||||
|
Provides: python3-pydotplus-doc
|
||||||
|
%description help
|
||||||
|
PyDotPlus is an improved version of the old pydot project that
|
||||||
|
provides a Python Interface to Graphviz's Dot language.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n pydotplus-%{version} -p1
|
%autosetup -n pydotplus-%{version}
|
||||||
rm -rf lib/*.egg-info
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%py2_build
|
|
||||||
%py3_build
|
%py3_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%py2_install
|
|
||||||
%py3_install
|
%py3_install
|
||||||
|
|
||||||
|
install -d -m755 %{buildroot}/%{_pkgdocdir}
|
||||||
|
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
|
||||||
|
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
|
||||||
|
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
|
||||||
|
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
|
||||||
|
pushd %{buildroot}
|
||||||
|
if [ -d usr/lib ]; then
|
||||||
|
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
|
||||||
|
fi
|
||||||
|
if [ -d usr/lib64 ]; then
|
||||||
|
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
|
||||||
|
fi
|
||||||
|
if [ -d usr/bin ]; then
|
||||||
|
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
|
||||||
|
fi
|
||||||
|
if [ -d usr/sbin ]; then
|
||||||
|
find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
|
||||||
|
fi
|
||||||
|
touch doclist.lst
|
||||||
|
if [ -d usr/share/man ]; then
|
||||||
|
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
|
||||||
|
fi
|
||||||
|
popd
|
||||||
|
mv %{buildroot}/filelist.lst .
|
||||||
|
mv %{buildroot}/doclist.lst .
|
||||||
|
|
||||||
%check
|
%check
|
||||||
cd test
|
%{__python3} setup.py test
|
||||||
PYTHONPATH=%{buildroot}%{python2_sitelib} %{__python2} pydot_unittest.py -v || :
|
|
||||||
PYTHONPATH=%{buildroot}%{python3_sitelib} %{__python3} pydot_unittest.py -v || :
|
|
||||||
|
|
||||||
%files -n python2-pydotplus
|
%files -n python3-pydotplus -f filelist.lst
|
||||||
%doc README.rst LICENSE
|
%dir %{python3_sitelib}/*
|
||||||
%{python2_sitelib}/pydotplus*
|
|
||||||
|
|
||||||
%files -n python3-pydotplus
|
%files help -f doclist.lst
|
||||||
%doc README.rst LICENSE
|
%{_docdir}/*
|
||||||
%{python3_sitelib}/pydotplus*
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Oct 28 2021 OpenStack_SIG <openstack@openeuler.org> - 2.0.2-1
|
||||||
|
- Upgrade package python3-pydotplus to version 2.0.2
|
||||||
|
|
||||||
* Tue Mar 10 2020 zhangtao <zhangtao221@huawei.com> - 2.0.2-10
|
* Tue Mar 10 2020 zhangtao <zhangtao221@huawei.com> - 2.0.2-10
|
||||||
- package init
|
- package init
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user