From f03b4d14897354eb788123ebf627bbaebfa306c5 Mon Sep 17 00:00:00 2001 From: siyongchang Date: Mon, 19 Aug 2024 07:55:45 +0000 Subject: [PATCH] Added 'Buildarch:noarch' to the help subpackage --- python-mypy.spec | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/python-mypy.spec b/python-mypy.spec index bfa12de..f3fb221 100644 --- a/python-mypy.spec +++ b/python-mypy.spec @@ -1,7 +1,7 @@ %global _empty_manifest_terminate_build 0 Name: python-mypy Version: 1.10.0 -Release: 1 +Release: 2 Summary: Optional static typing for Python License: MIT and Python-2.0 URL: https://github.com/python/mypy @@ -39,16 +39,8 @@ actually having to run it. Mypy has a powerful type system with features such as type inference, gradual typing, generics and union types. -%package help -Summary: Development documents and examples for mypy +%package_help Provides: python3-mypy-doc -%description help -Add type annotations to your Python programs, and use mypy to type -check them. Mypy is essentially a Python linter on steroids, and it -can catch many programming errors by analyzing your program, without -actually having to run it. Mypy has a powerful type system with -features such as type inference, gradual typing, generics and union -types. %prep %autosetup -n mypy-%{version} @@ -106,6 +98,9 @@ mv %{buildroot}/doclist.lst . %{_docdir}/* %changelog +* Mon Aug 19 2024 siyongchang - 1.10.0-2 +- Replaced declaration of help subpackage with the 'package_help' macro. + * Tue May 7 2024 tenglei - 1.10.0-1 - upgrade package to 1.10.0 - Enum private attributes are not enum members -- Gitee