## START: Set by rpmautospec ## (rpmautospec version 0.3.5) ## RPMAUTOSPEC: autorelease, autochangelog %define autorelease(e:s:pb:n) %{?-p:0.}%{lua: release_number = 2; base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}")); print(release_number + base_release_number - 1); }%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}} ## END: Set by rpmautospec %bcond_without tests %global srcname circuitbreaker Name: python-%{srcname} Version: 2.0.0 Release: %autorelease Summary: Python "Circuit Breaker" implementation License: BSD-3-Clause URL: https://github.com/fabfuel/circuitbreaker Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz BuildArch: noarch BuildRequires: python3-devel %if %{with tests} BuildRequires: python3dist(pytest) BuildRequires: python3dist(pytest-asyncio) BuildRequires: python3dist(pytest-mock) %endif %global _description %{expand: This is a Python implementation of the "Circuit Breaker" Pattern.} %description %{_description} %package -n python3-%{srcname} Summary: %{summary} %description -n python3-%{srcname} %{_description} %prep %autosetup -n %{srcname}-%{version} %generate_buildrequires %pyproject_buildrequires %build %pyproject_wheel %install %pyproject_install %pyproject_save_files %{srcname} %check %pyproject_check_import %if %{with tests} %pytest %endif %files -n python3-%{srcname} -f %{pyproject_files} %license LICENSE.rst %doc README.rst %changelog * Mon Jul 24 2023 Major Hayden - 2.0.0-2 - Add packit config * Mon Jul 24 2023 Major Hayden - 2.0.0-1 - Update to 2.0.0 rhbz#2203856 * Fri Jul 21 2023 Fedora Release Engineering - 1.4.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild * Tue Jun 13 2023 Python Maint - 1.4.0-2 - Rebuilt for Python 3.12 * Thu May 11 2023 Major Hayden - 1.4.0-1 - Initial import rhbz#2190311