diff --git a/fix-kiwisolver-version.patch b/fix-kiwisolver-version.patch new file mode 100644 index 0000000..10a8325 --- /dev/null +++ b/fix-kiwisolver-version.patch @@ -0,0 +1,42 @@ +--- kiwisolver-1.4.4/setup.py 2022-07-16 04:13:35.000000000 +0800 ++++ kiwisolver-1.4.1/setup.py 2022-03-27 23:36:05.000000000 +0800 +@@ -44,6 +44,39 @@ + + + setup( ++ # FIXME remove once setuptool supports PEP 621 ++ name="kiwisolver", ++ author="The Nucleic Development Team", ++ author_email="sccolbert@gmail.com", ++ url="https://github.com/nucleic/kiwi", ++ description="A fast implementation of the Cassowary constraint solver", ++ long_description=open("README.rst").read(), ++ license="BSD", ++ classifiers=[ ++ # https://pypi.org/pypi?%3Aaction=list_classifiers ++ "License :: OSI Approved :: BSD License", ++ "Programming Language :: Python", ++ "Programming Language :: Python :: 3", ++ "Programming Language :: Python :: 3.7", ++ "Programming Language :: Python :: 3.8", ++ "Programming Language :: Python :: 3.9", ++ "Programming Language :: Python :: 3.10", ++ "Programming Language :: Python :: Implementation :: CPython", ++ "Programming Language :: Python :: Implementation :: PyPy", ++ ], ++ python_requires=">=3.7", ++ # FIXME end of remove once setuptool supports PEP 621 ++ setup_requires=[ ++ "setuptools>=42", ++ "wheel", ++ "setuptools_scm[toml]>=3.4.3", ++ "cppy>=1.2.0", ++ ], ++ package_dir={"": "py"}, ++ packages=["kiwisolver"], ++ install_requires=["typing_extensions;python_version<'3.8'"], + ext_modules=ext_modules, + cmdclass={"build_ext": CppyBuildExt}, ++ include_package_data=False, ++ package_data={"kiwisolver": ["py.typed", "*.pyi"]}, + ) diff --git a/kiwisolver-1.4.1.tar.gz b/kiwisolver-1.4.1.tar.gz deleted file mode 100644 index 709de54..0000000 Binary files a/kiwisolver-1.4.1.tar.gz and /dev/null differ diff --git a/kiwisolver-1.4.4.tar.gz b/kiwisolver-1.4.4.tar.gz new file mode 100644 index 0000000..6128a00 Binary files /dev/null and b/kiwisolver-1.4.4.tar.gz differ diff --git a/python-kiwisolver.spec b/python-kiwisolver.spec index b6d27a5..bb235b9 100644 --- a/python-kiwisolver.spec +++ b/python-kiwisolver.spec @@ -1,10 +1,11 @@ Name: python-kiwisolver -Version: 1.4.1 +Version: 1.4.4 Release: 1 Summary: A fast implementation of the Cassowary constraint solver License: BSD-3-Clause URL: https://github.com/nucleic/kiwi Source0: https://github.com/nucleic/kiwi/archive/%{version}/kiwisolver-%{version}.tar.gz +Patch0: fix-kiwisolver-version.patch BuildRequires: gcc-c++ python3-cppy python3-pip python3-setuptools_scm python3-wheel %description @@ -40,6 +41,9 @@ PYTHONPATH="%{buildroot}%{python3_sitearch}" py.test-3 py/tests/ %{python3_sitearch}/kiwisolver-%{version}-*.egg-info %changelog +* Wed Aug 03 2022 fushanqing - 1.4.4-1 +- update to 1.4.4 + * Tue Jul 05 2022 SimpleUpdate Robot - 1.4.1-1 - Upgrade to version 1.4.1