python-setproctitle/python-setproctitle.spec
2022-03-04 09:34:14 +00:00

95 lines
2.8 KiB
RPMSpec

%global _empty_manifest_terminate_build 0
Name: python-setproctitle
Version: 1.2.2
Release: 2
Summary: A Python module to customize the process title
License: BSD
URL: https://github.com/dvarrazzo/py-setproctitle
Source0: https://files.pythonhosted.org/packages/a1/7f/a1d4f4c7b66f0fc02f35dc5c85f45a8b4e4a7988357a29e61c14e725ef86/setproctitle-1.2.2.tar.gz
%description
A Python module to customize the process title
%package -n python3-setproctitle
Summary: A Python module to customize the process title
Provides: python-setproctitle
# Base build requires
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-pbr
BuildRequires: python3-pip
BuildRequires: python3-wheel
BuildRequires: python3-cffi
BuildRequires: gcc
# Tests running requires
BuildRequires: python3-pytest
Requires: python3-pytest
%description -n python3-setproctitle
A Python module to customize the process title
%package help
Summary: A Python module to customize the process title
Provides: python3-setproctitle-doc
%description help
A Python module to customize the process title
%prep
%autosetup -n setproctitle-%{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
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 .
#%check
#PYTHONPATH=$PYTHONPATH:./build/lib.linux-%{_arch}-%{python3_version} %{__python3} -m pytest
%files -n python3-setproctitle -f filelist.lst
%dir %{python3_sitearch}/*
%files help -f doclist.lst
%{_docdir}/*
%changelog
* Fri Mar 04 2022 wangxiyuan <wangxiyuan1007@gmail.com> - 1.2.2-2
- setproctitle requires pytest>=6.1,<6.2 for test running, while pytest is 6.2.2 currently. Disable the check part.
* 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
- DESC: delete BuildRequires gdb
* Wed Jan 06 2021 Python_Bot <Python_Bot@openeuler.org>
- Package Spec generated