!1 Update package python-congressclient of version 1.13.0

From: @sean-lau
Reviewed-by: @xiyuanwang
Signed-off-by: @xiyuanwang
This commit is contained in:
openeuler-ci-bot 2021-11-09 11:15:53 +00:00 committed by Gitee
commit 7f0d82aba1
2 changed files with 104 additions and 0 deletions

Binary file not shown.

104
python-congressclient.spec Normal file
View File

@ -0,0 +1,104 @@
%global _empty_manifest_terminate_build 0
Name: python-congressclient
Version: 1.13.0
Release: 1
Summary: Client for Congress
License: Apache-2.0
URL: https://docs.openstack.org/python-congressclient/latest/
Source0: https://files.pythonhosted.org/packages/96/f4/2b697c00b065daf1dedca80c96fe3f4e7dd8c2f64dbaf96c96ff128f96d7/python-congressclient-1.13.0.tar.gz
BuildArch: noarch
%description
Team and repository tags .. Change things from this point on python-
congressclient Client for CongressFree software: Apache license Documentation:
Source: Bugs: Client for Standalone Congress Install the Congress CLI by cloning
the repository and running the setup file.
%package -n python3-congressclient
Summary: Client for Congress
Provides: python-congressclient
# Base build requires
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-pbr
BuildRequires: python3-pip
BuildRequires: python3-wheel
# General requires
BuildRequires: python3-babel
BuildRequires: python3-cliff
BuildRequires: python3-keystoneauth1
BuildRequires: python3-oslo-i18n
BuildRequires: python3-oslo-log
BuildRequires: python3-oslo-serialization
BuildRequires: python3-six
# General requires
Requires: python3-pbr
Requires: python3-babel
Requires: python3-cliff
Requires: python3-keystoneauth1
Requires: python3-oslo-i18n
Requires: python3-oslo-log
Requires: python3-oslo-serialization
Requires: python3-six
%description -n python3-congressclient
Team and repository tags .. Change things from this point on python-
congressclient Client for CongressFree software: Apache license Documentation:
Source: Bugs: Client for Standalone Congress Install the Congress CLI by cloning
the repository and running the setup file.
%package help
Summary: Client for Congress
Provides: python3-congressclient-doc
%description help
Team and repository tags .. Change things from this point on python-
congressclient Client for CongressFree software: Apache license Documentation:
Source: Bugs: Client for Standalone Congress Install the Congress CLI by cloning
the repository and running the setup file.
%prep
%autosetup -n python-congressclient-%{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
%{__python3} setup.py test
%files -n python3-congressclient -f filelist.lst
%dir %{python3_sitelib}/*
%files help -f doclist.lst
%{_docdir}/*
%changelog
* Fri Nov 05 2021 OpenStack_SIG <openstack@openeuler.org> - 1.13.0-1
- Init package python3-congressclient of version 1.13.0