Name: python-kgb Version: 7.1.1 Release: 1%{?dist} Summary: Intercept and record calls to functions License: MIT URL: https://github.com/beanbaginc/kgb Source0: %{pypi_source kgb} BuildArch: noarch BuildRequires: python3-devel BuildRequires: python3-setuptools # required for tests BuildRequires: python3-pytest %global _description %{expand: Ever deal with a large test suite before, monkey patching functions to figure out whether it was called as expected? It’s a dirty job. If you’re not careful, you can make a mess of things. Leave behind evidence. kgb’s spies will take care of that little problem for you. What are spies? Spies intercept and record calls to functions. They can report on how many times a function was called and with what arguments. They can allow the function call to go through as normal, to block it, or to reroute it to another function. Spies are awesome. (If you’ve used Jasmine, you know this.) Spies are like mocks, but better. You’re not mocking the world. You’re replacing very specific function logic, or listening to functions without altering them.} %description %_description %package -n python3-kgb Summary: %{summary} %description -n python3-kgb %_description %package -n python3-kgb-tests Summary: Unit tests for python3-kgb Requires: python3-kgb = %{version}-%{release} %description -n python3-kgb-tests Unit tests for python3-kgb %prep %autosetup -p1 -n kgb-%{version} %if !0%{?el8} %generate_buildrequires %pyproject_buildrequires %endif %build %if 0%{?el8} %py3_build %else %pyproject_wheel %endif %install %if 0%{?el8} %py3_install %else %pyproject_install %endif %check %pytest --pyargs kgb %files %license LICENSE %doc README.rst NEWS.rst AUTHORS %files -n python3-kgb %license LICENSE %doc README.rst NEWS.rst AUTHORS %{python3_sitelib}/kgb/ %exclude %{python3_sitelib}/kgb/tests/ %if 0%{?el8} %{python3_sitelib}/kgb-%{version}-py*.egg-info/ %else %{python3_sitelib}/kgb-%{version}.dist-info/ %endif %files -n python3-kgb-tests %{python3_sitelib}/kgb/tests/ %changelog * Sat Aug 06 2022 Jonathan Wright - 7.1.1-1 - Update to 7.1.1 - Use license in upstream package * Wed Aug 03 2022 Jonathan Wright - 7.1-1 - Update to 7.1 * Wed Aug 03 2022 Jonathan Wright - 7.0-4 - Minor spec improvements from review * Wed Aug 03 2022 Jonathan Wright - 7.0-3 - Split tests to separate package - Minor spec improvments from review * Tue Aug 02 2022 Jonathan Wright - 7.0-2 - Improve spec file per review * Tue Aug 02 2022 Jonathan Wright - 7.0-1 - Initial build