forked from pool/python-fedora-messaging
- Create a subpackage for Fedora Messaging configs
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fedora-messaging?expand=0&rev=21
This commit is contained in:
124
python-fedora-messaging.spec
Normal file
124
python-fedora-messaging.spec
Normal file
@@ -0,0 +1,124 @@
|
||||
#
|
||||
# spec file for package python-fedora-messaging
|
||||
#
|
||||
# Copyright (c) 2025 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/
|
||||
#
|
||||
|
||||
|
||||
%define _modname fedora-messaging
|
||||
Name: python-fedora-messaging
|
||||
Version: 3.8.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://github.com/fedora-infra/fedora-messaging/archive/refs/tags/v%{version}.tar.gz#/fedora-messaging-%{version}.tar.gz
|
||||
BuildRequires: %{python_module Sphinx}
|
||||
BuildRequires: %{python_module Twisted}
|
||||
BuildRequires: %{python_module base >= 3.9}
|
||||
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.0}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module poetry-core}
|
||||
BuildRequires: %{python_module pyOpenSSL}
|
||||
BuildRequires: %{python_module pytest-mock}
|
||||
BuildRequires: %{python_module pytest-twisted}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module service_identity}
|
||||
BuildRequires: %{python_module tomli}
|
||||
BuildRequires: %{python_module towncrier}
|
||||
BuildRequires: %{python_module treq}
|
||||
BuildRequires: %{python_module wheel}
|
||||
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-requests
|
||||
Requires: python-service_identity
|
||||
Requires: python-setuptools
|
||||
Requires: python-tomli
|
||||
Requires(post): update-alternatives
|
||||
Requires(postun): update-alternatives
|
||||
BuildArch: noarch
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
A set of Python tools for using Fedora's messaging infrastructure.
|
||||
|
||||
%package -n fedora-messaging-config
|
||||
Summary: Fedora Messaging configs
|
||||
|
||||
%description -n fedora-messaging-config
|
||||
Configuration files for the Fedora Messaging instances.
|
||||
|
||||
%prep
|
||||
%autosetup -p1 -n %{_modname}-%{version}
|
||||
|
||||
%build
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
%pyproject_install
|
||||
%python_clone -a %{buildroot}%{_bindir}/%{_modname}
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
install -D -p -m 644 config.toml.example $RPM_BUILD_ROOT%{_sysconfdir}/fedora-messaging/config.toml
|
||||
install -D -p -m 644 configs/fedora.toml $RPM_BUILD_ROOT%{_sysconfdir}/fedora-messaging/fedora.toml
|
||||
install -D -p -m 644 configs/fedora.stg.toml $RPM_BUILD_ROOT%{_sysconfdir}/fedora-messaging/fedora.stg.toml
|
||||
install -D -p -m 644 configs/cacert.pem $RPM_BUILD_ROOT%{_sysconfdir}/fedora-messaging/cacert.pem
|
||||
install -D -p -m 644 configs/fedora-key.pem $RPM_BUILD_ROOT%{_sysconfdir}/fedora-messaging/fedora-key.pem
|
||||
install -D -p -m 644 configs/fedora-cert.pem $RPM_BUILD_ROOT%{_sysconfdir}/fedora-messaging/fedora-cert.pem
|
||||
install -D -p -m 644 configs/stg-cacert.pem $RPM_BUILD_ROOT%{_sysconfdir}/fedora-messaging/stg-cacert.pem
|
||||
install -D -p -m 644 configs/fedora.stg-key.pem $RPM_BUILD_ROOT%{_sysconfdir}/fedora-messaging/fedora.stg-key.pem
|
||||
install -D -p -m 644 configs/fedora.stg-cert.pem $RPM_BUILD_ROOT%{_sysconfdir}/fedora-messaging/fedora.stg-cert.pem
|
||||
|
||||
%post
|
||||
%python_install_alternative %{_modname}
|
||||
|
||||
%postun
|
||||
%python_uninstall_alternative %{_modname}
|
||||
|
||||
%check
|
||||
%pytest -k "not test_no_conf" tests/unit
|
||||
|
||||
%files %{python_files}
|
||||
%license LICENSES/GPL-2.0-or-later.txt
|
||||
%doc README.rst
|
||||
%python_alternative %{_bindir}/%{_modname}
|
||||
%{python_sitelib}/fedora_messaging
|
||||
%{python_sitelib}/fedora_messaging-%{version}.dist-info
|
||||
|
||||
%files -n fedora-messaging-config
|
||||
%dir %{_sysconfdir}/fedora-messaging/
|
||||
%config(noreplace) %{_sysconfdir}/fedora-messaging/config.toml
|
||||
%config(noreplace) %{_sysconfdir}/fedora-messaging/fedora.toml
|
||||
%config(noreplace) %{_sysconfdir}/fedora-messaging/fedora.stg.toml
|
||||
%config(noreplace) %{_sysconfdir}/fedora-messaging/cacert.pem
|
||||
%config(noreplace) %{_sysconfdir}/fedora-messaging/fedora-key.pem
|
||||
%config(noreplace) %{_sysconfdir}/fedora-messaging/fedora-cert.pem
|
||||
%config(noreplace) %{_sysconfdir}/fedora-messaging/stg-cacert.pem
|
||||
%config(noreplace) %{_sysconfdir}/fedora-messaging/fedora.stg-key.pem
|
||||
%config(noreplace) %{_sysconfdir}/fedora-messaging/fedora.stg-cert.pem
|
||||
|
||||
%changelog
|
||||
Reference in New Issue
Block a user