- Update to version 3.1.0 * Add the app_name and agent_name properties to message schemas (#272) * Added "groups" property to message schemas. This property can be used if an event affects a list of groups. (#252) OBS-URL: https://build.opensuse.org/request/show/1009980 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fedora-messaging?expand=0&rev=11
102 lines
3.4 KiB
RPMSpec
102 lines
3.4 KiB
RPMSpec
#
|
|
# spec file for package python-fedora-messaging
|
|
#
|
|
# Copyright (c) 2022 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/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
Name: python-fedora-messaging
|
|
Version: 3.1.0
|
|
Release: 0
|
|
Summary: Python tools for Fedora's messaging infrastructure
|
|
License: GPL-2.0-or-later
|
|
URL: https://github.com/fedora-infra/fedora-messaging
|
|
Source: https://files.pythonhosted.org/packages/source/f/fedora_messaging/fedora_messaging-%{version}.tar.gz
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-Twisted
|
|
Requires: python-blinker
|
|
Requires: python-click
|
|
Requires: python-crochet
|
|
Requires: python-jsonschema
|
|
Requires: python-pika >= 1.0.1
|
|
Requires: python-pyOpenSSL
|
|
Requires: python-pytz
|
|
Requires: python-service_identity
|
|
Requires: python-six
|
|
Requires: python-toml
|
|
BuildArch: noarch
|
|
# SECTION test requirements
|
|
BuildRequires: %{python_module Sphinx}
|
|
BuildRequires: %{python_module Twisted}
|
|
BuildRequires: %{python_module blinker}
|
|
BuildRequires: %{python_module click}
|
|
BuildRequires: %{python_module coverage}
|
|
BuildRequires: %{python_module crochet}
|
|
BuildRequires: %{python_module jsonschema}
|
|
BuildRequires: %{python_module pika >= 1.0.1}
|
|
BuildRequires: %{python_module pyOpenSSL}
|
|
BuildRequires: %{python_module pytest-twisted}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module pytz}
|
|
BuildRequires: %{python_module service_identity}
|
|
BuildRequires: %{python_module six}
|
|
BuildRequires: %{python_module toml}
|
|
BuildRequires: %{python_module towncrier}
|
|
BuildRequires: %{python_module treq}
|
|
# /SECTION
|
|
%python_subpackages
|
|
|
|
%description
|
|
A set of Python tools for using Fedora's messaging infrastructure.
|
|
|
|
%prep
|
|
%setup -q -n fedora_messaging-%{version}
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_clone -a %{buildroot}%{_bindir}/fedora-messaging
|
|
%{python_expand rm -r %{buildroot}%{$python_sitelib}/fedora_messaging/tests/
|
|
%fdupes %{buildroot}%{$python_sitelib}
|
|
}
|
|
|
|
%post
|
|
%python_install_alternative fedora-messaging
|
|
|
|
%postun
|
|
%python_uninstall_alternative fedora-messaging
|
|
|
|
%check
|
|
export PATH=$PATH:%{buildroot}%{_bindir}
|
|
export PYTHONDONTWRITEBYTECODE=1
|
|
export LANG=en_US.UTF-8
|
|
# https://github.com/fedora-infra/fedora-messaging/issues/255
|
|
sed -i 's:. Perhaps you forgot a comma?::' fedora_messaging/tests/unit/test_cli.py
|
|
# test_consume_unexpected_crash or test_consume_successful_halt are intermittent
|
|
# and only relevant for improved handling of an unexpected failure/halt
|
|
%pytest -k 'not (test_consume_unexpected_crash or test_consume_successful_halt)'
|
|
|
|
%files %{python_files}
|
|
%doc README.rst
|
|
%license LICENSE
|
|
%python_alternative %{_bindir}/fedora-messaging
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|