!5 upgrade version to 1.2.2 for python-setproctitle

From: @yaozc701
Reviewed-by: @shinwell_hu
Signed-off-by: @shinwell_hu
This commit is contained in:
openeuler-ci-bot 2021-08-09 12:46:59 +00:00 committed by Gitee
commit 288a90142e
3 changed files with 44 additions and 50 deletions

View File

@ -1,63 +1,51 @@
%global _empty_manifest_terminate_build 0 %global _empty_manifest_terminate_build 0
Name: python-setproctitle Name: python-setproctitle
Version: 1.2.1 Version: 1.2.2
Release: 2 Release: 1
Summary: A Python module to customize the process title Summary: A Python module to customize the process title
License: BSD License: BSD
URL: https://github.com/dvarrazzo/py-setproctitle URL: https://github.com/dvarrazzo/py-setproctitle
Source0: https://files.pythonhosted.org/packages/a7/e1/e76b903af017cc4a99f823b5e4235c1136dcca6902e6b7ee4d545958ba8c/setproctitle-1.2.1.tar.gz Source0: https://files.pythonhosted.org/packages/a1/7f/a1d4f4c7b66f0fc02f35dc5c85f45a8b4e4a7988357a29e61c14e725ef86/setproctitle-1.2.2.tar.gz
Requires: python3-pytest
%description %description
The setproctitle module allows a process to change its title (as displayed A Python module to customize the process title
by system tools such as ps and top).
Changing the title is mostly useful in multi-process systems, for example
when a master process is forked: changing the children's title allows to
identify the task each process is busy with. The technique is used by
PostgreSQL and the OpenSSH Server for example.
The procedure is hardly portable across different systems. PostgreSQL provides
a good multi-platform implementation: this module is a Python wrapper
around PostgreSQL code.
%package -n python3-setproctitle %package -n python3-setproctitle
Summary: A Python module to customize the process title Summary: A Python module to customize the process title
Provides: python-setproctitle Provides: python-setproctitle
BuildRequires: python3-devel # Base build requires
BuildRequires: python3-setuptools BuildRequires: python3-devel
BuildRequires: python3-cffi BuildRequires: python3-setuptools
BuildRequires: gcc BuildRequires: python3-pbr
BuildRequires: python3-pip
BuildRequires: python3-wheel
BuildRequires: python3-cffi
BuildRequires: gcc
# Tests running requires
BuildRequires: python3-pytest
BuildRequires: python3-setproctitle
Requires: python3-pytest
%description -n python3-setproctitle %description -n python3-setproctitle
The setproctitle module allows a process to change its title (as displayed A Python module to customize the process title
by system tools such as ps and top).
Changing the title is mostly useful in multi-process systems, for example
when a master process is forked: changing the children's title allows to
identify the task each process is busy with. The technique is used by
PostgreSQL and the OpenSSH Server for example.
The procedure is hardly portable across different systems. PostgreSQL provides
a good multi-platform implementation: this module is a Python wrapper
around PostgreSQL code.
%package help %package help
Summary: Development documents and examples for setproctitle Summary: A Python module to customize the process title
Provides: python3-setproctitle-doc Provides: python3-setproctitle-doc
%description help %description help
The setproctitle module allows a process to change its title (as displayed A Python module to customize the process title
by system tools such as ps and top).
Changing the title is mostly useful in multi-process systems, for example
when a master process is forked: changing the children's title allows to
identify the task each process is busy with. The technique is used by
PostgreSQL and the OpenSSH Server for example.
The procedure is hardly portable across different systems. PostgreSQL provides
a good multi-platform implementation: this module is a Python wrapper
around PostgreSQL code.
%prep %prep
%autosetup -n setproctitle-1.2.1 %autosetup -n setproctitle-%{version}
%build %build
%py3_build %py3_build
%install %install
%py3_install %py3_install
install -d -m755 %{buildroot}/%{_pkgdocdir} install -d -m755 %{buildroot}/%{_pkgdocdir}
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
@ -65,25 +53,28 @@ if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
pushd %{buildroot} pushd %{buildroot}
if [ -d usr/lib ]; then 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 fi
if [ -d usr/lib64 ]; then 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 fi
if [ -d usr/bin ]; then 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 fi
if [ -d usr/sbin ]; then 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 fi
touch doclist.lst touch doclist.lst
if [ -d usr/share/man ]; then 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 fi
popd popd
mv %{buildroot}/filelist.lst . mv %{buildroot}/filelist.lst .
mv %{buildroot}/doclist.lst . mv %{buildroot}/doclist.lst .
%check
%{__python3} -m pytest
%files -n python3-setproctitle -f filelist.lst %files -n python3-setproctitle -f filelist.lst
%dir %{python3_sitearch}/* %dir %{python3_sitearch}/*
@ -91,6 +82,9 @@ mv %{buildroot}/doclist.lst .
%{_docdir}/* %{_docdir}/*
%changelog %changelog
* Mon Aug 09 2021 OpenStack_SIG <openstack@openeuler.org> - 1.2.2-1
- Upgrade version to 1.2.2
* Wed Aug 04 2021 chenyanpanHW <chenyanpan@huawei.com> - 1.2.1-2 * Wed Aug 04 2021 chenyanpanHW <chenyanpan@huawei.com> - 1.2.1-2
- DESC: delete BuildRequires gdb - DESC: delete BuildRequires gdb

Binary file not shown.

BIN
setproctitle-1.2.2.tar.gz Normal file

Binary file not shown.