## START: Set by rpmautospec ## (rpmautospec version 0.3.0) %define autorelease(e:s:pb:n) %{?-p:0.}%{lua: release_number = 1; 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 %global srcname result Name: python-%{srcname} Version: 0.10.0 Release: %autorelease Summary: A Rust-like result type for Python License: MIT URL: https://github.com/rustedpy/result # pypi wheel does not contain tests Source: %{url}/archive/v%{version}/%{srcname}-%{version}.tar.gz Patch: %{srcname}-no-cov.diff BuildArch: noarch BuildRequires: python3-devel # requirements-dev.txt has extras we don't need BuildRequires: python3dist(pytest) %global _description %{expand: A simple Result type for Python 3 inspired by Rust, fully type annotated. The idea is that a result value can be either `Ok(value)` or `Err(error)`, with a way to differentiate between the two. `Ok` and `Err` are both classes encapsulating an arbitrary value. `Result[T, E]` is a generic type alias for `typing.Union[Ok[T], Err[E]]`.} %description %_description %package -n python3-%{srcname} Summary: %{summary} %description -n python3-%{srcname} %_description %prep %autosetup -p1 -n %{srcname}-%{version} %generate_buildrequires %pyproject_buildrequires -r %build %pyproject_wheel %install %pyproject_install %pyproject_save_files %{srcname} %check %pytest -v %if 0%{?python3_version_nodots} >= 310 %pytest -v tests/test_pattern_matching.py %endif %files -n python3-%{srcname} -f %{pyproject_files} %doc README.* %changelog * Tue May 16 2023 Michel Alexandre Salim 0.10.0-1 - Update to 0.10.0 * Sun Feb 12 2023 Michel Alexandre Salim 0.9.0-2 - Add missing patch * Sun Feb 12 2023 Michel Alexandre Salim 0.9.0-1 - Initial Fedora package