15
0
Files
python-blinker/python-blinker.spec
Dirk Mueller 208f1edece - 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
- use setup.py option to record file list for rpm package
- Fixed doc section in file list
- spec improved (files section)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-blinker?expand=0&rev=41
2024-10-22 13:31:35 +00:00

103 lines
3.1 KiB
RPMSpec

#
# spec file for package python-blinker
#
# 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?sle15_python_module_pythons}
Name: python-blinker
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
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 sphinx-issues}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildArch: noarch
%python_subpackages
%description
Blinker provides a dispatching system that allows any number of
interested parties to subscribe to events, or "signals".
Signal receivers can subscribe to specific senders or receive signals
sent by any sender.
%if 0%{?suse_version} > 1500
%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
Blinker provides a dispatching system that allows any number of
interested parties to subscribe to events, or "signals".
Signal receivers can subscribe to specific senders or receive signals
sent by any sender.
This sub-package contains the HTML documentation.
%endif
%prep
%autosetup -p1 -n blinker-%{version}
%build
%pyproject_wheel
%install
%pyproject_install
%{python_expand pushd docs
export PYTHONPATH=%{buildroot}%{$python_sitelib}
# Do not call "make html" directly because it'll use python3 by
# default and that could produce .pyc files from different python
# versions in the package bsc#1213698
$python -m sphinx -M html . _build
popd
%fdupes %{buildroot}%{$python_sitelib}
}
%check
%pytest
%files %{python_files}
%license LICENSE.txt
%doc CHANGES.rst README.md
%{python_sitelib}/blinker-%{version}*-info
%{python_sitelib}/blinker
%if 0%{?suse_version} > 1500
%files -n python-blinker-doc
%endif
%doc docs/_build/html
%changelog