Init Train release

(cherry picked from commit 3ed8596dabde9ea954f66ede14c20c700a6cd71e)
This commit is contained in:
wangxiyuan 2021-11-15 07:49:30 +00:00 committed by openeuler-sync-bot
parent f58e801d05
commit 5a208d094c
3 changed files with 80 additions and 52 deletions

BIN
osprofiler-2.8.2.tar.gz Normal file

Binary file not shown.

Binary file not shown.

132
python-osprofiler.spec Executable file → Normal file
View File

@ -1,63 +1,92 @@
%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: 2
Summary: OpenStack Profiler Library
License: Apache-2.0
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
Name: python-osprofiler
Version: 2.8.2
Release: 1
Summary: OpenStack Profiler Library
License: Apache-2.0
URL: https://docs.openstack.org/osprofiler/latest/
Source0: https://files.pythonhosted.org/packages/34/25/f31e0f19fe535eeb8c076155df641cd047cc7bec1230c49995e8742a62dc/osprofiler-2.8.2.tar.gz
BuildArch: noarch
%description
%{common_desc}
OSProfiler is an OpenStack cross-project profiling library.
%package -n python3-osprofiler
Summary: OpenStack Profiler Library
Provides: python-osprofiler
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-pip
Summary: OpenStack Profiler Library
Provides: python-osprofiler
# Base build requires
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-pbr
BuildRequires: python3-pip
BuildRequires: python3-wheel
# General requires
BuildRequires: python3-netaddr
BuildRequires: python3-oslo-concurrency
BuildRequires: python3-oslo-serialization
BuildRequires: python3-oslo-utils
BuildRequires: python3-prettytable
BuildRequires: python3-requests
BuildRequires: python3-six
BuildRequires: python3-webob
BuildRequires: python3-oslo-config
# Tests running requires
BuildRequires: python3-hacking
BuildRequires: python3-coverage
BuildRequires: python3-ddt
BuildRequires: python3-mock
BuildRequires: python3-stestr
BuildRequires: python3-testtools
BuildRequires: python3-openstackdocstheme
BuildRequires: python3-sphinx
BuildRequires: python3-bandit
BuildRequires: python3-pymongo
BuildRequires: python3-elasticsearch2
BuildRequires: python3-redis
BuildRequires: python3-reno
BuildRequires: python3-jaeger-client
# General requires
Requires: python3-netaddr
Requires: python3-oslo-concurrency
Requires: python3-oslo-serialization
Requires: python3-oslo-utils
Requires: python3-prettytable
Requires: python3-requests
Requires: python3-six
Requires: python3-webob
Requires: python3-oslo-config
# Tests running requires
Requires: python3-hacking
Requires: python3-coverage
Requires: python3-ddt
Requires: python3-mock
Requires: python3-stestr
Requires: python3-testtools
Requires: python3-openstackdocstheme
Requires: python3-sphinx
Requires: python3-bandit
Requires: python3-pymongo
Requires: python3-elasticsearch2
Requires: python3-redis
Requires: python3-reno
Requires: python3-jaeger-client
%description -n python3-osprofiler
OSProfiler is an OpenStack cross-project profiling library.
%package help
Summary: Development documents and examples for osprofiler
Provides: python3-osprofiler-doc
Summary: OpenStack Profiler Library
Provides: python3-osprofiler-doc
%description help
%{common_desc}
OSProfiler is an OpenStack cross-project profiling library.
%prep
%autosetup -n osprofiler-3.4.0
%autosetup -n osprofiler-%{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
@ -65,20 +94,20 @@ 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
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
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
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
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
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
fi
popd
mv %{buildroot}/filelist.lst .
@ -91,7 +120,6 @@ mv %{buildroot}/doclist.lst .
%{_docdir}/*
%changelog
* Sat Jan 30 2021 zhangy <zhangy1317@foxmail.com>
- Add buildrequires
* Thu Nov 19 2020 Python_Bot <Python_Bot@openeuler.org>
- Package Spec generated
* Mon Nov 15 2021 OpenStack_SIG <openstack@openeuler.org> - 2.8.2-1
- Init package python3-osprofiler of version 2.8.2