diff --git a/blinker-1.6.2.tar.gz b/blinker-1.6.2.tar.gz deleted file mode 100644 index 06e8519..0000000 --- a/blinker-1.6.2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4afd3de66ef3a9f8067559fb7a1cbe555c17dcbe15971b05d1b625c3e7abe213 -size 28699 diff --git a/blinker-1.8.2.tar.gz b/blinker-1.8.2.tar.gz new file mode 100644 index 0000000..6e60252 --- /dev/null +++ b/blinker-1.8.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f77b09d3bf7c795e969e9486f39c2c5e9c39d4ee07424be2bc594ece9642d83 +size 23161 diff --git a/python-blinker.changes b/python-blinker.changes index 6c0f9c3..da47df0 100644 --- a/python-blinker.changes +++ b/python-blinker.changes @@ -1,3 +1,52 @@ +------------------------------------------------------------------- +Tue Oct 22 11:58:39 UTC 2024 - Dirk Müller + +- update to 1.8.2: + * Simplify type for _async_wrapper and _sync_wrapper arguments. + :pr:`156` + * Restore identity handling for str and int senders. :pr:`148` + * Fix deprecated blinker.base.WeakNamespace import. :pr:`149` + * Fix deprecated blinker.base.receiver_connected import. + :pr:`153` + * Use types from collections.abc instead of typing. :pr:`150` + * Fully specify exported types as reported by pyright. + :pr:`152` + * Deprecate the __version__ attribute. Use feature detection, + or importlib.metadata.version("blinker"), instead. + :issue:`128` + * Specify that the deprecated temporarily_connected_to will be + removed in the next version. + * Show a deprecation warning for the deprecated global + receiver_connected signal and specify that it will be removed + in the next version. + * Show a deprecation warning for the deprecated WeakNamespace + and specify that it will be removed in the next version. + * Greatly simplify how the library uses weakrefs. This is a + significant change internally but should not affect any + public API. :pr:`144` + * Expose the namespace used by signal() as default_namespace. + :pr:`145` +- add remove-sphinxextensions.patch to remove an optional + sphinxextension + +------------------------------------------------------------------- +Tue Nov 14 21:30:44 UTC 2023 - Benoît Monin + +- update to version 1.7.0: + * Fixed messages printed to standard error about unraisable + exceptions during signal cleanup, typically during interpreter + shutdown. #123 + * Allow the Signal set_class to be customised, to allow calling + of receivers in registration order. #116. + * Drop Python 3.7 and support Python 3.12. #126 +- additional changes from 1.6.3: + * Fix SyncWrapperType and AsyncWrapperType #108 + * Fixed issue where signal.connected_to would not disconnect the + receiver if an instance of BaseException was raised. #114 +- require python >= 3.8: upstream dropped 3.7 support +- drop setuptools and wheel, add flit-core as BuildRequires: + upstream switched build system + ------------------------------------------------------------------- Mon Jul 31 12:04:02 UTC 2023 - Daniel Garcia @@ -107,12 +156,12 @@ Thu Sep 15 13:51:06 UTC 2016 - rjschwei@suse.com ------------------------------------------------------------------- Fri Mar 11 08:27:10 UTC 2016 - freitag@opensuse.org -- use setup.py option to record file list for rpm package +- use setup.py option to record file list for rpm package ------------------------------------------------------------------- Sun Jan 3 20:55:02 UTC 2016 - freitag@opensuse.org -- Fixed doc section in file list +- Fixed doc section in file list ------------------------------------------------------------------- Sun Jan 3 20:35:36 UTC 2016 - freitag@opensuse.org @@ -138,7 +187,7 @@ Sun Feb 22 17:44:07 UTC 2015 - benoit.monin@gmx.fr Wed Aug 15 02:59:55 UTC 2012 - highwaystar.ru@gmail.com - python3 package added -- spec improved (files section) +- spec improved (files section) ------------------------------------------------------------------- Fri Jun 22 13:16:29 UTC 2012 - saschpe@suse.de diff --git a/python-blinker.spec b/python-blinker.spec index 3093be6..75eef0b 100644 --- a/python-blinker.spec +++ b/python-blinker.spec @@ -1,7 +1,7 @@ # # spec file for package python-blinker # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,21 +18,20 @@ %{?sle15_python_module_pythons} Name: python-blinker -Version: 1.6.2 +Version: 1.8.2 Release: 0 Summary: Object-to-object and broadcast signaling in Python License: MIT Group: Development/Languages/Python URL: https://github.com/pallets-eco/blinker/ Source: https://files.pythonhosted.org/packages/source/b/blinker/blinker-%{version}.tar.gz -BuildRequires: %{python_module Pallets-Sphinx-Themes} -BuildRequires: %{python_module Sphinx} +Patch1: remove-sphinxextensions.patch +BuildRequires: %{python_module base >= 3.8} +BuildRequires: %{python_module flit-core} BuildRequires: %{python_module pip} BuildRequires: %{python_module pytest-asyncio} BuildRequires: %{python_module pytest} -BuildRequires: %{python_module setuptools} BuildRequires: %{python_module sphinx-issues} -BuildRequires: %{python_module wheel} BuildRequires: fdupes BuildRequires: python-rpm-macros BuildArch: noarch @@ -49,6 +48,11 @@ sent by any sender. %package -n python-blinker-doc Summary: Documentation for %{name} Group: Documentation/HTML +BuildRequires: %{python_module Pallets-Sphinx-Themes} +BuildRequires: %{python_module Sphinx} +BuildRequires: %{python_module sphinxcontrib-htmlhelp} +BuildRequires: %{python_module sphinxcontrib-jsmath} +BuildRequires: %{python_module sphinxcontrib-serializinghtml} Provides: %{python_module blinker-doc = %{version}} %description -n python-blinker-doc @@ -85,8 +89,8 @@ popd %pytest %files %{python_files} -%license LICENSE.rst -%doc CHANGES.rst README.rst +%license LICENSE.txt +%doc CHANGES.rst README.md %{python_sitelib}/blinker-%{version}*-info %{python_sitelib}/blinker diff --git a/remove-sphinxextensions.patch b/remove-sphinxextensions.patch new file mode 100644 index 0000000..cf45634 --- /dev/null +++ b/remove-sphinxextensions.patch @@ -0,0 +1,12 @@ +Index: blinker-1.8.2/docs/conf.py +=================================================================== +--- blinker-1.8.2.orig/docs/conf.py ++++ blinker-1.8.2/docs/conf.py +@@ -9,7 +9,6 @@ default_role = "code" + extensions = [ + "sphinx.ext.autodoc", + "sphinx.ext.extlinks", +- "sphinxcontrib.log_cabinet", + "pallets_sphinx_themes", + ] + autodoc_member_order = "groupwise"