python-osprofiler/python-osprofiler.spec
2021-01-15 15:03:53 +08:00

94 lines
2.5 KiB
RPMSpec
Executable File

%global _empty_manifest_terminate_build 0
%global common_desc OSProfiler is an OpenStack cross-project profiling library.
Name: python-osprofiler
Version: 3.4.0
Release: 1
Summary: OpenStack Profiler Library
License: Apache Software License
URL: https://docs.openstack.org/osprofiler/latest/
Source0: https://files.pythonhosted.org/packages/65/bf/522be8a13218cb633b9fd1a3e13292b6c676a9af22575415b9de77d78b83/osprofiler-3.4.0.tar.gz
BuildArch: noarch
Requires: python3-prettytable
Requires: python3-webob
Requires: python3-netaddr
Requires: python3-requests
Requires: python3-six
Requires: python3-importlib-metadata
Requires: python3-bandit
Requires: python3-coverage
Requires: python3-ddt
Requires: python3-elasticsearch
Requires: python3-flake8-import-order
Requires: python3-hacking
Requires: python3-jaeger-client
Requires: python3-openstackdocstheme
Requires: python3-pymongo
Requires: python3-redis
Requires: python3-reno
Requires: python3-sphinx
Requires: python3-stestr
Requires: python3-testtools
%description
%{common_desc}
%package -n python3-osprofiler
Summary: OpenStack Profiler Library
Provides: python-osprofiler
BuildRequires: python3-devel
BuildRequires: python3-setuptools
%description -n python3-osprofiler
%package help
Summary: Development documents and examples for osprofiler
Provides: python3-osprofiler-doc
%description help
%{common_desc}
%prep
%autosetup -n osprofiler-3.4.0
%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-osprofiler -f filelist.lst
%dir %{python3_sitelib}/*
%files help -f doclist.lst
%{_docdir}/*
%changelog
* Thu Nov 19 2020 Python_Bot <Python_Bot@openeuler.org>
- Package Spec generated