From 353e2e3956e488b51f30d2690d4cf19f863fb079 Mon Sep 17 00:00:00 2001 From: Joel Capitao Date: Nov 06 2024 15:31:18 +0000 Subject: Import python-time-machine-2.16.0-1.el10s in CloudSIG Epoxy --- diff --git a/.python-time-machine.metadata b/.python-time-machine.metadata new file mode 100644 index 0000000..90b5a76 --- /dev/null +++ b/.python-time-machine.metadata @@ -0,0 +1 @@ +8b8a775c89a86bbdabca931a335c0506e897287c SOURCES/time-machine-2.16.0.tar.gz diff --git a/SOURCES/.gitkeep b/SOURCES/.gitkeep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/SOURCES/.gitkeep diff --git a/SPECS/python-time-machine.spec b/SPECS/python-time-machine.spec new file mode 100644 index 0000000..44b7b84 --- /dev/null +++ b/SPECS/python-time-machine.spec @@ -0,0 +1,54 @@ +Name: python-time-machine +Version: 2.16.0 +Release: %autorelease +Summary: Travel through time in your Python tests +License: MIT +URL: https://github.com/adamchainz/time-machine +Source: %{url}/archive/%{version}/time-machine-%{version}.tar.gz + +BuildRequires: gcc +BuildRequires: python3-devel + +%global _description %{expand: +A Python library that allows to travel in time and freeze it as well. +Includes a test-function decorator that sets time to an arbitrary value.} + +%description %_description + +%package -n python3-time-machine +Summary: %{summary} + +%description -n python3-time-machine %_description + + +%prep +%autosetup -p1 -n time-machine-%{version} +sed -i '/coverage/d' tests/requirements/requirements.in + + +%generate_buildrequires +# tox uses a pinned version of requirements/requirements.in and also uses coverage +# so we bypass it. +# This also saves us one dependency cycle as tox uses time-machine for tests. +%pyproject_buildrequires tests/requirements/requirements.in + + +%build +%pyproject_wheel + + +%install +%pyproject_install +%pyproject_save_files time_machine _time_machine + + +%check +%pytest -v + + +%files -n python3-time-machine -f %{pyproject_files} +%doc README.rst HISTORY.rst + + +%changelog +%autochangelog