From 72e06b73d69e5c042af7a65ba37ddb88fa07462a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E7=8E=BA=E6=BA=90?= Date: Wed, 2 Mar 2022 01:52:51 +0000 Subject: [PATCH] Fix require issue --- python-debtcollector.spec | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/python-debtcollector.spec b/python-debtcollector.spec index 7ca03ef..5e907bc 100644 --- a/python-debtcollector.spec +++ b/python-debtcollector.spec @@ -1,20 +1,16 @@ +%global __requires_exclude python3.9dist\(wrapt\) %global _empty_manifest_terminate_build 0 Name: python-debtcollector Version: 2.2.0 -Release: 3 +Release: 4 Summary: A collection of Python deprecation patterns and strategies that help you collect your technical debt in a non-destructive manner. License: Apache-2.0 URL: https://docs.openstack.org/debtcollector/latest Source0: https://files.pythonhosted.org/packages/43/db/878dd456ccdbba6e466fc91e2534fd183a345a3fe261c4780a0e46c6dab0/debtcollector-2.2.0.tar.gz BuildArch: noarch -Requires: python3-pbr -Requires: python3-six -Requires: python3-wrapt >= 1.12 - %description - %package -n python3-debtcollector Summary: A collection of Python deprecation patterns and strategies that help you collect your technical debt in a non-destructive manner. Provides: python-debtcollector @@ -22,7 +18,10 @@ BuildRequires: python3-devel BuildRequires: python3-setuptools BuildRequires: python3-pip BuildRequires: python3-pbr -BuildRequires: python3-wrapt >= 1.12 +BuildRequires: python3-wrapt +Requires: python3-pbr +Requires: python3-six +Requires: python3-wrapt %description -n python3-debtcollector @@ -74,6 +73,9 @@ mv %{buildroot}/doclist.lst . %{_docdir}/* %changelog +* Wed Mar 02 2022 wangxiyuan - 2.2.0-4 +- Fix require issue + * Tue Mar 01 2022 huangtianhua - 2.2.0-3 - Adds python3-wrapt as buildrequies and specify the version -- Gitee