python-pydotplus/python-pydotplus.spec
2021-11-10 06:44:22 +00:00

83 lines
2.6 KiB
RPMSpec

%global _empty_manifest_terminate_build 0
Name: python-pydotplus
Version: 2.0.2
Release: 2
Summary: Python interface to Graphviz's Dot language
License: MIT
URL: http://pydotplus.readthedocs.org/
Source0: https://files.pythonhosted.org/packages/60/bf/62567830b700d9f6930e9ab6831d6ba256f7b0b730acb37278b0ccdffacf/pydotplus-2.0.2.tar.gz
BuildArch: noarch
%description
PyDotPlus is an improved version of the old pydot project that
provides a Python Interface to Graphviz's Dot language.
%package -n python3-pydotplus
Summary: Python interface to Graphviz's Dot language
Provides: python-pydotplus
# Base build requires
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-pbr
BuildRequires: python3-pip
BuildRequires: python3-wheel
%description -n python3-pydotplus
PyDotPlus is an improved version of the old pydot project that
provides a Python Interface to Graphviz's Dot language.
%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
%autosetup -n pydotplus-%{version}
%build
%py3_build
%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 .
%files -n python3-pydotplus -f filelist.lst
%dir %{python3_sitelib}/*
%files help -f doclist.lst
%{_docdir}/*
%changelog
* Wed Nov 10 2021 OpenStack_SIG <openstack@openeuler.org> - 2.0.2-2
- Remove test part
* 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
- package init