From df54cf734e464f08a3b7fe34b0e2437377981843 Mon Sep 17 00:00:00 2001 From: tzing_t Date: Thu, 17 Aug 2023 15:41:54 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8DPython3.11.4=20=E7=BC=96?= =?UTF-8?q?=E8=AF=91=E5=A4=B1=E8=B4=A5=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- python-storage-interfaces.spec | 8 ++++++-- storage-interfaces.patch | 12 ++++++++++++ 2 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 storage-interfaces.patch diff --git a/python-storage-interfaces.spec b/python-storage-interfaces.spec index d803a7d..25145af 100644 --- a/python-storage-interfaces.spec +++ b/python-storage-interfaces.spec @@ -1,11 +1,12 @@ %global _empty_manifest_terminate_build 0 Name: python-storage-interfaces Version: 1.0.4 -Release: 1 +Release: 2 Summary: Abstract classes for representing storage-related objects License: BSD URL: https://github.com/Infinidat/storage_interfaces Source0: https://files.pythonhosted.org/packages/b1/35/e944f2465282afcfd3d715ce013276b70435b61eedbc44347158f021dda7/storage_interfaces-1.0.4.tar.gz +Patch001: storage-interfaces.patch BuildArch: noarch %description Abstract classes for representing storage-related objects @@ -37,7 +38,7 @@ Provides: python3-storage-interfaces-doc Abstract classes for representing storage-related objects %prep -%autosetup -n storage_interfaces-%{version} +%autosetup -n storage_interfaces-%{version} -p1 %build %py3_build @@ -81,5 +82,8 @@ mv %{buildroot}/doclist.lst . %{_docdir}/* %changelog +* Thu Aug 17 2023 zhengting - 1.0.4-2 +- DESC: fix conflict with storage-interfaces + * Fri Aug 06 2021 OpenStack_SIG - 1.0.4-1 - Package Spec generate \ No newline at end of file diff --git a/storage-interfaces.patch b/storage-interfaces.patch new file mode 100644 index 0000000..1ba1813 --- /dev/null +++ b/storage-interfaces.patch @@ -0,0 +1,12 @@ +diff --git a/setup.py b/setup.py +index 156f010..e280c4e 100644 +--- a/setup.py ++++ b/setup.py +@@ -4,6 +4,6 @@ from setuptools import setup + setup( + setup_requires=['pbr>=3.0', 'setuptools>=17.1'], + pbr=True, +- python_requires=">=3.5.*", ++ python_requires=">=3.5", + long_description_content_type='text/markdown; charset=UTF-8', + ) -- Gitee