diff --git a/python-storage-interfaces.spec b/python-storage-interfaces.spec index d803a7de165b5daeb2328e1b372d08dfe55d6a7d..25145afaaa5ec259d8ef8910f14085aee8e81e3c 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 0000000000000000000000000000000000000000..1ba181385beca6a0dd8306716d88430003db8828 --- /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', + )