diff --git a/.files b/.files new file mode 100644 index 0000000..c427c3b Binary files /dev/null and b/.files differ diff --git a/.meta b/.meta new file mode 100644 index 0000000..d66b20c --- /dev/null +++ b/.meta @@ -0,0 +1,5 @@ + + + Python tools for Fedora's messaging infrastructure + + diff --git a/.rev b/.rev new file mode 100644 index 0000000..3bc650f --- /dev/null +++ b/.rev @@ -0,0 +1,10 @@ + + + 03882c021455ec698cb3928e7c2d5bfe + 2.0.2 + + dimstar_suse + copr tools + 851834 + + diff --git a/fedora_messaging-2.0.2.tar.gz b/fedora_messaging-2.0.2.tar.gz new file mode 120000 index 0000000..13409a7 --- /dev/null +++ b/fedora_messaging-2.0.2.tar.gz @@ -0,0 +1 @@ +/ipfs/bafkreidselklivah3jhc3uhcx7vcdlghzxargnixfzm2s37fzt7rbdvlfe \ No newline at end of file diff --git a/python-fedora-messaging.changes b/python-fedora-messaging.changes new file mode 100644 index 0000000..3de8a08 --- /dev/null +++ b/python-fedora-messaging.changes @@ -0,0 +1,9 @@ +------------------------------------------------------------------- +Tue Nov 17 11:59:41 UTC 2020 - John Vandenberg + +- Update to v2.0.2 + +------------------------------------------------------------------- +Fri Dec 27 11:45:26 AM UTC 2019 - John Vandenberg + +- Initial spec for v2.0.0 diff --git a/python-fedora-messaging.spec b/python-fedora-messaging.spec new file mode 100644 index 0000000..517f593 --- /dev/null +++ b/python-fedora-messaging.spec @@ -0,0 +1,101 @@ +# +# spec file for package python-fedora-messaging +# +# Copyright (c) 2020 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: 2.0.2 +Release: 0 +Summary: Python tools for Fedora's messaging infrastructure +License: GPL-2.0-or-later +Group: Development/Languages/Python +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 mock} +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 +# 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