upgrade version to 1.2.2
This commit is contained in:
parent
c759edfb11
commit
d5c20332ef
@ -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
|
||||||
|
# Base build requires
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-setuptools
|
BuildRequires: python3-setuptools
|
||||||
|
BuildRequires: python3-pbr
|
||||||
|
BuildRequires: python3-pip
|
||||||
|
BuildRequires: python3-wheel
|
||||||
BuildRequires: python3-cffi
|
BuildRequires: python3-cffi
|
||||||
BuildRequires: gcc
|
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
|
||||||
@ -84,6 +72,9 @@ 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
BIN
setproctitle-1.2.2.tar.gz
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user