Update package cliff of version 3.10.1

This commit is contained in:
huangtianhua 2022-07-12 16:38:11 +08:00
parent 187062c98a
commit 6b1f5791ed
3 changed files with 10 additions and 7 deletions

BIN
cliff-3.10.1.tar.gz Normal file

Binary file not shown.

Binary file not shown.

View File

@ -1,11 +1,11 @@
%global _empty_manifest_terminate_build 0
Name: python-cliff
Version: 3.7.0
Version: 3.10.1
Release: 1
Summary: Command Line Interface Formulation Framework
License: Apache-2.0
URL: https://docs.openstack.org/cliff/latest/
Source0: https://files.pythonhosted.org/packages/24/fd/49d46908eb2cf67e4fcd304aab2b295b8269e2fe62461fd6fb9b9a1e6e1c/cliff-3.7.0.tar.gz
Source0: https://files.pythonhosted.org/packages/71/33/0115d1f56dce6bc9f4f4b394347c52a7182109026d2c25d8837047e3edee/cliff-3.10.1.tar.gz
BuildArch: noarch
%description
cliff is a framework for building command line programs. It uses
@ -23,18 +23,18 @@ BuildRequires: python3-wheel
# General requires
BuildRequires: python3-prettytable
BuildRequires: python3-pyyaml
BuildRequires: python3-autopage
BuildRequires: python3-cmd2
BuildRequires: python3-pyparsing
BuildRequires: python3-stevedore
BuildRequires: python3-bandit
# General requires
Requires: python3-prettytable
Requires: python3-pyyaml
Requires: python3-autopage
Requires: python3-cmd2
Requires: python3-pbr
Requires: python3-pyparsing
Requires: python3-stevedore
Requires: python3-bandit
%description -n python3-cliff
cliff is a framework for building command line programs. It uses
entry points to provide subcommands, output formatters, and other extensions.
@ -47,14 +47,14 @@ cliff is a framework for building command line programs. It uses
entry points to provide subcommands, output formatters, and other extensions.
%prep
%autosetup -n cliff-3.7.0
%autosetup -n cliff-%{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
@ -81,14 +81,17 @@ popd
mv %{buildroot}/filelist.lst .
mv %{buildroot}/doclist.lst .
%files -n python3-cliff -f filelist.lst
%dir %{python3_sitelib}/*
%files help -f doclist.lst
%{_docdir}/*
%changelog
* Tue Jul 12 2022 OpenStack_SIG <openstack@openeuler.org> - 3.10.1-1
- Upgrade package python3-cliff to version 3.10.1
* Tue Jul 13 2021 OpenStack_SIG <openstack@openeuler.org> - 3.7.0-1
- Upgrade to version 3.7.0
* Sat Jan 30 2021 zhangy <zhangy1317@foxmail.com>