19 Commits
f35 ... rawhide

Author SHA1 Message Date
Fedora Release Engineering
10201fcd68 Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild 2026-01-17 09:16:24 +00:00
Python Maint
ee470aa1ea Rebuilt for Python 3.14.0rc3 bytecode 2025-09-19 14:12:26 +02:00
Python Maint
04eaadb651 Rebuilt for Python 3.14.0rc2 bytecode 2025-08-15 14:37:01 +02:00
Fedora Release Engineering
5dbfd9d29e Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild 2025-07-25 09:52:34 +00:00
Juan Orti Alcaine
906b88539e Upgrade to version 5.1.0 and use pyproject macros (RHBZ#2378106) 2025-07-19 11:35:39 +02:00
Python Maint
514d2bcc83 Rebuilt for Python 3.14 2025-06-02 20:38:50 +02:00
Fedora Release Engineering
a7f1fce566 Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild 2025-01-18 18:15:32 +00:00
Miroslav Suchý
5e55aa3783 convert license to SPDX
This is part of https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_4
2024-09-04 20:36:21 +02:00
Fedora Release Engineering
e78be73719 Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild 2024-07-19 14:55:14 +00:00
Python Maint
6a3ba29308 Rebuilt for Python 3.13 2024-06-07 09:16:58 +02:00
Fedora Release Engineering
9ae78d47e4 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-26 09:23:11 +00:00
Fedora Release Engineering
f093d6151b Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-22 05:59:56 +00:00
Fedora Release Engineering
8218b4c068 Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2023-07-21 13:08:14 +00:00
Python Maint
d9f147bc4a Rebuilt for Python 3.12 2023-06-13 20:50:48 +02:00
Fedora Release Engineering
0e466c0865 Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2023-01-20 16:28:25 +00:00
Juan Orti Alcaine
d5b5ffab58 Version 4.0.0 (#2137873) 2022-10-26 18:36:08 +02:00
Fedora Release Engineering
29454e458f Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2022-07-22 21:35:48 +00:00
Python Maint
c4318eeee5 Rebuilt for Python 3.11 2022-06-13 15:19:38 +02:00
Fedora Release Engineering
20e806276f - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2022-01-21 14:51:06 +00:00
3 changed files with 36 additions and 93 deletions

2
.gitignore vendored
View File

@@ -2,3 +2,5 @@
/pytest-benchmark-3.2.2.tar.gz
/pytest-benchmark-3.2.3.tar.gz
/pytest-benchmark-3.4.1.tar.gz
/pytest-benchmark-4.0.0.tar.gz
/pytest-benchmark-5.1.0.tar.gz

View File

@@ -1,40 +1,32 @@
%global srcname pytest-benchmark
Name: python-%{srcname}
Version: 3.4.1
Release: 3%{?dist}
Version: 5.1.0
Release: 5%{?dist}
Summary: A py.test fixture for benchmarking code
License: BSD
# Automatically converted from old format: BSD - review is highly recommended.
License: LicenseRef-Callaway-BSD
URL: https://pytest-benchmark.readthedocs.io
Source: https://github.com/ionelmc/%{srcname}/archive/v%{version}/%{srcname}-%{version}.tar.gz
BuildArch: noarch
BuildRequires: python3-devel
BuildRequires: python3-setuptools
# Tests
#BuildRequires: python3-cpuinfo
#BuildRequires: python3-pytest
#BuildRequires: python3-elasticsearch
#BuildRequires: python3-freezegun
#BuildRequires: python3-pytest-xdist
#BuildRequires: python3-pygal
%global _description\
This plugin provides a benchmark fixture. This fixture is a callable object\
that will benchmark any function passed to it.\
\
Notable features and goals:\
\
- Sensible defaults and automatic calibration for microbenchmarks\
- Good integration with pytest\
- Comparison and regression tracking\
- Exhausive statistics\
- JSON export
%global _description %{expand:
This plugin provides a benchmark fixture. This fixture is a callable object
that will benchmark any function passed to it.
Notable features and goals:
- Sensible defaults and automatic calibration for microbenchmarks
- Good integration with pytest
- Comparison and regression tracking
- Exhausive statistics
- JSON export}
%description %_description
%package -n python3-%{srcname}
Summary: %summary
%py_provides python3-%{srcname}
Requires: python3-pytest
Requires: python3-cpuinfo
@@ -43,87 +35,36 @@ Requires: python3-cpuinfo
%prep
%autosetup -n %{srcname}-%{version}
%generate_buildrequires
%pyproject_buildrequires
%build
%py3_build
%pyproject_wheel
%install
%py3_install
%pyproject_install
%pyproject_save_files -l pytest_benchmark
%check
# Tests disabled (missing dependency: aspectlib)
#%%pytest
# Tests disabled due to missing dependencies
#%%tox
%files -n python3-%{srcname}
%files -n python3-%{srcname} -f %{pyproject_files}
%doc README.rst CHANGELOG.rst CONTRIBUTING.rst AUTHORS.rst
%license LICENSE
%{_bindir}/py.test-benchmark
%{_bindir}/pytest-benchmark
%{python3_sitelib}/pytest_benchmark
%{python3_sitelib}/pytest_benchmark-%{version}-py*.egg-info
%changelog
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.0-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
* Wed Jun 02 2021 Python Maint <python-maint@redhat.com> - 3.4.1-2
- Rebuilt for Python 3.10
* Fri Sep 19 2025 Python Maint <python-maint@redhat.com> - 5.1.0-4
- Rebuilt for Python 3.14.0rc3 bytecode
* Wed Jun 02 2021 Juan Orti Alcaine <jortialc@redhat.com> - 3.4.1-1
- Version 3.4.1
- Disable tests
* Fri Aug 15 2025 Python Maint <python-maint@redhat.com> - 5.1.0-3
- Rebuilt for Python 3.14.0rc2 bytecode
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.3-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
* Thu Oct 08 2020 Juan Orti Alcaine <jortialc@redhat.com> - 3.2.3-4
- BR: python3-setuptools
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.3-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Sun May 24 2020 Miro Hrončok <mhroncok@redhat.com> - 3.2.3-2
- Rebuilt for Python 3.9
* Sun May 17 2020 Juan Orti Alcaine <jortialc@redhat.com> - 3.2.3-1
- Version 3.2.3
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.2-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 3.2.2-4
- Rebuilt for Python 3.8.0rc1 (#1748018)
* Sat Aug 17 2019 Miro Hrončok <mhroncok@redhat.com> - 3.2.2-3
- Rebuilt for Python 3.8
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Thu Apr 04 2019 Miro Hrončok <mhroncok@redhat.com> - 3.2.2-1
- Update to 3.2.2 for pytest 4 compatibility
* Sun Mar 03 2019 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 3.1.1-8
- Subpackage python2-pytest-benchmark has been removed
See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
- Fix FTBFS caused by removal of python2-cpuinfo (#1675780)
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.1-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.1-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 3.1.1-5
- Rebuilt for Python 3.7
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.1-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Fri Sep 01 2017 Juan Orti Alcaine <jorti@fedoraproject.org> - 3.1.1-3
- Reduce summary lenght
* Wed Aug 30 2017 Juan Orti Alcaine <jorti@fedoraproject.org> - 3.1.1-2
- Update BR
* Wed Aug 30 2017 Juan Orti Alcaine <jorti@fedoraproject.org> - 3.1.1-1
- Initial RPM release
%autochangelog

View File

@@ -1 +1 @@
SHA512 (pytest-benchmark-3.4.1.tar.gz) = 54fb5e3a176578b3c8f339878c7a9d047a0785befcbba42bb68c34b4b636d9b6f6a2097b36c5eefbbcf1a91f943bdae762c7978a0dba1af53514052f513ef4c5
SHA512 (pytest-benchmark-5.1.0.tar.gz) = 92f3d99d92f52de9f1099b4b29f0fdbb246a0a4f9a95f6a7fe56b555a64482c718629d55f35e4ff1a18c6d453e6598d59c987eb0db6ff41a29d084166c134831