diff --git a/osprofiler-3.4.0.tar.gz b/osprofiler-3.4.0.tar.gz deleted file mode 100755 index 7c52cb8fab1407c72a240f8ac2ba022776106e35..0000000000000000000000000000000000000000 Binary files a/osprofiler-3.4.0.tar.gz and /dev/null differ diff --git a/osprofiler-3.4.2.tar.gz b/osprofiler-3.4.2.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..9840390ec3af46c319fcd104a0e5bd3e0795ddb3 Binary files /dev/null and b/osprofiler-3.4.2.tar.gz differ diff --git a/python-osprofiler.spec b/python-osprofiler.spec old mode 100755 new mode 100644 index 305d321f2763fbdfaae02483910035c8a3a58248..68238bd095ed27e650a21aea685719478b40b148 --- a/python-osprofiler.spec +++ b/python-osprofiler.spec @@ -1,63 +1,62 @@ %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: 3.4.2 +Release: 1 +Summary: OpenStack Profiler Library +License: Apache-2.0 +URL: https://docs.openstack.org/osprofiler/latest/ +Source0: https://files.pythonhosted.org/packages/1b/ef/eb142236854f36fe80e71663560ed6b1f092f15af91dac202a601c008ee8/osprofiler-3.4.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-prettytable +BuildRequires: python3-webob +BuildRequires: python3-netaddr +BuildRequires: python3-oslo-concurrency +BuildRequires: python3-oslo-serialization +BuildRequires: python3-oslo-utils +BuildRequires: python3-requests +BuildRequires: python3-six +BuildRequires: python3-oslo-config +# General requires +Requires: python3-prettytable +Requires: python3-webob +Requires: python3-netaddr +Requires: python3-oslo-concurrency +Requires: python3-oslo-serialization +Requires: python3-oslo-utils +Requires: python3-requests +Requires: python3-six +Requires: python3-oslo-config %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,25 +64,26 @@ 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 . mv %{buildroot}/doclist.lst . + %files -n python3-osprofiler -f filelist.lst %dir %{python3_sitelib}/* @@ -91,6 +91,9 @@ mv %{buildroot}/doclist.lst . %{_docdir}/* %changelog +* Thu May 19 2022 OpenStack_SIG - 3.4.2-1 +- Upgrade package python3-osprofiler to version 3.4.2 + * Sat Jan 30 2021 zhangy - Add buildrequires * Thu Nov 19 2020 Python_Bot